blob: 0458bf6bcdfc74e972c79cb197a55a1c26ef9518 [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
Kalle Valo3b8fc902015-10-05 17:56:37 +030076/*
77 * There is no signed version of __le32, so for a temporary solution come
78 * up with our own version. The idea is from fs/ntfs/types.h.
79 *
80 * Use a_ prefix so that it doesn't conflict if we get proper support to
81 * linux/types.h.
82 */
83typedef __s32 __bitwise a_sle32;
84
85static inline a_sle32 a_cpu_to_sle32(s32 val)
86{
87 return (__force a_sle32)cpu_to_le32(val);
88}
89
90static inline s32 a_sle32_to_cpu(a_sle32 val)
91{
92 return le32_to_cpu((__force __le32)val);
93}
94
Michal Kaziorcff990c2014-08-04 09:18:33 +030095enum wmi_service {
96 WMI_SERVICE_BEACON_OFFLOAD = 0,
97 WMI_SERVICE_SCAN_OFFLOAD,
98 WMI_SERVICE_ROAM_OFFLOAD,
99 WMI_SERVICE_BCN_MISS_OFFLOAD,
100 WMI_SERVICE_STA_PWRSAVE,
101 WMI_SERVICE_STA_ADVANCED_PWRSAVE,
102 WMI_SERVICE_AP_UAPSD,
103 WMI_SERVICE_AP_DFS,
104 WMI_SERVICE_11AC,
105 WMI_SERVICE_BLOCKACK,
106 WMI_SERVICE_PHYERR,
107 WMI_SERVICE_BCN_FILTER,
108 WMI_SERVICE_RTT,
109 WMI_SERVICE_RATECTRL,
110 WMI_SERVICE_WOW,
111 WMI_SERVICE_RATECTRL_CACHE,
112 WMI_SERVICE_IRAM_TIDS,
113 WMI_SERVICE_ARPNS_OFFLOAD,
114 WMI_SERVICE_NLO,
115 WMI_SERVICE_GTK_OFFLOAD,
116 WMI_SERVICE_SCAN_SCH,
117 WMI_SERVICE_CSA_OFFLOAD,
118 WMI_SERVICE_CHATTER,
119 WMI_SERVICE_COEX_FREQAVOID,
120 WMI_SERVICE_PACKET_POWER_SAVE,
121 WMI_SERVICE_FORCE_FW_HANG,
122 WMI_SERVICE_GPIO,
123 WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
124 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
125 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
126 WMI_SERVICE_STA_KEEP_ALIVE,
127 WMI_SERVICE_TX_ENCAP,
128 WMI_SERVICE_BURST,
129 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT,
130 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT,
Michal Kaziorca996ec2014-12-03 10:11:32 +0200131 WMI_SERVICE_ROAM_SCAN_OFFLOAD,
132 WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC,
133 WMI_SERVICE_EARLY_RX,
134 WMI_SERVICE_STA_SMPS,
135 WMI_SERVICE_FWTEST,
136 WMI_SERVICE_STA_WMMAC,
137 WMI_SERVICE_TDLS,
138 WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE,
139 WMI_SERVICE_ADAPTIVE_OCS,
140 WMI_SERVICE_BA_SSN_SUPPORT,
141 WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE,
142 WMI_SERVICE_WLAN_HB,
143 WMI_SERVICE_LTE_ANT_SHARE_SUPPORT,
144 WMI_SERVICE_BATCH_SCAN,
145 WMI_SERVICE_QPOWER,
146 WMI_SERVICE_PLMREQ,
147 WMI_SERVICE_THERMAL_MGMT,
148 WMI_SERVICE_RMC,
149 WMI_SERVICE_MHF_OFFLOAD,
150 WMI_SERVICE_COEX_SAR,
151 WMI_SERVICE_BCN_TXRATE_OVERRIDE,
152 WMI_SERVICE_NAN,
153 WMI_SERVICE_L1SS_STAT,
154 WMI_SERVICE_ESTIMATE_LINKSPEED,
155 WMI_SERVICE_OBSS_SCAN,
156 WMI_SERVICE_TDLS_OFFCHAN,
157 WMI_SERVICE_TDLS_UAPSD_BUFFER_STA,
158 WMI_SERVICE_TDLS_UAPSD_SLEEP_STA,
159 WMI_SERVICE_IBSS_PWRSAVE,
160 WMI_SERVICE_LPASS,
161 WMI_SERVICE_EXTSCAN,
162 WMI_SERVICE_D0WOW,
163 WMI_SERVICE_HSOFFLOAD,
164 WMI_SERVICE_ROAM_HO_OFFLOAD,
165 WMI_SERVICE_RX_FULL_REORDER,
166 WMI_SERVICE_DHCP_OFFLOAD,
167 WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT,
168 WMI_SERVICE_MDNS_OFFLOAD,
169 WMI_SERVICE_SAP_AUTH_OFFLOAD,
Yanbo Li52c22a62015-04-15 15:28:07 +0300170 WMI_SERVICE_ATF,
Yanbo Lide0c7892015-04-15 15:28:08 +0300171 WMI_SERVICE_COEX_GPIO,
Raja Mani840357c2015-06-22 20:10:10 +0530172 WMI_SERVICE_ENHANCED_PROXY_STA,
173 WMI_SERVICE_TT,
174 WMI_SERVICE_PEER_CACHING,
175 WMI_SERVICE_AUX_SPECTRAL_INTF,
176 WMI_SERVICE_AUX_CHAN_LOAD_INTF,
177 WMI_SERVICE_BSS_CHANNEL_INFO_64,
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530178 WMI_SERVICE_EXT_RES_CFG_SUPPORT,
Peter Oh0b3d76e2016-01-28 13:54:07 -0800179 WMI_SERVICE_MESH_11S,
180 WMI_SERVICE_MESH_NON_11S,
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530181 WMI_SERVICE_PEER_STATS,
Michal Kaziorc4f8c832014-09-04 10:18:32 +0200182
183 /* keep last */
184 WMI_SERVICE_MAX,
Michal Kaziorcff990c2014-08-04 09:18:33 +0300185};
Kalle Valo5e3dd152013-06-12 20:52:10 +0300186
Michal Kaziorcff990c2014-08-04 09:18:33 +0300187enum wmi_10x_service {
188 WMI_10X_SERVICE_BEACON_OFFLOAD = 0,
189 WMI_10X_SERVICE_SCAN_OFFLOAD,
190 WMI_10X_SERVICE_ROAM_OFFLOAD,
191 WMI_10X_SERVICE_BCN_MISS_OFFLOAD,
192 WMI_10X_SERVICE_STA_PWRSAVE,
193 WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE,
194 WMI_10X_SERVICE_AP_UAPSD,
195 WMI_10X_SERVICE_AP_DFS,
196 WMI_10X_SERVICE_11AC,
197 WMI_10X_SERVICE_BLOCKACK,
198 WMI_10X_SERVICE_PHYERR,
199 WMI_10X_SERVICE_BCN_FILTER,
200 WMI_10X_SERVICE_RTT,
201 WMI_10X_SERVICE_RATECTRL,
202 WMI_10X_SERVICE_WOW,
203 WMI_10X_SERVICE_RATECTRL_CACHE,
204 WMI_10X_SERVICE_IRAM_TIDS,
205 WMI_10X_SERVICE_BURST,
206
207 /* introduced in 10.2 */
208 WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT,
209 WMI_10X_SERVICE_FORCE_FW_HANG,
210 WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT,
Yanbo Li52c22a62015-04-15 15:28:07 +0300211 WMI_10X_SERVICE_ATF,
Yanbo Lide0c7892015-04-15 15:28:08 +0300212 WMI_10X_SERVICE_COEX_GPIO,
Peter Oh20fa2f72015-11-24 09:37:33 -0800213 WMI_10X_SERVICE_AUX_SPECTRAL_INTF,
214 WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF,
215 WMI_10X_SERVICE_BSS_CHANNEL_INFO_64,
216 WMI_10X_SERVICE_MESH,
217 WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT,
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530218 WMI_10X_SERVICE_PEER_STATS,
Michal Kaziorcff990c2014-08-04 09:18:33 +0300219};
220
221enum wmi_main_service {
222 WMI_MAIN_SERVICE_BEACON_OFFLOAD = 0,
223 WMI_MAIN_SERVICE_SCAN_OFFLOAD,
224 WMI_MAIN_SERVICE_ROAM_OFFLOAD,
225 WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD,
226 WMI_MAIN_SERVICE_STA_PWRSAVE,
227 WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE,
228 WMI_MAIN_SERVICE_AP_UAPSD,
229 WMI_MAIN_SERVICE_AP_DFS,
230 WMI_MAIN_SERVICE_11AC,
231 WMI_MAIN_SERVICE_BLOCKACK,
232 WMI_MAIN_SERVICE_PHYERR,
233 WMI_MAIN_SERVICE_BCN_FILTER,
234 WMI_MAIN_SERVICE_RTT,
235 WMI_MAIN_SERVICE_RATECTRL,
236 WMI_MAIN_SERVICE_WOW,
237 WMI_MAIN_SERVICE_RATECTRL_CACHE,
238 WMI_MAIN_SERVICE_IRAM_TIDS,
239 WMI_MAIN_SERVICE_ARPNS_OFFLOAD,
240 WMI_MAIN_SERVICE_NLO,
241 WMI_MAIN_SERVICE_GTK_OFFLOAD,
242 WMI_MAIN_SERVICE_SCAN_SCH,
243 WMI_MAIN_SERVICE_CSA_OFFLOAD,
244 WMI_MAIN_SERVICE_CHATTER,
245 WMI_MAIN_SERVICE_COEX_FREQAVOID,
246 WMI_MAIN_SERVICE_PACKET_POWER_SAVE,
247 WMI_MAIN_SERVICE_FORCE_FW_HANG,
248 WMI_MAIN_SERVICE_GPIO,
249 WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
250 WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
251 WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
252 WMI_MAIN_SERVICE_STA_KEEP_ALIVE,
253 WMI_MAIN_SERVICE_TX_ENCAP,
Kalle Valo5e3dd152013-06-12 20:52:10 +0300254};
255
Raja Mani840357c2015-06-22 20:10:10 +0530256enum wmi_10_4_service {
257 WMI_10_4_SERVICE_BEACON_OFFLOAD = 0,
258 WMI_10_4_SERVICE_SCAN_OFFLOAD,
259 WMI_10_4_SERVICE_ROAM_OFFLOAD,
260 WMI_10_4_SERVICE_BCN_MISS_OFFLOAD,
261 WMI_10_4_SERVICE_STA_PWRSAVE,
262 WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE,
263 WMI_10_4_SERVICE_AP_UAPSD,
264 WMI_10_4_SERVICE_AP_DFS,
265 WMI_10_4_SERVICE_11AC,
266 WMI_10_4_SERVICE_BLOCKACK,
267 WMI_10_4_SERVICE_PHYERR,
268 WMI_10_4_SERVICE_BCN_FILTER,
269 WMI_10_4_SERVICE_RTT,
270 WMI_10_4_SERVICE_RATECTRL,
271 WMI_10_4_SERVICE_WOW,
272 WMI_10_4_SERVICE_RATECTRL_CACHE,
273 WMI_10_4_SERVICE_IRAM_TIDS,
274 WMI_10_4_SERVICE_BURST,
275 WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT,
276 WMI_10_4_SERVICE_GTK_OFFLOAD,
277 WMI_10_4_SERVICE_SCAN_SCH,
278 WMI_10_4_SERVICE_CSA_OFFLOAD,
279 WMI_10_4_SERVICE_CHATTER,
280 WMI_10_4_SERVICE_COEX_FREQAVOID,
281 WMI_10_4_SERVICE_PACKET_POWER_SAVE,
282 WMI_10_4_SERVICE_FORCE_FW_HANG,
283 WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT,
284 WMI_10_4_SERVICE_GPIO,
285 WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
286 WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
287 WMI_10_4_SERVICE_STA_KEEP_ALIVE,
288 WMI_10_4_SERVICE_TX_ENCAP,
289 WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC,
290 WMI_10_4_SERVICE_EARLY_RX,
291 WMI_10_4_SERVICE_ENHANCED_PROXY_STA,
292 WMI_10_4_SERVICE_TT,
293 WMI_10_4_SERVICE_ATF,
294 WMI_10_4_SERVICE_PEER_CACHING,
295 WMI_10_4_SERVICE_COEX_GPIO,
296 WMI_10_4_SERVICE_AUX_SPECTRAL_INTF,
297 WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF,
298 WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64,
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530299 WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT,
Peter Oh0b3d76e2016-01-28 13:54:07 -0800300 WMI_10_4_SERVICE_MESH_NON_11S,
Raja Mani840357c2015-06-22 20:10:10 +0530301};
302
Kalle Valo5e3dd152013-06-12 20:52:10 +0300303static inline char *wmi_service_name(int service_id)
304{
Michal Kaziorcff990c2014-08-04 09:18:33 +0300305#define SVCSTR(x) case x: return #x
306
Kalle Valo5e3dd152013-06-12 20:52:10 +0300307 switch (service_id) {
Michal Kaziorcff990c2014-08-04 09:18:33 +0300308 SVCSTR(WMI_SERVICE_BEACON_OFFLOAD);
309 SVCSTR(WMI_SERVICE_SCAN_OFFLOAD);
310 SVCSTR(WMI_SERVICE_ROAM_OFFLOAD);
311 SVCSTR(WMI_SERVICE_BCN_MISS_OFFLOAD);
312 SVCSTR(WMI_SERVICE_STA_PWRSAVE);
313 SVCSTR(WMI_SERVICE_STA_ADVANCED_PWRSAVE);
314 SVCSTR(WMI_SERVICE_AP_UAPSD);
315 SVCSTR(WMI_SERVICE_AP_DFS);
316 SVCSTR(WMI_SERVICE_11AC);
317 SVCSTR(WMI_SERVICE_BLOCKACK);
318 SVCSTR(WMI_SERVICE_PHYERR);
319 SVCSTR(WMI_SERVICE_BCN_FILTER);
320 SVCSTR(WMI_SERVICE_RTT);
321 SVCSTR(WMI_SERVICE_RATECTRL);
322 SVCSTR(WMI_SERVICE_WOW);
323 SVCSTR(WMI_SERVICE_RATECTRL_CACHE);
324 SVCSTR(WMI_SERVICE_IRAM_TIDS);
325 SVCSTR(WMI_SERVICE_ARPNS_OFFLOAD);
326 SVCSTR(WMI_SERVICE_NLO);
327 SVCSTR(WMI_SERVICE_GTK_OFFLOAD);
328 SVCSTR(WMI_SERVICE_SCAN_SCH);
329 SVCSTR(WMI_SERVICE_CSA_OFFLOAD);
330 SVCSTR(WMI_SERVICE_CHATTER);
331 SVCSTR(WMI_SERVICE_COEX_FREQAVOID);
332 SVCSTR(WMI_SERVICE_PACKET_POWER_SAVE);
333 SVCSTR(WMI_SERVICE_FORCE_FW_HANG);
334 SVCSTR(WMI_SERVICE_GPIO);
335 SVCSTR(WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM);
336 SVCSTR(WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG);
337 SVCSTR(WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG);
338 SVCSTR(WMI_SERVICE_STA_KEEP_ALIVE);
339 SVCSTR(WMI_SERVICE_TX_ENCAP);
340 SVCSTR(WMI_SERVICE_BURST);
341 SVCSTR(WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT);
342 SVCSTR(WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT);
Michal Kaziorca996ec2014-12-03 10:11:32 +0200343 SVCSTR(WMI_SERVICE_ROAM_SCAN_OFFLOAD);
344 SVCSTR(WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC);
345 SVCSTR(WMI_SERVICE_EARLY_RX);
346 SVCSTR(WMI_SERVICE_STA_SMPS);
347 SVCSTR(WMI_SERVICE_FWTEST);
348 SVCSTR(WMI_SERVICE_STA_WMMAC);
349 SVCSTR(WMI_SERVICE_TDLS);
350 SVCSTR(WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE);
351 SVCSTR(WMI_SERVICE_ADAPTIVE_OCS);
352 SVCSTR(WMI_SERVICE_BA_SSN_SUPPORT);
353 SVCSTR(WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE);
354 SVCSTR(WMI_SERVICE_WLAN_HB);
355 SVCSTR(WMI_SERVICE_LTE_ANT_SHARE_SUPPORT);
356 SVCSTR(WMI_SERVICE_BATCH_SCAN);
357 SVCSTR(WMI_SERVICE_QPOWER);
358 SVCSTR(WMI_SERVICE_PLMREQ);
359 SVCSTR(WMI_SERVICE_THERMAL_MGMT);
360 SVCSTR(WMI_SERVICE_RMC);
361 SVCSTR(WMI_SERVICE_MHF_OFFLOAD);
362 SVCSTR(WMI_SERVICE_COEX_SAR);
363 SVCSTR(WMI_SERVICE_BCN_TXRATE_OVERRIDE);
364 SVCSTR(WMI_SERVICE_NAN);
365 SVCSTR(WMI_SERVICE_L1SS_STAT);
366 SVCSTR(WMI_SERVICE_ESTIMATE_LINKSPEED);
367 SVCSTR(WMI_SERVICE_OBSS_SCAN);
368 SVCSTR(WMI_SERVICE_TDLS_OFFCHAN);
369 SVCSTR(WMI_SERVICE_TDLS_UAPSD_BUFFER_STA);
370 SVCSTR(WMI_SERVICE_TDLS_UAPSD_SLEEP_STA);
371 SVCSTR(WMI_SERVICE_IBSS_PWRSAVE);
372 SVCSTR(WMI_SERVICE_LPASS);
373 SVCSTR(WMI_SERVICE_EXTSCAN);
374 SVCSTR(WMI_SERVICE_D0WOW);
375 SVCSTR(WMI_SERVICE_HSOFFLOAD);
376 SVCSTR(WMI_SERVICE_ROAM_HO_OFFLOAD);
377 SVCSTR(WMI_SERVICE_RX_FULL_REORDER);
378 SVCSTR(WMI_SERVICE_DHCP_OFFLOAD);
379 SVCSTR(WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT);
380 SVCSTR(WMI_SERVICE_MDNS_OFFLOAD);
381 SVCSTR(WMI_SERVICE_SAP_AUTH_OFFLOAD);
Yanbo Li52c22a62015-04-15 15:28:07 +0300382 SVCSTR(WMI_SERVICE_ATF);
Yanbo Lide0c7892015-04-15 15:28:08 +0300383 SVCSTR(WMI_SERVICE_COEX_GPIO);
Raja Mani840357c2015-06-22 20:10:10 +0530384 SVCSTR(WMI_SERVICE_ENHANCED_PROXY_STA);
385 SVCSTR(WMI_SERVICE_TT);
386 SVCSTR(WMI_SERVICE_PEER_CACHING);
387 SVCSTR(WMI_SERVICE_AUX_SPECTRAL_INTF);
388 SVCSTR(WMI_SERVICE_AUX_CHAN_LOAD_INTF);
389 SVCSTR(WMI_SERVICE_BSS_CHANNEL_INFO_64);
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530390 SVCSTR(WMI_SERVICE_EXT_RES_CFG_SUPPORT);
Peter Oh0b3d76e2016-01-28 13:54:07 -0800391 SVCSTR(WMI_SERVICE_MESH_11S);
392 SVCSTR(WMI_SERVICE_MESH_NON_11S);
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530393 SVCSTR(WMI_SERVICE_PEER_STATS);
Kalle Valo5e3dd152013-06-12 20:52:10 +0300394 default:
Michal Kaziorcff990c2014-08-04 09:18:33 +0300395 return NULL;
Kalle Valo5e3dd152013-06-12 20:52:10 +0300396 }
Michal Kaziorcff990c2014-08-04 09:18:33 +0300397
398#undef SVCSTR
Kalle Valo5e3dd152013-06-12 20:52:10 +0300399}
400
Michal Kazior37b9f932014-11-27 10:11:16 +0100401#define WMI_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id, len) \
402 ((svc_id) < (len) && \
403 __le32_to_cpu((wmi_svc_bmap)[(svc_id)/(sizeof(u32))]) & \
Michal Kaziorcff990c2014-08-04 09:18:33 +0300404 BIT((svc_id)%(sizeof(u32))))
405
Michal Kazior37b9f932014-11-27 10:11:16 +0100406#define SVCMAP(x, y, len) \
Michal Kaziorcff990c2014-08-04 09:18:33 +0300407 do { \
Michal Kazior37b9f932014-11-27 10:11:16 +0100408 if (WMI_SERVICE_IS_ENABLED((in), (x), (len))) \
Michal Kaziorcff990c2014-08-04 09:18:33 +0300409 __set_bit(y, out); \
410 } while (0)
411
Michal Kazior37b9f932014-11-27 10:11:16 +0100412static inline void wmi_10x_svc_map(const __le32 *in, unsigned long *out,
413 size_t len)
Michal Kaziorcff990c2014-08-04 09:18:33 +0300414{
415 SVCMAP(WMI_10X_SERVICE_BEACON_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100416 WMI_SERVICE_BEACON_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300417 SVCMAP(WMI_10X_SERVICE_SCAN_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100418 WMI_SERVICE_SCAN_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300419 SVCMAP(WMI_10X_SERVICE_ROAM_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100420 WMI_SERVICE_ROAM_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300421 SVCMAP(WMI_10X_SERVICE_BCN_MISS_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100422 WMI_SERVICE_BCN_MISS_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300423 SVCMAP(WMI_10X_SERVICE_STA_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100424 WMI_SERVICE_STA_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300425 SVCMAP(WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100426 WMI_SERVICE_STA_ADVANCED_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300427 SVCMAP(WMI_10X_SERVICE_AP_UAPSD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100428 WMI_SERVICE_AP_UAPSD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300429 SVCMAP(WMI_10X_SERVICE_AP_DFS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100430 WMI_SERVICE_AP_DFS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300431 SVCMAP(WMI_10X_SERVICE_11AC,
Michal Kazior37b9f932014-11-27 10:11:16 +0100432 WMI_SERVICE_11AC, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300433 SVCMAP(WMI_10X_SERVICE_BLOCKACK,
Michal Kazior37b9f932014-11-27 10:11:16 +0100434 WMI_SERVICE_BLOCKACK, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300435 SVCMAP(WMI_10X_SERVICE_PHYERR,
Michal Kazior37b9f932014-11-27 10:11:16 +0100436 WMI_SERVICE_PHYERR, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300437 SVCMAP(WMI_10X_SERVICE_BCN_FILTER,
Michal Kazior37b9f932014-11-27 10:11:16 +0100438 WMI_SERVICE_BCN_FILTER, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300439 SVCMAP(WMI_10X_SERVICE_RTT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100440 WMI_SERVICE_RTT, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300441 SVCMAP(WMI_10X_SERVICE_RATECTRL,
Michal Kazior37b9f932014-11-27 10:11:16 +0100442 WMI_SERVICE_RATECTRL, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300443 SVCMAP(WMI_10X_SERVICE_WOW,
Michal Kazior37b9f932014-11-27 10:11:16 +0100444 WMI_SERVICE_WOW, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300445 SVCMAP(WMI_10X_SERVICE_RATECTRL_CACHE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100446 WMI_SERVICE_RATECTRL_CACHE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300447 SVCMAP(WMI_10X_SERVICE_IRAM_TIDS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100448 WMI_SERVICE_IRAM_TIDS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300449 SVCMAP(WMI_10X_SERVICE_BURST,
Michal Kazior37b9f932014-11-27 10:11:16 +0100450 WMI_SERVICE_BURST, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300451 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100452 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300453 SVCMAP(WMI_10X_SERVICE_FORCE_FW_HANG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100454 WMI_SERVICE_FORCE_FW_HANG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300455 SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100456 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT, len);
Yanbo Li52c22a62015-04-15 15:28:07 +0300457 SVCMAP(WMI_10X_SERVICE_ATF,
458 WMI_SERVICE_ATF, len);
Yanbo Lide0c7892015-04-15 15:28:08 +0300459 SVCMAP(WMI_10X_SERVICE_COEX_GPIO,
460 WMI_SERVICE_COEX_GPIO, len);
Peter Oh20fa2f72015-11-24 09:37:33 -0800461 SVCMAP(WMI_10X_SERVICE_AUX_SPECTRAL_INTF,
462 WMI_SERVICE_AUX_SPECTRAL_INTF, len);
463 SVCMAP(WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF,
464 WMI_SERVICE_AUX_CHAN_LOAD_INTF, len);
465 SVCMAP(WMI_10X_SERVICE_BSS_CHANNEL_INFO_64,
466 WMI_SERVICE_BSS_CHANNEL_INFO_64, len);
467 SVCMAP(WMI_10X_SERVICE_MESH,
Peter Oh0b3d76e2016-01-28 13:54:07 -0800468 WMI_SERVICE_MESH_11S, len);
Peter Oh20fa2f72015-11-24 09:37:33 -0800469 SVCMAP(WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT,
470 WMI_SERVICE_EXT_RES_CFG_SUPPORT, len);
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +0530471 SVCMAP(WMI_10X_SERVICE_PEER_STATS,
472 WMI_SERVICE_PEER_STATS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300473}
474
Michal Kazior37b9f932014-11-27 10:11:16 +0100475static inline void wmi_main_svc_map(const __le32 *in, unsigned long *out,
476 size_t len)
Michal Kaziorcff990c2014-08-04 09:18:33 +0300477{
478 SVCMAP(WMI_MAIN_SERVICE_BEACON_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100479 WMI_SERVICE_BEACON_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300480 SVCMAP(WMI_MAIN_SERVICE_SCAN_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100481 WMI_SERVICE_SCAN_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300482 SVCMAP(WMI_MAIN_SERVICE_ROAM_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100483 WMI_SERVICE_ROAM_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300484 SVCMAP(WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100485 WMI_SERVICE_BCN_MISS_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300486 SVCMAP(WMI_MAIN_SERVICE_STA_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100487 WMI_SERVICE_STA_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300488 SVCMAP(WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100489 WMI_SERVICE_STA_ADVANCED_PWRSAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300490 SVCMAP(WMI_MAIN_SERVICE_AP_UAPSD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100491 WMI_SERVICE_AP_UAPSD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300492 SVCMAP(WMI_MAIN_SERVICE_AP_DFS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100493 WMI_SERVICE_AP_DFS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300494 SVCMAP(WMI_MAIN_SERVICE_11AC,
Michal Kazior37b9f932014-11-27 10:11:16 +0100495 WMI_SERVICE_11AC, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300496 SVCMAP(WMI_MAIN_SERVICE_BLOCKACK,
Michal Kazior37b9f932014-11-27 10:11:16 +0100497 WMI_SERVICE_BLOCKACK, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300498 SVCMAP(WMI_MAIN_SERVICE_PHYERR,
Michal Kazior37b9f932014-11-27 10:11:16 +0100499 WMI_SERVICE_PHYERR, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300500 SVCMAP(WMI_MAIN_SERVICE_BCN_FILTER,
Michal Kazior37b9f932014-11-27 10:11:16 +0100501 WMI_SERVICE_BCN_FILTER, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300502 SVCMAP(WMI_MAIN_SERVICE_RTT,
Michal Kazior37b9f932014-11-27 10:11:16 +0100503 WMI_SERVICE_RTT, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300504 SVCMAP(WMI_MAIN_SERVICE_RATECTRL,
Michal Kazior37b9f932014-11-27 10:11:16 +0100505 WMI_SERVICE_RATECTRL, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300506 SVCMAP(WMI_MAIN_SERVICE_WOW,
Michal Kazior37b9f932014-11-27 10:11:16 +0100507 WMI_SERVICE_WOW, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300508 SVCMAP(WMI_MAIN_SERVICE_RATECTRL_CACHE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100509 WMI_SERVICE_RATECTRL_CACHE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300510 SVCMAP(WMI_MAIN_SERVICE_IRAM_TIDS,
Michal Kazior37b9f932014-11-27 10:11:16 +0100511 WMI_SERVICE_IRAM_TIDS, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300512 SVCMAP(WMI_MAIN_SERVICE_ARPNS_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100513 WMI_SERVICE_ARPNS_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300514 SVCMAP(WMI_MAIN_SERVICE_NLO,
Michal Kazior37b9f932014-11-27 10:11:16 +0100515 WMI_SERVICE_NLO, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300516 SVCMAP(WMI_MAIN_SERVICE_GTK_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100517 WMI_SERVICE_GTK_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300518 SVCMAP(WMI_MAIN_SERVICE_SCAN_SCH,
Michal Kazior37b9f932014-11-27 10:11:16 +0100519 WMI_SERVICE_SCAN_SCH, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300520 SVCMAP(WMI_MAIN_SERVICE_CSA_OFFLOAD,
Michal Kazior37b9f932014-11-27 10:11:16 +0100521 WMI_SERVICE_CSA_OFFLOAD, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300522 SVCMAP(WMI_MAIN_SERVICE_CHATTER,
Michal Kazior37b9f932014-11-27 10:11:16 +0100523 WMI_SERVICE_CHATTER, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300524 SVCMAP(WMI_MAIN_SERVICE_COEX_FREQAVOID,
Michal Kazior37b9f932014-11-27 10:11:16 +0100525 WMI_SERVICE_COEX_FREQAVOID, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300526 SVCMAP(WMI_MAIN_SERVICE_PACKET_POWER_SAVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100527 WMI_SERVICE_PACKET_POWER_SAVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300528 SVCMAP(WMI_MAIN_SERVICE_FORCE_FW_HANG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100529 WMI_SERVICE_FORCE_FW_HANG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300530 SVCMAP(WMI_MAIN_SERVICE_GPIO,
Michal Kazior37b9f932014-11-27 10:11:16 +0100531 WMI_SERVICE_GPIO, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300532 SVCMAP(WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM,
Michal Kazior37b9f932014-11-27 10:11:16 +0100533 WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300534 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100535 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300536 SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
Michal Kazior37b9f932014-11-27 10:11:16 +0100537 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300538 SVCMAP(WMI_MAIN_SERVICE_STA_KEEP_ALIVE,
Michal Kazior37b9f932014-11-27 10:11:16 +0100539 WMI_SERVICE_STA_KEEP_ALIVE, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300540 SVCMAP(WMI_MAIN_SERVICE_TX_ENCAP,
Michal Kazior37b9f932014-11-27 10:11:16 +0100541 WMI_SERVICE_TX_ENCAP, len);
Michal Kaziorcff990c2014-08-04 09:18:33 +0300542}
543
Raja Mani840357c2015-06-22 20:10:10 +0530544static inline void wmi_10_4_svc_map(const __le32 *in, unsigned long *out,
545 size_t len)
546{
547 SVCMAP(WMI_10_4_SERVICE_BEACON_OFFLOAD,
548 WMI_SERVICE_BEACON_OFFLOAD, len);
549 SVCMAP(WMI_10_4_SERVICE_SCAN_OFFLOAD,
550 WMI_SERVICE_SCAN_OFFLOAD, len);
551 SVCMAP(WMI_10_4_SERVICE_ROAM_OFFLOAD,
552 WMI_SERVICE_ROAM_OFFLOAD, len);
553 SVCMAP(WMI_10_4_SERVICE_BCN_MISS_OFFLOAD,
554 WMI_SERVICE_BCN_MISS_OFFLOAD, len);
555 SVCMAP(WMI_10_4_SERVICE_STA_PWRSAVE,
556 WMI_SERVICE_STA_PWRSAVE, len);
557 SVCMAP(WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE,
558 WMI_SERVICE_STA_ADVANCED_PWRSAVE, len);
559 SVCMAP(WMI_10_4_SERVICE_AP_UAPSD,
560 WMI_SERVICE_AP_UAPSD, len);
561 SVCMAP(WMI_10_4_SERVICE_AP_DFS,
562 WMI_SERVICE_AP_DFS, len);
563 SVCMAP(WMI_10_4_SERVICE_11AC,
564 WMI_SERVICE_11AC, len);
565 SVCMAP(WMI_10_4_SERVICE_BLOCKACK,
566 WMI_SERVICE_BLOCKACK, len);
567 SVCMAP(WMI_10_4_SERVICE_PHYERR,
568 WMI_SERVICE_PHYERR, len);
569 SVCMAP(WMI_10_4_SERVICE_BCN_FILTER,
570 WMI_SERVICE_BCN_FILTER, len);
571 SVCMAP(WMI_10_4_SERVICE_RTT,
572 WMI_SERVICE_RTT, len);
573 SVCMAP(WMI_10_4_SERVICE_RATECTRL,
574 WMI_SERVICE_RATECTRL, len);
575 SVCMAP(WMI_10_4_SERVICE_WOW,
576 WMI_SERVICE_WOW, len);
577 SVCMAP(WMI_10_4_SERVICE_RATECTRL_CACHE,
578 WMI_SERVICE_RATECTRL_CACHE, len);
579 SVCMAP(WMI_10_4_SERVICE_IRAM_TIDS,
580 WMI_SERVICE_IRAM_TIDS, len);
581 SVCMAP(WMI_10_4_SERVICE_BURST,
582 WMI_SERVICE_BURST, len);
583 SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT,
584 WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT, len);
585 SVCMAP(WMI_10_4_SERVICE_GTK_OFFLOAD,
586 WMI_SERVICE_GTK_OFFLOAD, len);
587 SVCMAP(WMI_10_4_SERVICE_SCAN_SCH,
588 WMI_SERVICE_SCAN_SCH, len);
589 SVCMAP(WMI_10_4_SERVICE_CSA_OFFLOAD,
590 WMI_SERVICE_CSA_OFFLOAD, len);
591 SVCMAP(WMI_10_4_SERVICE_CHATTER,
592 WMI_SERVICE_CHATTER, len);
593 SVCMAP(WMI_10_4_SERVICE_COEX_FREQAVOID,
594 WMI_SERVICE_COEX_FREQAVOID, len);
595 SVCMAP(WMI_10_4_SERVICE_PACKET_POWER_SAVE,
596 WMI_SERVICE_PACKET_POWER_SAVE, len);
597 SVCMAP(WMI_10_4_SERVICE_FORCE_FW_HANG,
598 WMI_SERVICE_FORCE_FW_HANG, len);
599 SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT,
600 WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT, len);
601 SVCMAP(WMI_10_4_SERVICE_GPIO,
602 WMI_SERVICE_GPIO, len);
603 SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG,
604 WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, len);
605 SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG,
606 WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, len);
607 SVCMAP(WMI_10_4_SERVICE_STA_KEEP_ALIVE,
608 WMI_SERVICE_STA_KEEP_ALIVE, len);
609 SVCMAP(WMI_10_4_SERVICE_TX_ENCAP,
610 WMI_SERVICE_TX_ENCAP, len);
611 SVCMAP(WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC,
612 WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC, len);
613 SVCMAP(WMI_10_4_SERVICE_EARLY_RX,
614 WMI_SERVICE_EARLY_RX, len);
615 SVCMAP(WMI_10_4_SERVICE_ENHANCED_PROXY_STA,
616 WMI_SERVICE_ENHANCED_PROXY_STA, len);
617 SVCMAP(WMI_10_4_SERVICE_TT,
618 WMI_SERVICE_TT, len);
619 SVCMAP(WMI_10_4_SERVICE_ATF,
620 WMI_SERVICE_ATF, len);
621 SVCMAP(WMI_10_4_SERVICE_PEER_CACHING,
622 WMI_SERVICE_PEER_CACHING, len);
623 SVCMAP(WMI_10_4_SERVICE_COEX_GPIO,
624 WMI_SERVICE_COEX_GPIO, len);
625 SVCMAP(WMI_10_4_SERVICE_AUX_SPECTRAL_INTF,
626 WMI_SERVICE_AUX_SPECTRAL_INTF, len);
627 SVCMAP(WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF,
628 WMI_SERVICE_AUX_CHAN_LOAD_INTF, len);
629 SVCMAP(WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64,
630 WMI_SERVICE_BSS_CHANNEL_INFO_64, len);
Vasanthakumar Thiagarajane3c62252015-10-29 19:11:32 +0530631 SVCMAP(WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT,
632 WMI_SERVICE_EXT_RES_CFG_SUPPORT, len);
Peter Oh0b3d76e2016-01-28 13:54:07 -0800633 SVCMAP(WMI_10_4_SERVICE_MESH_NON_11S,
634 WMI_SERVICE_MESH_NON_11S, len);
Raja Mani840357c2015-06-22 20:10:10 +0530635}
636
Michal Kaziorcff990c2014-08-04 09:18:33 +0300637#undef SVCMAP
Kalle Valo5e3dd152013-06-12 20:52:10 +0300638
Kalle Valo5e3dd152013-06-12 20:52:10 +0300639/* 2 word representation of MAC addr */
640struct wmi_mac_addr {
641 union {
642 u8 addr[6];
643 struct {
644 u32 word0;
645 u32 word1;
646 } __packed;
647 } __packed;
648} __packed;
649
Bartosz Markowskice428702013-09-26 17:47:05 +0200650struct wmi_cmd_map {
651 u32 init_cmdid;
652 u32 start_scan_cmdid;
653 u32 stop_scan_cmdid;
654 u32 scan_chan_list_cmdid;
655 u32 scan_sch_prio_tbl_cmdid;
656 u32 pdev_set_regdomain_cmdid;
657 u32 pdev_set_channel_cmdid;
658 u32 pdev_set_param_cmdid;
659 u32 pdev_pktlog_enable_cmdid;
660 u32 pdev_pktlog_disable_cmdid;
661 u32 pdev_set_wmm_params_cmdid;
662 u32 pdev_set_ht_cap_ie_cmdid;
663 u32 pdev_set_vht_cap_ie_cmdid;
664 u32 pdev_set_dscp_tid_map_cmdid;
665 u32 pdev_set_quiet_mode_cmdid;
666 u32 pdev_green_ap_ps_enable_cmdid;
667 u32 pdev_get_tpc_config_cmdid;
668 u32 pdev_set_base_macaddr_cmdid;
669 u32 vdev_create_cmdid;
670 u32 vdev_delete_cmdid;
671 u32 vdev_start_request_cmdid;
672 u32 vdev_restart_request_cmdid;
673 u32 vdev_up_cmdid;
674 u32 vdev_stop_cmdid;
675 u32 vdev_down_cmdid;
676 u32 vdev_set_param_cmdid;
677 u32 vdev_install_key_cmdid;
678 u32 peer_create_cmdid;
679 u32 peer_delete_cmdid;
680 u32 peer_flush_tids_cmdid;
681 u32 peer_set_param_cmdid;
682 u32 peer_assoc_cmdid;
683 u32 peer_add_wds_entry_cmdid;
684 u32 peer_remove_wds_entry_cmdid;
685 u32 peer_mcast_group_cmdid;
686 u32 bcn_tx_cmdid;
687 u32 pdev_send_bcn_cmdid;
688 u32 bcn_tmpl_cmdid;
689 u32 bcn_filter_rx_cmdid;
690 u32 prb_req_filter_rx_cmdid;
691 u32 mgmt_tx_cmdid;
692 u32 prb_tmpl_cmdid;
693 u32 addba_clear_resp_cmdid;
694 u32 addba_send_cmdid;
695 u32 addba_status_cmdid;
696 u32 delba_send_cmdid;
697 u32 addba_set_resp_cmdid;
698 u32 send_singleamsdu_cmdid;
699 u32 sta_powersave_mode_cmdid;
700 u32 sta_powersave_param_cmdid;
701 u32 sta_mimo_ps_mode_cmdid;
702 u32 pdev_dfs_enable_cmdid;
703 u32 pdev_dfs_disable_cmdid;
704 u32 roam_scan_mode;
705 u32 roam_scan_rssi_threshold;
706 u32 roam_scan_period;
707 u32 roam_scan_rssi_change_threshold;
708 u32 roam_ap_profile;
709 u32 ofl_scan_add_ap_profile;
710 u32 ofl_scan_remove_ap_profile;
711 u32 ofl_scan_period;
712 u32 p2p_dev_set_device_info;
713 u32 p2p_dev_set_discoverability;
714 u32 p2p_go_set_beacon_ie;
715 u32 p2p_go_set_probe_resp_ie;
716 u32 p2p_set_vendor_ie_data_cmdid;
717 u32 ap_ps_peer_param_cmdid;
718 u32 ap_ps_peer_uapsd_coex_cmdid;
719 u32 peer_rate_retry_sched_cmdid;
720 u32 wlan_profile_trigger_cmdid;
721 u32 wlan_profile_set_hist_intvl_cmdid;
722 u32 wlan_profile_get_profile_data_cmdid;
723 u32 wlan_profile_enable_profile_id_cmdid;
724 u32 wlan_profile_list_profile_id_cmdid;
725 u32 pdev_suspend_cmdid;
726 u32 pdev_resume_cmdid;
727 u32 add_bcn_filter_cmdid;
728 u32 rmv_bcn_filter_cmdid;
729 u32 wow_add_wake_pattern_cmdid;
730 u32 wow_del_wake_pattern_cmdid;
731 u32 wow_enable_disable_wake_event_cmdid;
732 u32 wow_enable_cmdid;
733 u32 wow_hostwakeup_from_sleep_cmdid;
734 u32 rtt_measreq_cmdid;
735 u32 rtt_tsf_cmdid;
736 u32 vdev_spectral_scan_configure_cmdid;
737 u32 vdev_spectral_scan_enable_cmdid;
738 u32 request_stats_cmdid;
739 u32 set_arp_ns_offload_cmdid;
740 u32 network_list_offload_config_cmdid;
741 u32 gtk_offload_cmdid;
742 u32 csa_offload_enable_cmdid;
743 u32 csa_offload_chanswitch_cmdid;
744 u32 chatter_set_mode_cmdid;
745 u32 peer_tid_addba_cmdid;
746 u32 peer_tid_delba_cmdid;
747 u32 sta_dtim_ps_method_cmdid;
748 u32 sta_uapsd_auto_trig_cmdid;
749 u32 sta_keepalive_cmd;
750 u32 echo_cmdid;
751 u32 pdev_utf_cmdid;
752 u32 dbglog_cfg_cmdid;
753 u32 pdev_qvit_cmdid;
754 u32 pdev_ftm_intg_cmdid;
755 u32 vdev_set_keepalive_cmdid;
756 u32 vdev_get_keepalive_cmdid;
757 u32 force_fw_hang_cmdid;
758 u32 gpio_config_cmdid;
759 u32 gpio_output_cmdid;
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +0200760 u32 pdev_get_temperature_cmdid;
Michal Kazior6d492fe2015-01-28 09:57:22 +0200761 u32 vdev_set_wmm_params_cmdid;
Marek Puzyniakad45c882015-03-30 09:51:53 +0300762 u32 tdls_set_state_cmdid;
763 u32 tdls_peer_update_cmdid;
Michal Kazior5b272e32015-03-31 10:26:22 +0000764 u32 adaptive_qcs_cmdid;
Raja Mani2d491e62015-06-22 20:10:11 +0530765 u32 scan_update_request_cmdid;
766 u32 vdev_standby_response_cmdid;
767 u32 vdev_resume_response_cmdid;
768 u32 wlan_peer_caching_add_peer_cmdid;
769 u32 wlan_peer_caching_evict_peer_cmdid;
770 u32 wlan_peer_caching_restore_peer_cmdid;
771 u32 wlan_peer_caching_print_all_peers_info_cmdid;
772 u32 peer_update_wds_entry_cmdid;
773 u32 peer_add_proxy_sta_entry_cmdid;
774 u32 rtt_keepalive_cmdid;
775 u32 oem_req_cmdid;
776 u32 nan_cmdid;
777 u32 vdev_ratemask_cmdid;
778 u32 qboost_cfg_cmdid;
779 u32 pdev_smart_ant_enable_cmdid;
780 u32 pdev_smart_ant_set_rx_antenna_cmdid;
781 u32 peer_smart_ant_set_tx_antenna_cmdid;
782 u32 peer_smart_ant_set_train_info_cmdid;
783 u32 peer_smart_ant_set_node_config_ops_cmdid;
784 u32 pdev_set_antenna_switch_table_cmdid;
785 u32 pdev_set_ctl_table_cmdid;
786 u32 pdev_set_mimogain_table_cmdid;
787 u32 pdev_ratepwr_table_cmdid;
788 u32 pdev_ratepwr_chainmsk_table_cmdid;
789 u32 pdev_fips_cmdid;
790 u32 tt_set_conf_cmdid;
791 u32 fwtest_cmdid;
792 u32 vdev_atf_request_cmdid;
793 u32 peer_atf_request_cmdid;
794 u32 pdev_get_ani_cck_config_cmdid;
795 u32 pdev_get_ani_ofdm_config_cmdid;
796 u32 pdev_reserve_ast_entry_cmdid;
797 u32 pdev_get_nfcal_power_cmdid;
798 u32 pdev_get_tpc_cmdid;
799 u32 pdev_get_ast_info_cmdid;
800 u32 vdev_set_dscp_tid_map_cmdid;
801 u32 pdev_get_info_cmdid;
802 u32 vdev_get_info_cmdid;
803 u32 vdev_filter_neighbor_rx_packets_cmdid;
804 u32 mu_cal_start_cmdid;
805 u32 set_cca_params_cmdid;
806 u32 pdev_bss_chan_info_request_cmdid;
Maharaja62f77f02015-10-21 11:49:18 +0300807 u32 pdev_enable_adaptive_cca_cmdid;
Bartosz Markowskice428702013-09-26 17:47:05 +0200808};
809
Kalle Valo5e3dd152013-06-12 20:52:10 +0300810/*
811 * wmi command groups.
812 */
813enum wmi_cmd_group {
814 /* 0 to 2 are reserved */
815 WMI_GRP_START = 0x3,
816 WMI_GRP_SCAN = WMI_GRP_START,
817 WMI_GRP_PDEV,
818 WMI_GRP_VDEV,
819 WMI_GRP_PEER,
820 WMI_GRP_MGMT,
821 WMI_GRP_BA_NEG,
822 WMI_GRP_STA_PS,
823 WMI_GRP_DFS,
824 WMI_GRP_ROAM,
825 WMI_GRP_OFL_SCAN,
826 WMI_GRP_P2P,
827 WMI_GRP_AP_PS,
828 WMI_GRP_RATE_CTRL,
829 WMI_GRP_PROFILE,
830 WMI_GRP_SUSPEND,
831 WMI_GRP_BCN_FILTER,
832 WMI_GRP_WOW,
833 WMI_GRP_RTT,
834 WMI_GRP_SPECTRAL,
835 WMI_GRP_STATS,
836 WMI_GRP_ARP_NS_OFL,
837 WMI_GRP_NLO_OFL,
838 WMI_GRP_GTK_OFL,
839 WMI_GRP_CSA_OFL,
840 WMI_GRP_CHATTER,
841 WMI_GRP_TID_ADDBA,
842 WMI_GRP_MISC,
843 WMI_GRP_GPIO,
844};
845
846#define WMI_CMD_GRP(grp_id) (((grp_id) << 12) | 0x1)
847#define WMI_EVT_GRP_START_ID(grp_id) (((grp_id) << 12) | 0x1)
848
Bartosz Markowski34957b22013-10-15 09:55:31 +0200849#define WMI_CMD_UNSUPPORTED 0
Bartosz Markowskib7e3adf2013-09-26 17:47:06 +0200850
851/* Command IDs and command events for MAIN FW. */
Kalle Valo5e3dd152013-06-12 20:52:10 +0300852enum wmi_cmd_id {
853 WMI_INIT_CMDID = 0x1,
854
855 /* Scan specific commands */
856 WMI_START_SCAN_CMDID = WMI_CMD_GRP(WMI_GRP_SCAN),
857 WMI_STOP_SCAN_CMDID,
858 WMI_SCAN_CHAN_LIST_CMDID,
859 WMI_SCAN_SCH_PRIO_TBL_CMDID,
860
861 /* PDEV (physical device) specific commands */
862 WMI_PDEV_SET_REGDOMAIN_CMDID = WMI_CMD_GRP(WMI_GRP_PDEV),
863 WMI_PDEV_SET_CHANNEL_CMDID,
864 WMI_PDEV_SET_PARAM_CMDID,
865 WMI_PDEV_PKTLOG_ENABLE_CMDID,
866 WMI_PDEV_PKTLOG_DISABLE_CMDID,
867 WMI_PDEV_SET_WMM_PARAMS_CMDID,
868 WMI_PDEV_SET_HT_CAP_IE_CMDID,
869 WMI_PDEV_SET_VHT_CAP_IE_CMDID,
870 WMI_PDEV_SET_DSCP_TID_MAP_CMDID,
871 WMI_PDEV_SET_QUIET_MODE_CMDID,
872 WMI_PDEV_GREEN_AP_PS_ENABLE_CMDID,
873 WMI_PDEV_GET_TPC_CONFIG_CMDID,
874 WMI_PDEV_SET_BASE_MACADDR_CMDID,
875
876 /* VDEV (virtual device) specific commands */
877 WMI_VDEV_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_VDEV),
878 WMI_VDEV_DELETE_CMDID,
879 WMI_VDEV_START_REQUEST_CMDID,
880 WMI_VDEV_RESTART_REQUEST_CMDID,
881 WMI_VDEV_UP_CMDID,
882 WMI_VDEV_STOP_CMDID,
883 WMI_VDEV_DOWN_CMDID,
884 WMI_VDEV_SET_PARAM_CMDID,
885 WMI_VDEV_INSTALL_KEY_CMDID,
886
887 /* peer specific commands */
888 WMI_PEER_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_PEER),
889 WMI_PEER_DELETE_CMDID,
890 WMI_PEER_FLUSH_TIDS_CMDID,
891 WMI_PEER_SET_PARAM_CMDID,
892 WMI_PEER_ASSOC_CMDID,
893 WMI_PEER_ADD_WDS_ENTRY_CMDID,
894 WMI_PEER_REMOVE_WDS_ENTRY_CMDID,
895 WMI_PEER_MCAST_GROUP_CMDID,
896
897 /* beacon/management specific commands */
898 WMI_BCN_TX_CMDID = WMI_CMD_GRP(WMI_GRP_MGMT),
899 WMI_PDEV_SEND_BCN_CMDID,
900 WMI_BCN_TMPL_CMDID,
901 WMI_BCN_FILTER_RX_CMDID,
902 WMI_PRB_REQ_FILTER_RX_CMDID,
903 WMI_MGMT_TX_CMDID,
904 WMI_PRB_TMPL_CMDID,
905
906 /* commands to directly control BA negotiation directly from host. */
907 WMI_ADDBA_CLEAR_RESP_CMDID = WMI_CMD_GRP(WMI_GRP_BA_NEG),
908 WMI_ADDBA_SEND_CMDID,
909 WMI_ADDBA_STATUS_CMDID,
910 WMI_DELBA_SEND_CMDID,
911 WMI_ADDBA_SET_RESP_CMDID,
912 WMI_SEND_SINGLEAMSDU_CMDID,
913
914 /* Station power save specific config */
915 WMI_STA_POWERSAVE_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_STA_PS),
916 WMI_STA_POWERSAVE_PARAM_CMDID,
917 WMI_STA_MIMO_PS_MODE_CMDID,
918
919 /** DFS-specific commands */
920 WMI_PDEV_DFS_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_DFS),
921 WMI_PDEV_DFS_DISABLE_CMDID,
922
923 /* Roaming specific commands */
924 WMI_ROAM_SCAN_MODE = WMI_CMD_GRP(WMI_GRP_ROAM),
925 WMI_ROAM_SCAN_RSSI_THRESHOLD,
926 WMI_ROAM_SCAN_PERIOD,
927 WMI_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
928 WMI_ROAM_AP_PROFILE,
929
930 /* offload scan specific commands */
931 WMI_OFL_SCAN_ADD_AP_PROFILE = WMI_CMD_GRP(WMI_GRP_OFL_SCAN),
932 WMI_OFL_SCAN_REMOVE_AP_PROFILE,
933 WMI_OFL_SCAN_PERIOD,
934
935 /* P2P specific commands */
936 WMI_P2P_DEV_SET_DEVICE_INFO = WMI_CMD_GRP(WMI_GRP_P2P),
937 WMI_P2P_DEV_SET_DISCOVERABILITY,
938 WMI_P2P_GO_SET_BEACON_IE,
939 WMI_P2P_GO_SET_PROBE_RESP_IE,
940 WMI_P2P_SET_VENDOR_IE_DATA_CMDID,
941
942 /* AP power save specific config */
943 WMI_AP_PS_PEER_PARAM_CMDID = WMI_CMD_GRP(WMI_GRP_AP_PS),
944 WMI_AP_PS_PEER_UAPSD_COEX_CMDID,
945
946 /* Rate-control specific commands */
947 WMI_PEER_RATE_RETRY_SCHED_CMDID =
948 WMI_CMD_GRP(WMI_GRP_RATE_CTRL),
949
950 /* WLAN Profiling commands. */
951 WMI_WLAN_PROFILE_TRIGGER_CMDID = WMI_CMD_GRP(WMI_GRP_PROFILE),
952 WMI_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
953 WMI_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
954 WMI_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
955 WMI_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
956
957 /* Suspend resume command Ids */
958 WMI_PDEV_SUSPEND_CMDID = WMI_CMD_GRP(WMI_GRP_SUSPEND),
959 WMI_PDEV_RESUME_CMDID,
960
961 /* Beacon filter commands */
962 WMI_ADD_BCN_FILTER_CMDID = WMI_CMD_GRP(WMI_GRP_BCN_FILTER),
963 WMI_RMV_BCN_FILTER_CMDID,
964
965 /* WOW Specific WMI commands*/
966 WMI_WOW_ADD_WAKE_PATTERN_CMDID = WMI_CMD_GRP(WMI_GRP_WOW),
967 WMI_WOW_DEL_WAKE_PATTERN_CMDID,
968 WMI_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
969 WMI_WOW_ENABLE_CMDID,
970 WMI_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
971
972 /* RTT measurement related cmd */
973 WMI_RTT_MEASREQ_CMDID = WMI_CMD_GRP(WMI_GRP_RTT),
974 WMI_RTT_TSF_CMDID,
975
976 /* spectral scan commands */
977 WMI_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID = WMI_CMD_GRP(WMI_GRP_SPECTRAL),
978 WMI_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
979
980 /* F/W stats */
981 WMI_REQUEST_STATS_CMDID = WMI_CMD_GRP(WMI_GRP_STATS),
982
983 /* ARP OFFLOAD REQUEST*/
984 WMI_SET_ARP_NS_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_ARP_NS_OFL),
985
986 /* NS offload confid*/
987 WMI_NETWORK_LIST_OFFLOAD_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_NLO_OFL),
988
989 /* GTK offload Specific WMI commands*/
990 WMI_GTK_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_GTK_OFL),
991
992 /* CSA offload Specific WMI commands*/
993 WMI_CSA_OFFLOAD_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_CSA_OFL),
994 WMI_CSA_OFFLOAD_CHANSWITCH_CMDID,
995
996 /* Chatter commands*/
997 WMI_CHATTER_SET_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_CHATTER),
998
999 /* addba specific commands */
1000 WMI_PEER_TID_ADDBA_CMDID = WMI_CMD_GRP(WMI_GRP_TID_ADDBA),
1001 WMI_PEER_TID_DELBA_CMDID,
1002
1003 /* set station mimo powersave method */
1004 WMI_STA_DTIM_PS_METHOD_CMDID,
1005 /* Configure the Station UAPSD AC Auto Trigger Parameters */
1006 WMI_STA_UAPSD_AUTO_TRIG_CMDID,
1007
1008 /* STA Keep alive parameter configuration,
1009 Requires WMI_SERVICE_STA_KEEP_ALIVE */
1010 WMI_STA_KEEPALIVE_CMD,
1011
1012 /* misc command group */
1013 WMI_ECHO_CMDID = WMI_CMD_GRP(WMI_GRP_MISC),
1014 WMI_PDEV_UTF_CMDID,
1015 WMI_DBGLOG_CFG_CMDID,
1016 WMI_PDEV_QVIT_CMDID,
1017 WMI_PDEV_FTM_INTG_CMDID,
1018 WMI_VDEV_SET_KEEPALIVE_CMDID,
1019 WMI_VDEV_GET_KEEPALIVE_CMDID,
Michal Kazior9cfbce72013-07-16 09:54:36 +02001020 WMI_FORCE_FW_HANG_CMDID,
Kalle Valo5e3dd152013-06-12 20:52:10 +03001021
1022 /* GPIO Configuration */
1023 WMI_GPIO_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_GPIO),
1024 WMI_GPIO_OUTPUT_CMDID,
1025};
1026
1027enum wmi_event_id {
1028 WMI_SERVICE_READY_EVENTID = 0x1,
1029 WMI_READY_EVENTID,
1030
1031 /* Scan specific events */
1032 WMI_SCAN_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_SCAN),
1033
1034 /* PDEV specific events */
1035 WMI_PDEV_TPC_CONFIG_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PDEV),
1036 WMI_CHAN_INFO_EVENTID,
1037 WMI_PHYERR_EVENTID,
1038
1039 /* VDEV specific events */
1040 WMI_VDEV_START_RESP_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_VDEV),
1041 WMI_VDEV_STOPPED_EVENTID,
1042 WMI_VDEV_INSTALL_KEY_COMPLETE_EVENTID,
1043
1044 /* peer specific events */
1045 WMI_PEER_STA_KICKOUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PEER),
1046
1047 /* beacon/mgmt specific events */
1048 WMI_MGMT_RX_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MGMT),
1049 WMI_HOST_SWBA_EVENTID,
1050 WMI_TBTTOFFSET_UPDATE_EVENTID,
1051
1052 /* ADDBA Related WMI Events*/
1053 WMI_TX_DELBA_COMPLETE_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_BA_NEG),
1054 WMI_TX_ADDBA_COMPLETE_EVENTID,
1055
1056 /* Roam event to trigger roaming on host */
1057 WMI_ROAM_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_ROAM),
1058 WMI_PROFILE_MATCH,
1059
1060 /* WoW */
1061 WMI_WOW_WAKEUP_HOST_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_WOW),
1062
1063 /* RTT */
1064 WMI_RTT_MEASUREMENT_REPORT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_RTT),
1065 WMI_TSF_MEASUREMENT_REPORT_EVENTID,
1066 WMI_RTT_ERROR_REPORT_EVENTID,
1067
1068 /* GTK offload */
1069 WMI_GTK_OFFLOAD_STATUS_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GTK_OFL),
1070 WMI_GTK_REKEY_FAIL_EVENTID,
1071
1072 /* CSA IE received event */
1073 WMI_CSA_HANDLING_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_CSA_OFL),
1074
1075 /* Misc events */
1076 WMI_ECHO_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MISC),
1077 WMI_PDEV_UTF_EVENTID,
1078 WMI_DEBUG_MESG_EVENTID,
1079 WMI_UPDATE_STATS_EVENTID,
1080 WMI_DEBUG_PRINT_EVENTID,
1081 WMI_DCS_INTERFERENCE_EVENTID,
1082 WMI_PDEV_QVIT_EVENTID,
1083 WMI_WLAN_PROFILE_DATA_EVENTID,
1084 WMI_PDEV_FTM_INTG_EVENTID,
1085 WMI_WLAN_FREQ_AVOID_EVENTID,
1086 WMI_VDEV_GET_KEEPALIVE_EVENTID,
1087
1088 /* GPIO Event */
1089 WMI_GPIO_INPUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GPIO),
1090};
1091
Bartosz Markowskib7e3adf2013-09-26 17:47:06 +02001092/* Command IDs and command events for 10.X firmware */
1093enum wmi_10x_cmd_id {
1094 WMI_10X_START_CMDID = 0x9000,
1095 WMI_10X_END_CMDID = 0x9FFF,
1096
1097 /* initialize the wlan sub system */
1098 WMI_10X_INIT_CMDID,
1099
1100 /* Scan specific commands */
1101
1102 WMI_10X_START_SCAN_CMDID = WMI_10X_START_CMDID,
1103 WMI_10X_STOP_SCAN_CMDID,
1104 WMI_10X_SCAN_CHAN_LIST_CMDID,
1105 WMI_10X_ECHO_CMDID,
1106
1107 /* PDEV(physical device) specific commands */
1108 WMI_10X_PDEV_SET_REGDOMAIN_CMDID,
1109 WMI_10X_PDEV_SET_CHANNEL_CMDID,
1110 WMI_10X_PDEV_SET_PARAM_CMDID,
1111 WMI_10X_PDEV_PKTLOG_ENABLE_CMDID,
1112 WMI_10X_PDEV_PKTLOG_DISABLE_CMDID,
1113 WMI_10X_PDEV_SET_WMM_PARAMS_CMDID,
1114 WMI_10X_PDEV_SET_HT_CAP_IE_CMDID,
1115 WMI_10X_PDEV_SET_VHT_CAP_IE_CMDID,
1116 WMI_10X_PDEV_SET_BASE_MACADDR_CMDID,
1117 WMI_10X_PDEV_SET_DSCP_TID_MAP_CMDID,
1118 WMI_10X_PDEV_SET_QUIET_MODE_CMDID,
1119 WMI_10X_PDEV_GREEN_AP_PS_ENABLE_CMDID,
1120 WMI_10X_PDEV_GET_TPC_CONFIG_CMDID,
1121
1122 /* VDEV(virtual device) specific commands */
1123 WMI_10X_VDEV_CREATE_CMDID,
1124 WMI_10X_VDEV_DELETE_CMDID,
1125 WMI_10X_VDEV_START_REQUEST_CMDID,
1126 WMI_10X_VDEV_RESTART_REQUEST_CMDID,
1127 WMI_10X_VDEV_UP_CMDID,
1128 WMI_10X_VDEV_STOP_CMDID,
1129 WMI_10X_VDEV_DOWN_CMDID,
1130 WMI_10X_VDEV_STANDBY_RESPONSE_CMDID,
1131 WMI_10X_VDEV_RESUME_RESPONSE_CMDID,
1132 WMI_10X_VDEV_SET_PARAM_CMDID,
1133 WMI_10X_VDEV_INSTALL_KEY_CMDID,
1134
1135 /* peer specific commands */
1136 WMI_10X_PEER_CREATE_CMDID,
1137 WMI_10X_PEER_DELETE_CMDID,
1138 WMI_10X_PEER_FLUSH_TIDS_CMDID,
1139 WMI_10X_PEER_SET_PARAM_CMDID,
1140 WMI_10X_PEER_ASSOC_CMDID,
1141 WMI_10X_PEER_ADD_WDS_ENTRY_CMDID,
1142 WMI_10X_PEER_REMOVE_WDS_ENTRY_CMDID,
1143 WMI_10X_PEER_MCAST_GROUP_CMDID,
1144
1145 /* beacon/management specific commands */
1146
1147 WMI_10X_BCN_TX_CMDID,
1148 WMI_10X_BCN_PRB_TMPL_CMDID,
1149 WMI_10X_BCN_FILTER_RX_CMDID,
1150 WMI_10X_PRB_REQ_FILTER_RX_CMDID,
1151 WMI_10X_MGMT_TX_CMDID,
1152
1153 /* commands to directly control ba negotiation directly from host. */
1154 WMI_10X_ADDBA_CLEAR_RESP_CMDID,
1155 WMI_10X_ADDBA_SEND_CMDID,
1156 WMI_10X_ADDBA_STATUS_CMDID,
1157 WMI_10X_DELBA_SEND_CMDID,
1158 WMI_10X_ADDBA_SET_RESP_CMDID,
1159 WMI_10X_SEND_SINGLEAMSDU_CMDID,
1160
1161 /* Station power save specific config */
1162 WMI_10X_STA_POWERSAVE_MODE_CMDID,
1163 WMI_10X_STA_POWERSAVE_PARAM_CMDID,
1164 WMI_10X_STA_MIMO_PS_MODE_CMDID,
1165
1166 /* set debug log config */
1167 WMI_10X_DBGLOG_CFG_CMDID,
1168
1169 /* DFS-specific commands */
1170 WMI_10X_PDEV_DFS_ENABLE_CMDID,
1171 WMI_10X_PDEV_DFS_DISABLE_CMDID,
1172
1173 /* QVIT specific command id */
1174 WMI_10X_PDEV_QVIT_CMDID,
1175
1176 /* Offload Scan and Roaming related commands */
1177 WMI_10X_ROAM_SCAN_MODE,
1178 WMI_10X_ROAM_SCAN_RSSI_THRESHOLD,
1179 WMI_10X_ROAM_SCAN_PERIOD,
1180 WMI_10X_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1181 WMI_10X_ROAM_AP_PROFILE,
1182 WMI_10X_OFL_SCAN_ADD_AP_PROFILE,
1183 WMI_10X_OFL_SCAN_REMOVE_AP_PROFILE,
1184 WMI_10X_OFL_SCAN_PERIOD,
1185
1186 /* P2P specific commands */
1187 WMI_10X_P2P_DEV_SET_DEVICE_INFO,
1188 WMI_10X_P2P_DEV_SET_DISCOVERABILITY,
1189 WMI_10X_P2P_GO_SET_BEACON_IE,
1190 WMI_10X_P2P_GO_SET_PROBE_RESP_IE,
1191
1192 /* AP power save specific config */
1193 WMI_10X_AP_PS_PEER_PARAM_CMDID,
1194 WMI_10X_AP_PS_PEER_UAPSD_COEX_CMDID,
1195
1196 /* Rate-control specific commands */
1197 WMI_10X_PEER_RATE_RETRY_SCHED_CMDID,
1198
1199 /* WLAN Profiling commands. */
1200 WMI_10X_WLAN_PROFILE_TRIGGER_CMDID,
1201 WMI_10X_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1202 WMI_10X_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1203 WMI_10X_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1204 WMI_10X_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1205
1206 /* Suspend resume command Ids */
1207 WMI_10X_PDEV_SUSPEND_CMDID,
1208 WMI_10X_PDEV_RESUME_CMDID,
1209
1210 /* Beacon filter commands */
1211 WMI_10X_ADD_BCN_FILTER_CMDID,
1212 WMI_10X_RMV_BCN_FILTER_CMDID,
1213
1214 /* WOW Specific WMI commands*/
1215 WMI_10X_WOW_ADD_WAKE_PATTERN_CMDID,
1216 WMI_10X_WOW_DEL_WAKE_PATTERN_CMDID,
1217 WMI_10X_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1218 WMI_10X_WOW_ENABLE_CMDID,
1219 WMI_10X_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1220
1221 /* RTT measurement related cmd */
1222 WMI_10X_RTT_MEASREQ_CMDID,
1223 WMI_10X_RTT_TSF_CMDID,
1224
1225 /* transmit beacon by value */
1226 WMI_10X_PDEV_SEND_BCN_CMDID,
1227
1228 /* F/W stats */
1229 WMI_10X_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
1230 WMI_10X_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1231 WMI_10X_REQUEST_STATS_CMDID,
1232
1233 /* GPIO Configuration */
1234 WMI_10X_GPIO_CONFIG_CMDID,
1235 WMI_10X_GPIO_OUTPUT_CMDID,
1236
1237 WMI_10X_PDEV_UTF_CMDID = WMI_10X_END_CMDID - 1,
1238};
1239
1240enum wmi_10x_event_id {
1241 WMI_10X_SERVICE_READY_EVENTID = 0x8000,
1242 WMI_10X_READY_EVENTID,
1243 WMI_10X_START_EVENTID = 0x9000,
1244 WMI_10X_END_EVENTID = 0x9FFF,
1245
1246 /* Scan specific events */
1247 WMI_10X_SCAN_EVENTID = WMI_10X_START_EVENTID,
1248 WMI_10X_ECHO_EVENTID,
1249 WMI_10X_DEBUG_MESG_EVENTID,
1250 WMI_10X_UPDATE_STATS_EVENTID,
1251
1252 /* Instantaneous RSSI event */
1253 WMI_10X_INST_RSSI_STATS_EVENTID,
1254
1255 /* VDEV specific events */
1256 WMI_10X_VDEV_START_RESP_EVENTID,
1257 WMI_10X_VDEV_STANDBY_REQ_EVENTID,
1258 WMI_10X_VDEV_RESUME_REQ_EVENTID,
1259 WMI_10X_VDEV_STOPPED_EVENTID,
1260
1261 /* peer specific events */
1262 WMI_10X_PEER_STA_KICKOUT_EVENTID,
1263
1264 /* beacon/mgmt specific events */
1265 WMI_10X_HOST_SWBA_EVENTID,
1266 WMI_10X_TBTTOFFSET_UPDATE_EVENTID,
1267 WMI_10X_MGMT_RX_EVENTID,
1268
1269 /* Channel stats event */
1270 WMI_10X_CHAN_INFO_EVENTID,
1271
1272 /* PHY Error specific WMI event */
1273 WMI_10X_PHYERR_EVENTID,
1274
1275 /* Roam event to trigger roaming on host */
1276 WMI_10X_ROAM_EVENTID,
1277
1278 /* matching AP found from list of profiles */
1279 WMI_10X_PROFILE_MATCH,
1280
1281 /* debug print message used for tracing FW code while debugging */
1282 WMI_10X_DEBUG_PRINT_EVENTID,
1283 /* VI spoecific event */
1284 WMI_10X_PDEV_QVIT_EVENTID,
1285 /* FW code profile data in response to profile request */
1286 WMI_10X_WLAN_PROFILE_DATA_EVENTID,
1287
1288 /*RTT related event ID*/
1289 WMI_10X_RTT_MEASUREMENT_REPORT_EVENTID,
1290 WMI_10X_TSF_MEASUREMENT_REPORT_EVENTID,
1291 WMI_10X_RTT_ERROR_REPORT_EVENTID,
1292
1293 WMI_10X_WOW_WAKEUP_HOST_EVENTID,
1294 WMI_10X_DCS_INTERFERENCE_EVENTID,
1295
1296 /* TPC config for the current operating channel */
1297 WMI_10X_PDEV_TPC_CONFIG_EVENTID,
1298
1299 WMI_10X_GPIO_INPUT_EVENTID,
1300 WMI_10X_PDEV_UTF_EVENTID = WMI_10X_END_EVENTID-1,
1301};
1302
Michal Kazior24c88f72014-07-25 13:32:17 +02001303enum wmi_10_2_cmd_id {
1304 WMI_10_2_START_CMDID = 0x9000,
1305 WMI_10_2_END_CMDID = 0x9FFF,
1306 WMI_10_2_INIT_CMDID,
1307 WMI_10_2_START_SCAN_CMDID = WMI_10_2_START_CMDID,
1308 WMI_10_2_STOP_SCAN_CMDID,
1309 WMI_10_2_SCAN_CHAN_LIST_CMDID,
1310 WMI_10_2_ECHO_CMDID,
1311 WMI_10_2_PDEV_SET_REGDOMAIN_CMDID,
1312 WMI_10_2_PDEV_SET_CHANNEL_CMDID,
1313 WMI_10_2_PDEV_SET_PARAM_CMDID,
1314 WMI_10_2_PDEV_PKTLOG_ENABLE_CMDID,
1315 WMI_10_2_PDEV_PKTLOG_DISABLE_CMDID,
1316 WMI_10_2_PDEV_SET_WMM_PARAMS_CMDID,
1317 WMI_10_2_PDEV_SET_HT_CAP_IE_CMDID,
1318 WMI_10_2_PDEV_SET_VHT_CAP_IE_CMDID,
1319 WMI_10_2_PDEV_SET_BASE_MACADDR_CMDID,
1320 WMI_10_2_PDEV_SET_QUIET_MODE_CMDID,
1321 WMI_10_2_PDEV_GREEN_AP_PS_ENABLE_CMDID,
1322 WMI_10_2_PDEV_GET_TPC_CONFIG_CMDID,
1323 WMI_10_2_VDEV_CREATE_CMDID,
1324 WMI_10_2_VDEV_DELETE_CMDID,
1325 WMI_10_2_VDEV_START_REQUEST_CMDID,
1326 WMI_10_2_VDEV_RESTART_REQUEST_CMDID,
1327 WMI_10_2_VDEV_UP_CMDID,
1328 WMI_10_2_VDEV_STOP_CMDID,
1329 WMI_10_2_VDEV_DOWN_CMDID,
1330 WMI_10_2_VDEV_STANDBY_RESPONSE_CMDID,
1331 WMI_10_2_VDEV_RESUME_RESPONSE_CMDID,
1332 WMI_10_2_VDEV_SET_PARAM_CMDID,
1333 WMI_10_2_VDEV_INSTALL_KEY_CMDID,
1334 WMI_10_2_VDEV_SET_DSCP_TID_MAP_CMDID,
1335 WMI_10_2_PEER_CREATE_CMDID,
1336 WMI_10_2_PEER_DELETE_CMDID,
1337 WMI_10_2_PEER_FLUSH_TIDS_CMDID,
1338 WMI_10_2_PEER_SET_PARAM_CMDID,
1339 WMI_10_2_PEER_ASSOC_CMDID,
1340 WMI_10_2_PEER_ADD_WDS_ENTRY_CMDID,
1341 WMI_10_2_PEER_UPDATE_WDS_ENTRY_CMDID,
1342 WMI_10_2_PEER_REMOVE_WDS_ENTRY_CMDID,
1343 WMI_10_2_PEER_MCAST_GROUP_CMDID,
1344 WMI_10_2_BCN_TX_CMDID,
1345 WMI_10_2_BCN_PRB_TMPL_CMDID,
1346 WMI_10_2_BCN_FILTER_RX_CMDID,
1347 WMI_10_2_PRB_REQ_FILTER_RX_CMDID,
1348 WMI_10_2_MGMT_TX_CMDID,
1349 WMI_10_2_ADDBA_CLEAR_RESP_CMDID,
1350 WMI_10_2_ADDBA_SEND_CMDID,
1351 WMI_10_2_ADDBA_STATUS_CMDID,
1352 WMI_10_2_DELBA_SEND_CMDID,
1353 WMI_10_2_ADDBA_SET_RESP_CMDID,
1354 WMI_10_2_SEND_SINGLEAMSDU_CMDID,
1355 WMI_10_2_STA_POWERSAVE_MODE_CMDID,
1356 WMI_10_2_STA_POWERSAVE_PARAM_CMDID,
1357 WMI_10_2_STA_MIMO_PS_MODE_CMDID,
1358 WMI_10_2_DBGLOG_CFG_CMDID,
1359 WMI_10_2_PDEV_DFS_ENABLE_CMDID,
1360 WMI_10_2_PDEV_DFS_DISABLE_CMDID,
1361 WMI_10_2_PDEV_QVIT_CMDID,
1362 WMI_10_2_ROAM_SCAN_MODE,
1363 WMI_10_2_ROAM_SCAN_RSSI_THRESHOLD,
1364 WMI_10_2_ROAM_SCAN_PERIOD,
1365 WMI_10_2_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1366 WMI_10_2_ROAM_AP_PROFILE,
1367 WMI_10_2_OFL_SCAN_ADD_AP_PROFILE,
1368 WMI_10_2_OFL_SCAN_REMOVE_AP_PROFILE,
1369 WMI_10_2_OFL_SCAN_PERIOD,
1370 WMI_10_2_P2P_DEV_SET_DEVICE_INFO,
1371 WMI_10_2_P2P_DEV_SET_DISCOVERABILITY,
1372 WMI_10_2_P2P_GO_SET_BEACON_IE,
1373 WMI_10_2_P2P_GO_SET_PROBE_RESP_IE,
1374 WMI_10_2_AP_PS_PEER_PARAM_CMDID,
1375 WMI_10_2_AP_PS_PEER_UAPSD_COEX_CMDID,
1376 WMI_10_2_PEER_RATE_RETRY_SCHED_CMDID,
1377 WMI_10_2_WLAN_PROFILE_TRIGGER_CMDID,
1378 WMI_10_2_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1379 WMI_10_2_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1380 WMI_10_2_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1381 WMI_10_2_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1382 WMI_10_2_PDEV_SUSPEND_CMDID,
1383 WMI_10_2_PDEV_RESUME_CMDID,
1384 WMI_10_2_ADD_BCN_FILTER_CMDID,
1385 WMI_10_2_RMV_BCN_FILTER_CMDID,
1386 WMI_10_2_WOW_ADD_WAKE_PATTERN_CMDID,
1387 WMI_10_2_WOW_DEL_WAKE_PATTERN_CMDID,
1388 WMI_10_2_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1389 WMI_10_2_WOW_ENABLE_CMDID,
1390 WMI_10_2_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1391 WMI_10_2_RTT_MEASREQ_CMDID,
1392 WMI_10_2_RTT_TSF_CMDID,
1393 WMI_10_2_RTT_KEEPALIVE_CMDID,
1394 WMI_10_2_PDEV_SEND_BCN_CMDID,
1395 WMI_10_2_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
1396 WMI_10_2_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1397 WMI_10_2_REQUEST_STATS_CMDID,
1398 WMI_10_2_GPIO_CONFIG_CMDID,
1399 WMI_10_2_GPIO_OUTPUT_CMDID,
1400 WMI_10_2_VDEV_RATEMASK_CMDID,
1401 WMI_10_2_PDEV_SMART_ANT_ENABLE_CMDID,
1402 WMI_10_2_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID,
1403 WMI_10_2_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID,
1404 WMI_10_2_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID,
1405 WMI_10_2_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID,
1406 WMI_10_2_FORCE_FW_HANG_CMDID,
1407 WMI_10_2_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID,
1408 WMI_10_2_PDEV_SET_CTL_TABLE_CMDID,
1409 WMI_10_2_PDEV_SET_MIMOGAIN_TABLE_CMDID,
1410 WMI_10_2_PDEV_RATEPWR_TABLE_CMDID,
1411 WMI_10_2_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID,
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +02001412 WMI_10_2_PDEV_GET_INFO,
1413 WMI_10_2_VDEV_GET_INFO,
1414 WMI_10_2_VDEV_ATF_REQUEST_CMDID,
1415 WMI_10_2_PEER_ATF_REQUEST_CMDID,
1416 WMI_10_2_PDEV_GET_TEMPERATURE_CMDID,
Maharaja62f77f02015-10-21 11:49:18 +03001417 WMI_10_2_MU_CAL_START_CMDID,
1418 WMI_10_2_SET_LTEU_CONFIG_CMDID,
1419 WMI_10_2_SET_CCA_PARAMS,
Michal Kazior24c88f72014-07-25 13:32:17 +02001420 WMI_10_2_PDEV_UTF_CMDID = WMI_10_2_END_CMDID - 1,
1421};
1422
1423enum wmi_10_2_event_id {
1424 WMI_10_2_SERVICE_READY_EVENTID = 0x8000,
1425 WMI_10_2_READY_EVENTID,
1426 WMI_10_2_DEBUG_MESG_EVENTID,
1427 WMI_10_2_START_EVENTID = 0x9000,
1428 WMI_10_2_END_EVENTID = 0x9FFF,
1429 WMI_10_2_SCAN_EVENTID = WMI_10_2_START_EVENTID,
1430 WMI_10_2_ECHO_EVENTID,
1431 WMI_10_2_UPDATE_STATS_EVENTID,
1432 WMI_10_2_INST_RSSI_STATS_EVENTID,
1433 WMI_10_2_VDEV_START_RESP_EVENTID,
1434 WMI_10_2_VDEV_STANDBY_REQ_EVENTID,
1435 WMI_10_2_VDEV_RESUME_REQ_EVENTID,
1436 WMI_10_2_VDEV_STOPPED_EVENTID,
1437 WMI_10_2_PEER_STA_KICKOUT_EVENTID,
1438 WMI_10_2_HOST_SWBA_EVENTID,
1439 WMI_10_2_TBTTOFFSET_UPDATE_EVENTID,
1440 WMI_10_2_MGMT_RX_EVENTID,
1441 WMI_10_2_CHAN_INFO_EVENTID,
1442 WMI_10_2_PHYERR_EVENTID,
1443 WMI_10_2_ROAM_EVENTID,
1444 WMI_10_2_PROFILE_MATCH,
1445 WMI_10_2_DEBUG_PRINT_EVENTID,
1446 WMI_10_2_PDEV_QVIT_EVENTID,
1447 WMI_10_2_WLAN_PROFILE_DATA_EVENTID,
1448 WMI_10_2_RTT_MEASUREMENT_REPORT_EVENTID,
1449 WMI_10_2_TSF_MEASUREMENT_REPORT_EVENTID,
1450 WMI_10_2_RTT_ERROR_REPORT_EVENTID,
1451 WMI_10_2_RTT_KEEPALIVE_EVENTID,
1452 WMI_10_2_WOW_WAKEUP_HOST_EVENTID,
1453 WMI_10_2_DCS_INTERFERENCE_EVENTID,
1454 WMI_10_2_PDEV_TPC_CONFIG_EVENTID,
1455 WMI_10_2_GPIO_INPUT_EVENTID,
1456 WMI_10_2_PEER_RATECODE_LIST_EVENTID,
1457 WMI_10_2_GENERIC_BUFFER_EVENTID,
1458 WMI_10_2_MCAST_BUF_RELEASE_EVENTID,
1459 WMI_10_2_MCAST_LIST_AGEOUT_EVENTID,
1460 WMI_10_2_WDS_PEER_EVENTID,
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +02001461 WMI_10_2_PEER_STA_PS_STATECHG_EVENTID,
1462 WMI_10_2_PDEV_TEMPERATURE_EVENTID,
Michal Kazior24c88f72014-07-25 13:32:17 +02001463 WMI_10_2_PDEV_UTF_EVENTID = WMI_10_2_END_EVENTID - 1,
1464};
1465
Raja Mani2d491e62015-06-22 20:10:11 +05301466enum wmi_10_4_cmd_id {
1467 WMI_10_4_START_CMDID = 0x9000,
1468 WMI_10_4_END_CMDID = 0x9FFF,
1469 WMI_10_4_INIT_CMDID,
1470 WMI_10_4_START_SCAN_CMDID = WMI_10_4_START_CMDID,
1471 WMI_10_4_STOP_SCAN_CMDID,
1472 WMI_10_4_SCAN_CHAN_LIST_CMDID,
1473 WMI_10_4_SCAN_SCH_PRIO_TBL_CMDID,
1474 WMI_10_4_SCAN_UPDATE_REQUEST_CMDID,
1475 WMI_10_4_ECHO_CMDID,
1476 WMI_10_4_PDEV_SET_REGDOMAIN_CMDID,
1477 WMI_10_4_PDEV_SET_CHANNEL_CMDID,
1478 WMI_10_4_PDEV_SET_PARAM_CMDID,
1479 WMI_10_4_PDEV_PKTLOG_ENABLE_CMDID,
1480 WMI_10_4_PDEV_PKTLOG_DISABLE_CMDID,
1481 WMI_10_4_PDEV_SET_WMM_PARAMS_CMDID,
1482 WMI_10_4_PDEV_SET_HT_CAP_IE_CMDID,
1483 WMI_10_4_PDEV_SET_VHT_CAP_IE_CMDID,
1484 WMI_10_4_PDEV_SET_BASE_MACADDR_CMDID,
1485 WMI_10_4_PDEV_SET_DSCP_TID_MAP_CMDID,
1486 WMI_10_4_PDEV_SET_QUIET_MODE_CMDID,
1487 WMI_10_4_PDEV_GREEN_AP_PS_ENABLE_CMDID,
1488 WMI_10_4_PDEV_GET_TPC_CONFIG_CMDID,
1489 WMI_10_4_VDEV_CREATE_CMDID,
1490 WMI_10_4_VDEV_DELETE_CMDID,
1491 WMI_10_4_VDEV_START_REQUEST_CMDID,
1492 WMI_10_4_VDEV_RESTART_REQUEST_CMDID,
1493 WMI_10_4_VDEV_UP_CMDID,
1494 WMI_10_4_VDEV_STOP_CMDID,
1495 WMI_10_4_VDEV_DOWN_CMDID,
1496 WMI_10_4_VDEV_STANDBY_RESPONSE_CMDID,
1497 WMI_10_4_VDEV_RESUME_RESPONSE_CMDID,
1498 WMI_10_4_VDEV_SET_PARAM_CMDID,
1499 WMI_10_4_VDEV_INSTALL_KEY_CMDID,
1500 WMI_10_4_WLAN_PEER_CACHING_ADD_PEER_CMDID,
1501 WMI_10_4_WLAN_PEER_CACHING_EVICT_PEER_CMDID,
1502 WMI_10_4_WLAN_PEER_CACHING_RESTORE_PEER_CMDID,
1503 WMI_10_4_WLAN_PEER_CACHING_PRINT_ALL_PEERS_INFO_CMDID,
1504 WMI_10_4_PEER_CREATE_CMDID,
1505 WMI_10_4_PEER_DELETE_CMDID,
1506 WMI_10_4_PEER_FLUSH_TIDS_CMDID,
1507 WMI_10_4_PEER_SET_PARAM_CMDID,
1508 WMI_10_4_PEER_ASSOC_CMDID,
1509 WMI_10_4_PEER_ADD_WDS_ENTRY_CMDID,
1510 WMI_10_4_PEER_UPDATE_WDS_ENTRY_CMDID,
1511 WMI_10_4_PEER_REMOVE_WDS_ENTRY_CMDID,
1512 WMI_10_4_PEER_ADD_PROXY_STA_ENTRY_CMDID,
1513 WMI_10_4_PEER_MCAST_GROUP_CMDID,
1514 WMI_10_4_BCN_TX_CMDID,
1515 WMI_10_4_PDEV_SEND_BCN_CMDID,
1516 WMI_10_4_BCN_PRB_TMPL_CMDID,
1517 WMI_10_4_BCN_FILTER_RX_CMDID,
1518 WMI_10_4_PRB_REQ_FILTER_RX_CMDID,
1519 WMI_10_4_MGMT_TX_CMDID,
1520 WMI_10_4_PRB_TMPL_CMDID,
1521 WMI_10_4_ADDBA_CLEAR_RESP_CMDID,
1522 WMI_10_4_ADDBA_SEND_CMDID,
1523 WMI_10_4_ADDBA_STATUS_CMDID,
1524 WMI_10_4_DELBA_SEND_CMDID,
1525 WMI_10_4_ADDBA_SET_RESP_CMDID,
1526 WMI_10_4_SEND_SINGLEAMSDU_CMDID,
1527 WMI_10_4_STA_POWERSAVE_MODE_CMDID,
1528 WMI_10_4_STA_POWERSAVE_PARAM_CMDID,
1529 WMI_10_4_STA_MIMO_PS_MODE_CMDID,
1530 WMI_10_4_DBGLOG_CFG_CMDID,
1531 WMI_10_4_PDEV_DFS_ENABLE_CMDID,
1532 WMI_10_4_PDEV_DFS_DISABLE_CMDID,
1533 WMI_10_4_PDEV_QVIT_CMDID,
1534 WMI_10_4_ROAM_SCAN_MODE,
1535 WMI_10_4_ROAM_SCAN_RSSI_THRESHOLD,
1536 WMI_10_4_ROAM_SCAN_PERIOD,
1537 WMI_10_4_ROAM_SCAN_RSSI_CHANGE_THRESHOLD,
1538 WMI_10_4_ROAM_AP_PROFILE,
1539 WMI_10_4_OFL_SCAN_ADD_AP_PROFILE,
1540 WMI_10_4_OFL_SCAN_REMOVE_AP_PROFILE,
1541 WMI_10_4_OFL_SCAN_PERIOD,
1542 WMI_10_4_P2P_DEV_SET_DEVICE_INFO,
1543 WMI_10_4_P2P_DEV_SET_DISCOVERABILITY,
1544 WMI_10_4_P2P_GO_SET_BEACON_IE,
1545 WMI_10_4_P2P_GO_SET_PROBE_RESP_IE,
1546 WMI_10_4_P2P_SET_VENDOR_IE_DATA_CMDID,
1547 WMI_10_4_AP_PS_PEER_PARAM_CMDID,
1548 WMI_10_4_AP_PS_PEER_UAPSD_COEX_CMDID,
1549 WMI_10_4_PEER_RATE_RETRY_SCHED_CMDID,
1550 WMI_10_4_WLAN_PROFILE_TRIGGER_CMDID,
1551 WMI_10_4_WLAN_PROFILE_SET_HIST_INTVL_CMDID,
1552 WMI_10_4_WLAN_PROFILE_GET_PROFILE_DATA_CMDID,
1553 WMI_10_4_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID,
1554 WMI_10_4_WLAN_PROFILE_LIST_PROFILE_ID_CMDID,
1555 WMI_10_4_PDEV_SUSPEND_CMDID,
1556 WMI_10_4_PDEV_RESUME_CMDID,
1557 WMI_10_4_ADD_BCN_FILTER_CMDID,
1558 WMI_10_4_RMV_BCN_FILTER_CMDID,
1559 WMI_10_4_WOW_ADD_WAKE_PATTERN_CMDID,
1560 WMI_10_4_WOW_DEL_WAKE_PATTERN_CMDID,
1561 WMI_10_4_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID,
1562 WMI_10_4_WOW_ENABLE_CMDID,
1563 WMI_10_4_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID,
1564 WMI_10_4_RTT_MEASREQ_CMDID,
1565 WMI_10_4_RTT_TSF_CMDID,
1566 WMI_10_4_RTT_KEEPALIVE_CMDID,
1567 WMI_10_4_OEM_REQ_CMDID,
1568 WMI_10_4_NAN_CMDID,
1569 WMI_10_4_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID,
1570 WMI_10_4_VDEV_SPECTRAL_SCAN_ENABLE_CMDID,
1571 WMI_10_4_REQUEST_STATS_CMDID,
1572 WMI_10_4_GPIO_CONFIG_CMDID,
1573 WMI_10_4_GPIO_OUTPUT_CMDID,
1574 WMI_10_4_VDEV_RATEMASK_CMDID,
1575 WMI_10_4_CSA_OFFLOAD_ENABLE_CMDID,
1576 WMI_10_4_GTK_OFFLOAD_CMDID,
1577 WMI_10_4_QBOOST_CFG_CMDID,
1578 WMI_10_4_CSA_OFFLOAD_CHANSWITCH_CMDID,
1579 WMI_10_4_PDEV_SMART_ANT_ENABLE_CMDID,
1580 WMI_10_4_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID,
1581 WMI_10_4_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID,
1582 WMI_10_4_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID,
1583 WMI_10_4_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID,
1584 WMI_10_4_VDEV_SET_KEEPALIVE_CMDID,
1585 WMI_10_4_VDEV_GET_KEEPALIVE_CMDID,
1586 WMI_10_4_FORCE_FW_HANG_CMDID,
1587 WMI_10_4_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID,
1588 WMI_10_4_PDEV_SET_CTL_TABLE_CMDID,
1589 WMI_10_4_PDEV_SET_MIMOGAIN_TABLE_CMDID,
1590 WMI_10_4_PDEV_RATEPWR_TABLE_CMDID,
1591 WMI_10_4_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID,
1592 WMI_10_4_PDEV_FIPS_CMDID,
1593 WMI_10_4_TT_SET_CONF_CMDID,
1594 WMI_10_4_FWTEST_CMDID,
1595 WMI_10_4_VDEV_ATF_REQUEST_CMDID,
1596 WMI_10_4_PEER_ATF_REQUEST_CMDID,
1597 WMI_10_4_PDEV_GET_ANI_CCK_CONFIG_CMDID,
1598 WMI_10_4_PDEV_GET_ANI_OFDM_CONFIG_CMDID,
1599 WMI_10_4_PDEV_RESERVE_AST_ENTRY_CMDID,
1600 WMI_10_4_PDEV_GET_NFCAL_POWER_CMDID,
1601 WMI_10_4_PDEV_GET_TPC_CMDID,
1602 WMI_10_4_PDEV_GET_AST_INFO_CMDID,
1603 WMI_10_4_VDEV_SET_DSCP_TID_MAP_CMDID,
1604 WMI_10_4_PDEV_GET_TEMPERATURE_CMDID,
1605 WMI_10_4_PDEV_GET_INFO_CMDID,
1606 WMI_10_4_VDEV_GET_INFO_CMDID,
1607 WMI_10_4_VDEV_FILTER_NEIGHBOR_RX_PACKETS_CMDID,
1608 WMI_10_4_MU_CAL_START_CMDID,
1609 WMI_10_4_SET_CCA_PARAMS_CMDID,
1610 WMI_10_4_PDEV_BSS_CHAN_INFO_REQUEST_CMDID,
Vasanthakumar Thiagarajan69d43152015-10-29 19:11:33 +05301611 WMI_10_4_EXT_RESOURCE_CFG_CMDID,
1612 WMI_10_4_VDEV_SET_IE_CMDID,
1613 WMI_10_4_SET_LTEU_CONFIG_CMDID,
Raja Mani2d491e62015-06-22 20:10:11 +05301614 WMI_10_4_PDEV_UTF_CMDID = WMI_10_4_END_CMDID - 1,
1615};
1616
1617enum wmi_10_4_event_id {
1618 WMI_10_4_SERVICE_READY_EVENTID = 0x8000,
1619 WMI_10_4_READY_EVENTID,
1620 WMI_10_4_DEBUG_MESG_EVENTID,
1621 WMI_10_4_START_EVENTID = 0x9000,
1622 WMI_10_4_END_EVENTID = 0x9FFF,
1623 WMI_10_4_SCAN_EVENTID = WMI_10_4_START_EVENTID,
1624 WMI_10_4_ECHO_EVENTID,
1625 WMI_10_4_UPDATE_STATS_EVENTID,
1626 WMI_10_4_INST_RSSI_STATS_EVENTID,
1627 WMI_10_4_VDEV_START_RESP_EVENTID,
1628 WMI_10_4_VDEV_STANDBY_REQ_EVENTID,
1629 WMI_10_4_VDEV_RESUME_REQ_EVENTID,
1630 WMI_10_4_VDEV_STOPPED_EVENTID,
1631 WMI_10_4_PEER_STA_KICKOUT_EVENTID,
1632 WMI_10_4_HOST_SWBA_EVENTID,
1633 WMI_10_4_TBTTOFFSET_UPDATE_EVENTID,
1634 WMI_10_4_MGMT_RX_EVENTID,
1635 WMI_10_4_CHAN_INFO_EVENTID,
1636 WMI_10_4_PHYERR_EVENTID,
1637 WMI_10_4_ROAM_EVENTID,
1638 WMI_10_4_PROFILE_MATCH,
1639 WMI_10_4_DEBUG_PRINT_EVENTID,
1640 WMI_10_4_PDEV_QVIT_EVENTID,
1641 WMI_10_4_WLAN_PROFILE_DATA_EVENTID,
1642 WMI_10_4_RTT_MEASUREMENT_REPORT_EVENTID,
1643 WMI_10_4_TSF_MEASUREMENT_REPORT_EVENTID,
1644 WMI_10_4_RTT_ERROR_REPORT_EVENTID,
1645 WMI_10_4_RTT_KEEPALIVE_EVENTID,
1646 WMI_10_4_OEM_CAPABILITY_EVENTID,
1647 WMI_10_4_OEM_MEASUREMENT_REPORT_EVENTID,
1648 WMI_10_4_OEM_ERROR_REPORT_EVENTID,
1649 WMI_10_4_NAN_EVENTID,
1650 WMI_10_4_WOW_WAKEUP_HOST_EVENTID,
1651 WMI_10_4_GTK_OFFLOAD_STATUS_EVENTID,
1652 WMI_10_4_GTK_REKEY_FAIL_EVENTID,
1653 WMI_10_4_DCS_INTERFERENCE_EVENTID,
1654 WMI_10_4_PDEV_TPC_CONFIG_EVENTID,
1655 WMI_10_4_CSA_HANDLING_EVENTID,
1656 WMI_10_4_GPIO_INPUT_EVENTID,
1657 WMI_10_4_PEER_RATECODE_LIST_EVENTID,
1658 WMI_10_4_GENERIC_BUFFER_EVENTID,
1659 WMI_10_4_MCAST_BUF_RELEASE_EVENTID,
1660 WMI_10_4_MCAST_LIST_AGEOUT_EVENTID,
1661 WMI_10_4_VDEV_GET_KEEPALIVE_EVENTID,
1662 WMI_10_4_WDS_PEER_EVENTID,
1663 WMI_10_4_PEER_STA_PS_STATECHG_EVENTID,
1664 WMI_10_4_PDEV_FIPS_EVENTID,
1665 WMI_10_4_TT_STATS_EVENTID,
1666 WMI_10_4_PDEV_CHANNEL_HOPPING_EVENTID,
1667 WMI_10_4_PDEV_ANI_CCK_LEVEL_EVENTID,
1668 WMI_10_4_PDEV_ANI_OFDM_LEVEL_EVENTID,
1669 WMI_10_4_PDEV_RESERVE_AST_ENTRY_EVENTID,
1670 WMI_10_4_PDEV_NFCAL_POWER_EVENTID,
1671 WMI_10_4_PDEV_TPC_EVENTID,
1672 WMI_10_4_PDEV_GET_AST_INFO_EVENTID,
1673 WMI_10_4_PDEV_TEMPERATURE_EVENTID,
1674 WMI_10_4_PDEV_NFCAL_POWER_ALL_CHANNELS_EVENTID,
1675 WMI_10_4_PDEV_BSS_CHAN_INFO_EVENTID,
Vasanthakumar Thiagarajan69d43152015-10-29 19:11:33 +05301676 WMI_10_4_MU_REPORT_EVENTID,
Raja Mani2d491e62015-06-22 20:10:11 +05301677 WMI_10_4_PDEV_UTF_EVENTID = WMI_10_4_END_EVENTID - 1,
1678};
1679
Kalle Valo5e3dd152013-06-12 20:52:10 +03001680enum wmi_phy_mode {
1681 MODE_11A = 0, /* 11a Mode */
1682 MODE_11G = 1, /* 11b/g Mode */
1683 MODE_11B = 2, /* 11b Mode */
1684 MODE_11GONLY = 3, /* 11g only Mode */
1685 MODE_11NA_HT20 = 4, /* 11a HT20 mode */
1686 MODE_11NG_HT20 = 5, /* 11g HT20 mode */
1687 MODE_11NA_HT40 = 6, /* 11a HT40 mode */
1688 MODE_11NG_HT40 = 7, /* 11g HT40 mode */
1689 MODE_11AC_VHT20 = 8,
1690 MODE_11AC_VHT40 = 9,
1691 MODE_11AC_VHT80 = 10,
1692 /* MODE_11AC_VHT160 = 11, */
1693 MODE_11AC_VHT20_2G = 11,
1694 MODE_11AC_VHT40_2G = 12,
1695 MODE_11AC_VHT80_2G = 13,
1696 MODE_UNKNOWN = 14,
1697 MODE_MAX = 14
1698};
1699
Kalle Valo38a1d472013-09-08 17:56:14 +03001700static inline const char *ath10k_wmi_phymode_str(enum wmi_phy_mode mode)
1701{
1702 switch (mode) {
1703 case MODE_11A:
1704 return "11a";
1705 case MODE_11G:
1706 return "11g";
1707 case MODE_11B:
1708 return "11b";
1709 case MODE_11GONLY:
1710 return "11gonly";
1711 case MODE_11NA_HT20:
1712 return "11na-ht20";
1713 case MODE_11NG_HT20:
1714 return "11ng-ht20";
1715 case MODE_11NA_HT40:
1716 return "11na-ht40";
1717 case MODE_11NG_HT40:
1718 return "11ng-ht40";
1719 case MODE_11AC_VHT20:
1720 return "11ac-vht20";
1721 case MODE_11AC_VHT40:
1722 return "11ac-vht40";
1723 case MODE_11AC_VHT80:
1724 return "11ac-vht80";
1725 case MODE_11AC_VHT20_2G:
1726 return "11ac-vht20-2g";
1727 case MODE_11AC_VHT40_2G:
1728 return "11ac-vht40-2g";
1729 case MODE_11AC_VHT80_2G:
1730 return "11ac-vht80-2g";
1731 case MODE_UNKNOWN:
1732 /* skip */
1733 break;
1734
1735 /* no default handler to allow compiler to check that the
1736 * enum is fully handled */
1737 };
1738
1739 return "<unknown>";
1740}
1741
Kalle Valo5e3dd152013-06-12 20:52:10 +03001742#define WMI_CHAN_LIST_TAG 0x1
1743#define WMI_SSID_LIST_TAG 0x2
1744#define WMI_BSSID_LIST_TAG 0x3
1745#define WMI_IE_TAG 0x4
1746
1747struct wmi_channel {
1748 __le32 mhz;
1749 __le32 band_center_freq1;
1750 __le32 band_center_freq2; /* valid for 11ac, 80plus80 */
1751 union {
1752 __le32 flags; /* WMI_CHAN_FLAG_ */
1753 struct {
1754 u8 mode; /* only 6 LSBs */
1755 } __packed;
1756 } __packed;
1757 union {
1758 __le32 reginfo0;
1759 struct {
Michal Kazior02256932013-10-23 04:02:14 -07001760 /* note: power unit is 0.5 dBm */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001761 u8 min_power;
1762 u8 max_power;
1763 u8 reg_power;
1764 u8 reg_classid;
1765 } __packed;
1766 } __packed;
1767 union {
1768 __le32 reginfo1;
1769 struct {
1770 u8 antenna_max;
1771 } __packed;
1772 } __packed;
1773} __packed;
1774
1775struct wmi_channel_arg {
1776 u32 freq;
1777 u32 band_center_freq1;
1778 bool passive;
1779 bool allow_ibss;
1780 bool allow_ht;
1781 bool allow_vht;
1782 bool ht40plus;
Marek Puzyniake8a50f82013-11-20 09:59:47 +02001783 bool chan_radar;
Michal Kazior02256932013-10-23 04:02:14 -07001784 /* note: power unit is 0.5 dBm */
Kalle Valo5e3dd152013-06-12 20:52:10 +03001785 u32 min_power;
1786 u32 max_power;
1787 u32 max_reg_power;
1788 u32 max_antenna_gain;
1789 u32 reg_class_id;
1790 enum wmi_phy_mode mode;
1791};
1792
1793enum wmi_channel_change_cause {
1794 WMI_CHANNEL_CHANGE_CAUSE_NONE = 0,
1795 WMI_CHANNEL_CHANGE_CAUSE_CSA,
1796};
1797
1798#define WMI_CHAN_FLAG_HT40_PLUS (1 << 6)
1799#define WMI_CHAN_FLAG_PASSIVE (1 << 7)
1800#define WMI_CHAN_FLAG_ADHOC_ALLOWED (1 << 8)
1801#define WMI_CHAN_FLAG_AP_DISABLED (1 << 9)
1802#define WMI_CHAN_FLAG_DFS (1 << 10)
1803#define WMI_CHAN_FLAG_ALLOW_HT (1 << 11)
1804#define WMI_CHAN_FLAG_ALLOW_VHT (1 << 12)
1805
1806/* Indicate reason for channel switch */
1807#define WMI_CHANNEL_CHANGE_CAUSE_CSA (1 << 13)
1808
Raja Mani5c8726e2015-06-22 20:22:26 +05301809#define WMI_MAX_SPATIAL_STREAM 3 /* default max ss */
1810#define WMI_10_4_MAX_SPATIAL_STREAM 4
Kalle Valo5e3dd152013-06-12 20:52:10 +03001811
1812/* HT Capabilities*/
1813#define WMI_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */
1814#define WMI_HT_CAP_HT20_SGI 0x0002 /* Short Guard Interval with HT20 */
1815#define WMI_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */
1816#define WMI_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */
1817#define WMI_HT_CAP_TX_STBC_MASK_SHIFT 3
1818#define WMI_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */
1819#define WMI_HT_CAP_RX_STBC_MASK_SHIFT 4
1820#define WMI_HT_CAP_LDPC 0x0040 /* LDPC supported */
1821#define WMI_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */
1822#define WMI_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */
1823#define WMI_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8
1824#define WMI_HT_CAP_HT40_SGI 0x0800
1825
1826#define WMI_HT_CAP_DEFAULT_ALL (WMI_HT_CAP_ENABLED | \
1827 WMI_HT_CAP_HT20_SGI | \
1828 WMI_HT_CAP_HT40_SGI | \
1829 WMI_HT_CAP_TX_STBC | \
1830 WMI_HT_CAP_RX_STBC | \
1831 WMI_HT_CAP_LDPC)
1832
Kalle Valo5e3dd152013-06-12 20:52:10 +03001833/*
1834 * WMI_VHT_CAP_* these maps to ieee 802.11ac vht capability information
1835 * field. The fields not defined here are not supported, or reserved.
1836 * Do not change these masks and if you have to add new one follow the
1837 * bitmask as specified by 802.11ac draft.
1838 */
1839
1840#define WMI_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003
1841#define WMI_VHT_CAP_RX_LDPC 0x00000010
1842#define WMI_VHT_CAP_SGI_80MHZ 0x00000020
1843#define WMI_VHT_CAP_TX_STBC 0x00000080
1844#define WMI_VHT_CAP_RX_STBC_MASK 0x00000300
1845#define WMI_VHT_CAP_RX_STBC_MASK_SHIFT 8
1846#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000
1847#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIFT 23
1848#define WMI_VHT_CAP_RX_FIXED_ANT 0x10000000
1849#define WMI_VHT_CAP_TX_FIXED_ANT 0x20000000
1850
1851/* The following also refer for max HT AMSDU */
1852#define WMI_VHT_CAP_MAX_MPDU_LEN_3839 0x00000000
1853#define WMI_VHT_CAP_MAX_MPDU_LEN_7935 0x00000001
1854#define WMI_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002
1855
1856#define WMI_VHT_CAP_DEFAULT_ALL (WMI_VHT_CAP_MAX_MPDU_LEN_11454 | \
1857 WMI_VHT_CAP_RX_LDPC | \
1858 WMI_VHT_CAP_SGI_80MHZ | \
1859 WMI_VHT_CAP_TX_STBC | \
1860 WMI_VHT_CAP_RX_STBC_MASK | \
1861 WMI_VHT_CAP_MAX_AMPDU_LEN_EXP | \
1862 WMI_VHT_CAP_RX_FIXED_ANT | \
1863 WMI_VHT_CAP_TX_FIXED_ANT)
1864
1865/*
1866 * Interested readers refer to Rx/Tx MCS Map definition as defined in
1867 * 802.11ac
1868 */
1869#define WMI_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1))
1870#define WMI_VHT_MAX_SUPP_RATE_MASK 0x1fff0000
1871#define WMI_VHT_MAX_SUPP_RATE_MASK_SHIFT 16
1872
1873enum {
1874 REGDMN_MODE_11A = 0x00001, /* 11a channels */
1875 REGDMN_MODE_TURBO = 0x00002, /* 11a turbo-only channels */
1876 REGDMN_MODE_11B = 0x00004, /* 11b channels */
1877 REGDMN_MODE_PUREG = 0x00008, /* 11g channels (OFDM only) */
1878 REGDMN_MODE_11G = 0x00008, /* XXX historical */
1879 REGDMN_MODE_108G = 0x00020, /* 11a+Turbo channels */
1880 REGDMN_MODE_108A = 0x00040, /* 11g+Turbo channels */
1881 REGDMN_MODE_XR = 0x00100, /* XR channels */
1882 REGDMN_MODE_11A_HALF_RATE = 0x00200, /* 11A half rate channels */
1883 REGDMN_MODE_11A_QUARTER_RATE = 0x00400, /* 11A quarter rate channels */
1884 REGDMN_MODE_11NG_HT20 = 0x00800, /* 11N-G HT20 channels */
1885 REGDMN_MODE_11NA_HT20 = 0x01000, /* 11N-A HT20 channels */
1886 REGDMN_MODE_11NG_HT40PLUS = 0x02000, /* 11N-G HT40 + channels */
1887 REGDMN_MODE_11NG_HT40MINUS = 0x04000, /* 11N-G HT40 - channels */
1888 REGDMN_MODE_11NA_HT40PLUS = 0x08000, /* 11N-A HT40 + channels */
1889 REGDMN_MODE_11NA_HT40MINUS = 0x10000, /* 11N-A HT40 - channels */
1890 REGDMN_MODE_11AC_VHT20 = 0x20000, /* 5Ghz, VHT20 */
1891 REGDMN_MODE_11AC_VHT40PLUS = 0x40000, /* 5Ghz, VHT40 + channels */
1892 REGDMN_MODE_11AC_VHT40MINUS = 0x80000, /* 5Ghz VHT40 - channels */
1893 REGDMN_MODE_11AC_VHT80 = 0x100000, /* 5Ghz, VHT80 channels */
1894 REGDMN_MODE_ALL = 0xffffffff
1895};
1896
1897#define REGDMN_CAP1_CHAN_HALF_RATE 0x00000001
1898#define REGDMN_CAP1_CHAN_QUARTER_RATE 0x00000002
1899#define REGDMN_CAP1_CHAN_HAL49GHZ 0x00000004
1900
1901/* regulatory capabilities */
1902#define REGDMN_EEPROM_EEREGCAP_EN_FCC_MIDBAND 0x0040
1903#define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_EVEN 0x0080
1904#define REGDMN_EEPROM_EEREGCAP_EN_KK_U2 0x0100
1905#define REGDMN_EEPROM_EEREGCAP_EN_KK_MIDBAND 0x0200
1906#define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_ODD 0x0400
1907#define REGDMN_EEPROM_EEREGCAP_EN_KK_NEW_11A 0x0800
1908
1909struct hal_reg_capabilities {
1910 /* regdomain value specified in EEPROM */
1911 __le32 eeprom_rd;
1912 /*regdomain */
1913 __le32 eeprom_rd_ext;
1914 /* CAP1 capabilities bit map. */
1915 __le32 regcap1;
1916 /* REGDMN EEPROM CAP. */
1917 __le32 regcap2;
1918 /* REGDMN MODE */
1919 __le32 wireless_modes;
1920 __le32 low_2ghz_chan;
1921 __le32 high_2ghz_chan;
1922 __le32 low_5ghz_chan;
1923 __le32 high_5ghz_chan;
1924} __packed;
1925
1926enum wlan_mode_capability {
1927 WHAL_WLAN_11A_CAPABILITY = 0x1,
1928 WHAL_WLAN_11G_CAPABILITY = 0x2,
1929 WHAL_WLAN_11AG_CAPABILITY = 0x3,
1930};
1931
1932/* structure used by FW for requesting host memory */
1933struct wlan_host_mem_req {
1934 /* ID of the request */
1935 __le32 req_id;
1936 /* size of the of each unit */
1937 __le32 unit_size;
1938 /* flags to indicate that
1939 * the number units is dependent
1940 * on number of resources(num vdevs num peers .. etc)
1941 */
1942 __le32 num_unit_info;
1943 /*
1944 * actual number of units to allocate . if flags in the num_unit_info
1945 * indicate that number of units is tied to number of a particular
1946 * resource to allocate then num_units filed is set to 0 and host
1947 * will derive the number units from number of the resources it is
1948 * requesting.
1949 */
1950 __le32 num_units;
1951} __packed;
1952
Kalle Valo5e3dd152013-06-12 20:52:10 +03001953/*
1954 * The following struct holds optional payload for
1955 * wmi_service_ready_event,e.g., 11ac pass some of the
1956 * device capability to the host.
1957 */
1958struct wmi_service_ready_event {
1959 __le32 sw_version;
1960 __le32 sw_version_1;
1961 __le32 abi_version;
1962 /* WMI_PHY_CAPABILITY */
1963 __le32 phy_capability;
1964 /* Maximum number of frag table entries that SW will populate less 1 */
1965 __le32 max_frag_entry;
Michal Kaziorc4f8c832014-09-04 10:18:32 +02001966 __le32 wmi_service_bitmap[16];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001967 __le32 num_rf_chains;
1968 /*
1969 * The following field is only valid for service type
1970 * WMI_SERVICE_11AC
1971 */
1972 __le32 ht_cap_info; /* WMI HT Capability */
1973 __le32 vht_cap_info; /* VHT capability info field of 802.11ac */
1974 __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */
1975 __le32 hw_min_tx_power;
1976 __le32 hw_max_tx_power;
1977 struct hal_reg_capabilities hal_reg_capabilities;
1978 __le32 sys_cap_info;
1979 __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */
1980 /*
1981 * Max beacon and Probe Response IE offload size
1982 * (includes optional P2P IEs)
1983 */
1984 __le32 max_bcn_ie_size;
1985 /*
1986 * request to host to allocate a chuck of memory and pss it down to FW
1987 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
1988 * data structures. Only valid for low latency interfaces like PCIE
1989 * where FW can access this memory directly (or) by DMA.
1990 */
1991 __le32 num_mem_reqs;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02001992 struct wlan_host_mem_req mem_reqs[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03001993} __packed;
1994
Bartosz Markowski6f97d252013-09-26 17:47:09 +02001995/* This is the definition from 10.X firmware branch */
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02001996struct wmi_10x_service_ready_event {
Bartosz Markowski6f97d252013-09-26 17:47:09 +02001997 __le32 sw_version;
1998 __le32 abi_version;
1999
2000 /* WMI_PHY_CAPABILITY */
2001 __le32 phy_capability;
2002
2003 /* Maximum number of frag table entries that SW will populate less 1 */
2004 __le32 max_frag_entry;
Michal Kaziorc4f8c832014-09-04 10:18:32 +02002005 __le32 wmi_service_bitmap[16];
Bartosz Markowski6f97d252013-09-26 17:47:09 +02002006 __le32 num_rf_chains;
2007
2008 /*
2009 * The following field is only valid for service type
2010 * WMI_SERVICE_11AC
2011 */
2012 __le32 ht_cap_info; /* WMI HT Capability */
2013 __le32 vht_cap_info; /* VHT capability info field of 802.11ac */
2014 __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */
2015 __le32 hw_min_tx_power;
2016 __le32 hw_max_tx_power;
2017
2018 struct hal_reg_capabilities hal_reg_capabilities;
2019
2020 __le32 sys_cap_info;
2021 __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */
2022
2023 /*
2024 * request to host to allocate a chuck of memory and pss it down to FW
2025 * via WM_INIT. FW uses this as FW extesnsion memory for saving its
2026 * data structures. Only valid for low latency interfaces like PCIE
2027 * where FW can access this memory directly (or) by DMA.
2028 */
2029 __le32 num_mem_reqs;
2030
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02002031 struct wlan_host_mem_req mem_reqs[0];
Bartosz Markowski6f97d252013-09-26 17:47:09 +02002032} __packed;
2033
Kalle Valo5e3dd152013-06-12 20:52:10 +03002034#define WMI_SERVICE_READY_TIMEOUT_HZ (5*HZ)
2035#define WMI_UNIFIED_READY_TIMEOUT_HZ (5*HZ)
2036
2037struct wmi_ready_event {
2038 __le32 sw_version;
2039 __le32 abi_version;
2040 struct wmi_mac_addr mac_addr;
2041 __le32 status;
2042} __packed;
2043
2044struct wmi_resource_config {
2045 /* number of virtual devices (VAPs) to support */
2046 __le32 num_vdevs;
2047
2048 /* number of peer nodes to support */
2049 __le32 num_peers;
2050
2051 /*
2052 * In offload mode target supports features like WOW, chatter and
2053 * other protocol offloads. In order to support them some
2054 * functionalities like reorder buffering, PN checking need to be
2055 * done in target. This determines maximum number of peers suported
2056 * by target in offload mode
2057 */
2058 __le32 num_offload_peers;
2059
2060 /* For target-based RX reordering */
2061 __le32 num_offload_reorder_bufs;
2062
2063 /* number of keys per peer */
2064 __le32 num_peer_keys;
2065
2066 /* total number of TX/RX data TIDs */
2067 __le32 num_tids;
2068
2069 /*
2070 * max skid for resolving hash collisions
2071 *
2072 * The address search table is sparse, so that if two MAC addresses
2073 * result in the same hash value, the second of these conflicting
2074 * entries can slide to the next index in the address search table,
2075 * and use it, if it is unoccupied. This ast_skid_limit parameter
2076 * specifies the upper bound on how many subsequent indices to search
2077 * over to find an unoccupied space.
2078 */
2079 __le32 ast_skid_limit;
2080
2081 /*
2082 * the nominal chain mask for transmit
2083 *
2084 * The chain mask may be modified dynamically, e.g. to operate AP
2085 * tx with a reduced number of chains if no clients are associated.
2086 * This configuration parameter specifies the nominal chain-mask that
2087 * should be used when not operating with a reduced set of tx chains.
2088 */
2089 __le32 tx_chain_mask;
2090
2091 /*
2092 * the nominal chain mask for receive
2093 *
2094 * The chain mask may be modified dynamically, e.g. for a client
2095 * to use a reduced number of chains for receive if the traffic to
2096 * the client is low enough that it doesn't require downlink MIMO
2097 * or antenna diversity.
2098 * This configuration parameter specifies the nominal chain-mask that
2099 * should be used when not operating with a reduced set of rx chains.
2100 */
2101 __le32 rx_chain_mask;
2102
2103 /*
2104 * what rx reorder timeout (ms) to use for the AC
2105 *
2106 * Each WMM access class (voice, video, best-effort, background) will
2107 * have its own timeout value to dictate how long to wait for missing
2108 * rx MPDUs to arrive before flushing subsequent MPDUs that have
2109 * already been received.
2110 * This parameter specifies the timeout in milliseconds for each
2111 * class.
2112 */
2113 __le32 rx_timeout_pri_vi;
2114 __le32 rx_timeout_pri_vo;
2115 __le32 rx_timeout_pri_be;
2116 __le32 rx_timeout_pri_bk;
2117
2118 /*
2119 * what mode the rx should decap packets to
2120 *
2121 * MAC can decap to RAW (no decap), native wifi or Ethernet types
2122 * THis setting also determines the default TX behavior, however TX
2123 * behavior can be modified on a per VAP basis during VAP init
2124 */
2125 __le32 rx_decap_mode;
2126
Geert Uytterhoeven8e4a4f52014-03-11 11:23:45 +01002127 /* what is the maximum number of scan requests that can be queued */
Kalle Valo5e3dd152013-06-12 20:52:10 +03002128 __le32 scan_max_pending_reqs;
2129
2130 /* maximum VDEV that could use BMISS offload */
2131 __le32 bmiss_offload_max_vdev;
2132
2133 /* maximum VDEV that could use offload roaming */
2134 __le32 roam_offload_max_vdev;
2135
2136 /* maximum AP profiles that would push to offload roaming */
2137 __le32 roam_offload_max_ap_profiles;
2138
2139 /*
2140 * how many groups to use for mcast->ucast conversion
2141 *
2142 * The target's WAL maintains a table to hold information regarding
2143 * which peers belong to a given multicast group, so that if
2144 * multicast->unicast conversion is enabled, the target can convert
2145 * multicast tx frames to a series of unicast tx frames, to each
2146 * peer within the multicast group.
2147 This num_mcast_groups configuration parameter tells the target how
2148 * many multicast groups to provide storage for within its multicast
2149 * group membership table.
2150 */
2151 __le32 num_mcast_groups;
2152
2153 /*
2154 * size to alloc for the mcast membership table
2155 *
2156 * This num_mcast_table_elems configuration parameter tells the
2157 * target how many peer elements it needs to provide storage for in
2158 * its multicast group membership table.
2159 * These multicast group membership table elements are shared by the
2160 * multicast groups stored within the table.
2161 */
2162 __le32 num_mcast_table_elems;
2163
2164 /*
2165 * whether/how to do multicast->unicast conversion
2166 *
2167 * This configuration parameter specifies whether the target should
2168 * perform multicast --> unicast conversion on transmit, and if so,
2169 * what to do if it finds no entries in its multicast group
2170 * membership table for the multicast IP address in the tx frame.
2171 * Configuration value:
2172 * 0 -> Do not perform multicast to unicast conversion.
2173 * 1 -> Convert multicast frames to unicast, if the IP multicast
2174 * address from the tx frame is found in the multicast group
2175 * membership table. If the IP multicast address is not found,
2176 * drop the frame.
2177 * 2 -> Convert multicast frames to unicast, if the IP multicast
2178 * address from the tx frame is found in the multicast group
2179 * membership table. If the IP multicast address is not found,
2180 * transmit the frame as multicast.
2181 */
2182 __le32 mcast2ucast_mode;
2183
2184 /*
2185 * how much memory to allocate for a tx PPDU dbg log
2186 *
2187 * This parameter controls how much memory the target will allocate
2188 * to store a log of tx PPDU meta-information (how large the PPDU
2189 * was, when it was sent, whether it was successful, etc.)
2190 */
2191 __le32 tx_dbg_log_size;
2192
2193 /* how many AST entries to be allocated for WDS */
2194 __le32 num_wds_entries;
2195
2196 /*
2197 * MAC DMA burst size, e.g., For target PCI limit can be
2198 * 0 -default, 1 256B
2199 */
2200 __le32 dma_burst_size;
2201
2202 /*
2203 * Fixed delimiters to be inserted after every MPDU to
2204 * account for interface latency to avoid underrun.
2205 */
2206 __le32 mac_aggr_delim;
2207
2208 /*
2209 * determine whether target is responsible for detecting duplicate
2210 * non-aggregate MPDU and timing out stale fragments.
2211 *
2212 * A-MPDU reordering is always performed on the target.
2213 *
2214 * 0: target responsible for frag timeout and dup checking
2215 * 1: host responsible for frag timeout and dup checking
2216 */
2217 __le32 rx_skip_defrag_timeout_dup_detection_check;
2218
2219 /*
2220 * Configuration for VoW :
2221 * No of Video Nodes to be supported
2222 * and Max no of descriptors for each Video link (node).
2223 */
2224 __le32 vow_config;
2225
2226 /* maximum VDEV that could use GTK offload */
2227 __le32 gtk_offload_max_vdev;
2228
2229 /* Number of msdu descriptors target should use */
2230 __le32 num_msdu_desc;
2231
2232 /*
2233 * Max. number of Tx fragments per MSDU
2234 * This parameter controls the max number of Tx fragments per MSDU.
2235 * This is sent by the target as part of the WMI_SERVICE_READY event
2236 * and is overriden by the OS shim as required.
2237 */
2238 __le32 max_frag_entries;
2239} __packed;
2240
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002241struct wmi_resource_config_10x {
2242 /* number of virtual devices (VAPs) to support */
2243 __le32 num_vdevs;
2244
2245 /* number of peer nodes to support */
2246 __le32 num_peers;
2247
2248 /* number of keys per peer */
2249 __le32 num_peer_keys;
2250
2251 /* total number of TX/RX data TIDs */
2252 __le32 num_tids;
2253
2254 /*
2255 * max skid for resolving hash collisions
2256 *
2257 * The address search table is sparse, so that if two MAC addresses
2258 * result in the same hash value, the second of these conflicting
2259 * entries can slide to the next index in the address search table,
2260 * and use it, if it is unoccupied. This ast_skid_limit parameter
2261 * specifies the upper bound on how many subsequent indices to search
2262 * over to find an unoccupied space.
2263 */
2264 __le32 ast_skid_limit;
2265
2266 /*
2267 * the nominal chain mask for transmit
2268 *
2269 * The chain mask may be modified dynamically, e.g. to operate AP
2270 * tx with a reduced number of chains if no clients are associated.
2271 * This configuration parameter specifies the nominal chain-mask that
2272 * should be used when not operating with a reduced set of tx chains.
2273 */
2274 __le32 tx_chain_mask;
2275
2276 /*
2277 * the nominal chain mask for receive
2278 *
2279 * The chain mask may be modified dynamically, e.g. for a client
2280 * to use a reduced number of chains for receive if the traffic to
2281 * the client is low enough that it doesn't require downlink MIMO
2282 * or antenna diversity.
2283 * This configuration parameter specifies the nominal chain-mask that
2284 * should be used when not operating with a reduced set of rx chains.
2285 */
2286 __le32 rx_chain_mask;
2287
2288 /*
2289 * what rx reorder timeout (ms) to use for the AC
2290 *
2291 * Each WMM access class (voice, video, best-effort, background) will
2292 * have its own timeout value to dictate how long to wait for missing
2293 * rx MPDUs to arrive before flushing subsequent MPDUs that have
2294 * already been received.
2295 * This parameter specifies the timeout in milliseconds for each
2296 * class.
2297 */
2298 __le32 rx_timeout_pri_vi;
2299 __le32 rx_timeout_pri_vo;
2300 __le32 rx_timeout_pri_be;
2301 __le32 rx_timeout_pri_bk;
2302
2303 /*
2304 * what mode the rx should decap packets to
2305 *
2306 * MAC can decap to RAW (no decap), native wifi or Ethernet types
2307 * THis setting also determines the default TX behavior, however TX
2308 * behavior can be modified on a per VAP basis during VAP init
2309 */
2310 __le32 rx_decap_mode;
2311
Geert Uytterhoeven8e4a4f52014-03-11 11:23:45 +01002312 /* what is the maximum number of scan requests that can be queued */
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002313 __le32 scan_max_pending_reqs;
2314
2315 /* maximum VDEV that could use BMISS offload */
2316 __le32 bmiss_offload_max_vdev;
2317
2318 /* maximum VDEV that could use offload roaming */
2319 __le32 roam_offload_max_vdev;
2320
2321 /* maximum AP profiles that would push to offload roaming */
2322 __le32 roam_offload_max_ap_profiles;
2323
2324 /*
2325 * how many groups to use for mcast->ucast conversion
2326 *
2327 * The target's WAL maintains a table to hold information regarding
2328 * which peers belong to a given multicast group, so that if
2329 * multicast->unicast conversion is enabled, the target can convert
2330 * multicast tx frames to a series of unicast tx frames, to each
2331 * peer within the multicast group.
2332 This num_mcast_groups configuration parameter tells the target how
2333 * many multicast groups to provide storage for within its multicast
2334 * group membership table.
2335 */
2336 __le32 num_mcast_groups;
2337
2338 /*
2339 * size to alloc for the mcast membership table
2340 *
2341 * This num_mcast_table_elems configuration parameter tells the
2342 * target how many peer elements it needs to provide storage for in
2343 * its multicast group membership table.
2344 * These multicast group membership table elements are shared by the
2345 * multicast groups stored within the table.
2346 */
2347 __le32 num_mcast_table_elems;
2348
2349 /*
2350 * whether/how to do multicast->unicast conversion
2351 *
2352 * This configuration parameter specifies whether the target should
2353 * perform multicast --> unicast conversion on transmit, and if so,
2354 * what to do if it finds no entries in its multicast group
2355 * membership table for the multicast IP address in the tx frame.
2356 * Configuration value:
2357 * 0 -> Do not perform multicast to unicast conversion.
2358 * 1 -> Convert multicast frames to unicast, if the IP multicast
2359 * address from the tx frame is found in the multicast group
2360 * membership table. If the IP multicast address is not found,
2361 * drop the frame.
2362 * 2 -> Convert multicast frames to unicast, if the IP multicast
2363 * address from the tx frame is found in the multicast group
2364 * membership table. If the IP multicast address is not found,
2365 * transmit the frame as multicast.
2366 */
2367 __le32 mcast2ucast_mode;
2368
2369 /*
2370 * how much memory to allocate for a tx PPDU dbg log
2371 *
2372 * This parameter controls how much memory the target will allocate
2373 * to store a log of tx PPDU meta-information (how large the PPDU
2374 * was, when it was sent, whether it was successful, etc.)
2375 */
2376 __le32 tx_dbg_log_size;
2377
2378 /* how many AST entries to be allocated for WDS */
2379 __le32 num_wds_entries;
2380
2381 /*
2382 * MAC DMA burst size, e.g., For target PCI limit can be
2383 * 0 -default, 1 256B
2384 */
2385 __le32 dma_burst_size;
2386
2387 /*
2388 * Fixed delimiters to be inserted after every MPDU to
2389 * account for interface latency to avoid underrun.
2390 */
2391 __le32 mac_aggr_delim;
2392
2393 /*
2394 * determine whether target is responsible for detecting duplicate
2395 * non-aggregate MPDU and timing out stale fragments.
2396 *
2397 * A-MPDU reordering is always performed on the target.
2398 *
2399 * 0: target responsible for frag timeout and dup checking
2400 * 1: host responsible for frag timeout and dup checking
2401 */
2402 __le32 rx_skip_defrag_timeout_dup_detection_check;
2403
2404 /*
2405 * Configuration for VoW :
2406 * No of Video Nodes to be supported
2407 * and Max no of descriptors for each Video link (node).
2408 */
2409 __le32 vow_config;
2410
2411 /* Number of msdu descriptors target should use */
2412 __le32 num_msdu_desc;
2413
2414 /*
2415 * Max. number of Tx fragments per MSDU
2416 * This parameter controls the max number of Tx fragments per MSDU.
2417 * This is sent by the target as part of the WMI_SERVICE_READY event
2418 * and is overriden by the OS shim as required.
2419 */
2420 __le32 max_frag_entries;
2421} __packed;
2422
Rajkumar Manoharan4a16fbe2014-12-17 12:21:12 +02002423enum wmi_10_2_feature_mask {
2424 WMI_10_2_RX_BATCH_MODE = BIT(0),
2425 WMI_10_2_ATF_CONFIG = BIT(1),
Yanbo Lide0c7892015-04-15 15:28:08 +03002426 WMI_10_2_COEX_GPIO = BIT(3),
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +05302427 WMI_10_2_PEER_STATS = BIT(7),
Rajkumar Manoharan4a16fbe2014-12-17 12:21:12 +02002428};
2429
Michal Kazior24c88f72014-07-25 13:32:17 +02002430struct wmi_resource_config_10_2 {
2431 struct wmi_resource_config_10x common;
2432 __le32 max_peer_ext_stats;
2433 __le32 smart_ant_cap; /* 0-disable, 1-enable */
2434 __le32 bk_min_free;
2435 __le32 be_min_free;
2436 __le32 vi_min_free;
2437 __le32 vo_min_free;
Rajkumar Manoharan4a16fbe2014-12-17 12:21:12 +02002438 __le32 feature_mask;
Michal Kazior24c88f72014-07-25 13:32:17 +02002439} __packed;
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002440
Raja Manib0399412015-06-22 20:10:17 +05302441#define NUM_UNITS_IS_NUM_VDEVS BIT(0)
2442#define NUM_UNITS_IS_NUM_PEERS BIT(1)
2443#define NUM_UNITS_IS_NUM_ACTIVE_PEERS BIT(2)
Bartosz Markowskib3effe62013-09-26 17:47:11 +02002444
Raja Manid1e52a82015-06-22 20:10:15 +05302445struct wmi_resource_config_10_4 {
2446 /* Number of virtual devices (VAPs) to support */
2447 __le32 num_vdevs;
2448
2449 /* Number of peer nodes to support */
2450 __le32 num_peers;
2451
2452 /* Number of active peer nodes to support */
2453 __le32 num_active_peers;
2454
2455 /* In offload mode, target supports features like WOW, chatter and other
2456 * protocol offloads. In order to support them some functionalities like
2457 * reorder buffering, PN checking need to be done in target.
2458 * This determines maximum number of peers supported by target in
2459 * offload mode.
2460 */
2461 __le32 num_offload_peers;
2462
2463 /* Number of reorder buffers available for doing target based reorder
2464 * Rx reorder buffering
2465 */
2466 __le32 num_offload_reorder_buffs;
2467
2468 /* Number of keys per peer */
2469 __le32 num_peer_keys;
2470
2471 /* Total number of TX/RX data TIDs */
2472 __le32 num_tids;
2473
2474 /* Max skid for resolving hash collisions.
2475 * The address search table is sparse, so that if two MAC addresses
2476 * result in the same hash value, the second of these conflicting
2477 * entries can slide to the next index in the address search table,
2478 * and use it, if it is unoccupied. This ast_skid_limit parameter
2479 * specifies the upper bound on how many subsequent indices to search
2480 * over to find an unoccupied space.
2481 */
2482 __le32 ast_skid_limit;
2483
2484 /* The nominal chain mask for transmit.
2485 * The chain mask may be modified dynamically, e.g. to operate AP tx
2486 * with a reduced number of chains if no clients are associated.
2487 * This configuration parameter specifies the nominal chain-mask that
2488 * should be used when not operating with a reduced set of tx chains.
2489 */
2490 __le32 tx_chain_mask;
2491
2492 /* The nominal chain mask for receive.
2493 * The chain mask may be modified dynamically, e.g. for a client to use
2494 * a reduced number of chains for receive if the traffic to the client
2495 * is low enough that it doesn't require downlink MIMO or antenna
2496 * diversity. This configuration parameter specifies the nominal
2497 * chain-mask that should be used when not operating with a reduced
2498 * set of rx chains.
2499 */
2500 __le32 rx_chain_mask;
2501
2502 /* What rx reorder timeout (ms) to use for the AC.
2503 * Each WMM access class (voice, video, best-effort, background) will
2504 * have its own timeout value to dictate how long to wait for missing
2505 * rx MPDUs to arrive before flushing subsequent MPDUs that have already
2506 * been received. This parameter specifies the timeout in milliseconds
2507 * for each class.
2508 */
2509 __le32 rx_timeout_pri[4];
2510
2511 /* What mode the rx should decap packets to.
2512 * MAC can decap to RAW (no decap), native wifi or Ethernet types.
2513 * This setting also determines the default TX behavior, however TX
2514 * behavior can be modified on a per VAP basis during VAP init
2515 */
2516 __le32 rx_decap_mode;
2517
2518 __le32 scan_max_pending_req;
2519
2520 __le32 bmiss_offload_max_vdev;
2521
2522 __le32 roam_offload_max_vdev;
2523
2524 __le32 roam_offload_max_ap_profiles;
2525
2526 /* How many groups to use for mcast->ucast conversion.
2527 * The target's WAL maintains a table to hold information regarding
2528 * which peers belong to a given multicast group, so that if
2529 * multicast->unicast conversion is enabled, the target can convert
2530 * multicast tx frames to a series of unicast tx frames, to each peer
2531 * within the multicast group. This num_mcast_groups configuration
2532 * parameter tells the target how many multicast groups to provide
2533 * storage for within its multicast group membership table.
2534 */
2535 __le32 num_mcast_groups;
2536
2537 /* Size to alloc for the mcast membership table.
2538 * This num_mcast_table_elems configuration parameter tells the target
2539 * how many peer elements it needs to provide storage for in its
2540 * multicast group membership table. These multicast group membership
2541 * table elements are shared by the multicast groups stored within
2542 * the table.
2543 */
2544 __le32 num_mcast_table_elems;
2545
2546 /* Whether/how to do multicast->unicast conversion.
2547 * This configuration parameter specifies whether the target should
2548 * perform multicast --> unicast conversion on transmit, and if so,
2549 * what to do if it finds no entries in its multicast group membership
2550 * table for the multicast IP address in the tx frame.
2551 * Configuration value:
2552 * 0 -> Do not perform multicast to unicast conversion.
2553 * 1 -> Convert multicast frames to unicast, if the IP multicast address
2554 * from the tx frame is found in the multicast group membership
2555 * table. If the IP multicast address is not found, drop the frame
2556 * 2 -> Convert multicast frames to unicast, if the IP multicast address
2557 * from the tx frame is found in the multicast group membership
2558 * table. If the IP multicast address is not found, transmit the
2559 * frame as multicast.
2560 */
2561 __le32 mcast2ucast_mode;
2562
2563 /* How much memory to allocate for a tx PPDU dbg log.
2564 * This parameter controls how much memory the target will allocate to
2565 * store a log of tx PPDU meta-information (how large the PPDU was,
2566 * when it was sent, whether it was successful, etc.)
2567 */
2568 __le32 tx_dbg_log_size;
2569
2570 /* How many AST entries to be allocated for WDS */
2571 __le32 num_wds_entries;
2572
2573 /* MAC DMA burst size. 0 -default, 1 -256B */
2574 __le32 dma_burst_size;
2575
2576 /* Fixed delimiters to be inserted after every MPDU to account for
2577 * interface latency to avoid underrun.
2578 */
2579 __le32 mac_aggr_delim;
2580
2581 /* Determine whether target is responsible for detecting duplicate
2582 * non-aggregate MPDU and timing out stale fragments. A-MPDU reordering
2583 * is always performed on the target.
2584 *
2585 * 0: target responsible for frag timeout and dup checking
2586 * 1: host responsible for frag timeout and dup checking
2587 */
2588 __le32 rx_skip_defrag_timeout_dup_detection_check;
2589
2590 /* Configuration for VoW : No of Video nodes to be supported and max
2591 * no of descriptors for each video link (node).
2592 */
2593 __le32 vow_config;
2594
2595 /* Maximum vdev that could use gtk offload */
2596 __le32 gtk_offload_max_vdev;
2597
2598 /* Number of msdu descriptors target should use */
2599 __le32 num_msdu_desc;
2600
2601 /* Max number of tx fragments per MSDU.
2602 * This parameter controls the max number of tx fragments per MSDU.
2603 * This will passed by target as part of the WMI_SERVICE_READY event
2604 * and is overridden by the OS shim as required.
2605 */
2606 __le32 max_frag_entries;
2607
2608 /* Max number of extended peer stats.
2609 * This parameter controls the max number of peers for which extended
2610 * statistics are supported by target
2611 */
2612 __le32 max_peer_ext_stats;
2613
2614 /* Smart antenna capabilities information.
2615 * 1 - Smart antenna is enabled
2616 * 0 - Smart antenna is disabled
2617 * In future this can contain smart antenna specific capabilities.
2618 */
2619 __le32 smart_ant_cap;
2620
2621 /* User can configure the buffers allocated for each AC (BE, BK, VI, VO)
2622 * during init.
2623 */
2624 __le32 bk_minfree;
2625 __le32 be_minfree;
2626 __le32 vi_minfree;
2627 __le32 vo_minfree;
2628
2629 /* Rx batch mode capability.
2630 * 1 - Rx batch mode enabled
2631 * 0 - Rx batch mode disabled
2632 */
2633 __le32 rx_batchmode;
2634
2635 /* Thermal throttling capability.
2636 * 1 - Capable of thermal throttling
2637 * 0 - Not capable of thermal throttling
2638 */
2639 __le32 tt_support;
2640
2641 /* ATF configuration.
2642 * 1 - Enable ATF
2643 * 0 - Disable ATF
2644 */
2645 __le32 atf_config;
2646
2647 /* Configure padding to manage IP header un-alignment
2648 * 1 - Enable padding
2649 * 0 - Disable padding
2650 */
2651 __le32 iphdr_pad_config;
2652
2653 /* qwrap configuration
2654 * 1 - This is qwrap configuration
2655 * 0 - This is not qwrap
2656 */
2657 __le32 qwrap_config;
2658} __packed;
2659
Kalle Valo5e3dd152013-06-12 20:52:10 +03002660/* strucutre describing host memory chunk. */
2661struct host_memory_chunk {
2662 /* id of the request that is passed up in service ready */
2663 __le32 req_id;
2664 /* the physical address the memory chunk */
2665 __le32 ptr;
2666 /* size of the chunk */
2667 __le32 size;
2668} __packed;
2669
Michal Kaziorcf9fca82014-09-18 15:21:22 +02002670struct wmi_host_mem_chunks {
2671 __le32 count;
2672 /* some fw revisions require at least 1 chunk regardless of count */
2673 struct host_memory_chunk items[1];
2674} __packed;
2675
Kalle Valo5e3dd152013-06-12 20:52:10 +03002676struct wmi_init_cmd {
2677 struct wmi_resource_config resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02002678 struct wmi_host_mem_chunks mem_chunks;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002679} __packed;
2680
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002681/* _10x stucture is from 10.X FW API */
2682struct wmi_init_cmd_10x {
2683 struct wmi_resource_config_10x resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02002684 struct wmi_host_mem_chunks mem_chunks;
Bartosz Markowski12b2b9e2013-09-26 17:47:13 +02002685} __packed;
2686
Michal Kazior24c88f72014-07-25 13:32:17 +02002687struct wmi_init_cmd_10_2 {
2688 struct wmi_resource_config_10_2 resource_config;
Michal Kaziorcf9fca82014-09-18 15:21:22 +02002689 struct wmi_host_mem_chunks mem_chunks;
Michal Kazior24c88f72014-07-25 13:32:17 +02002690} __packed;
2691
Raja Manid1e52a82015-06-22 20:10:15 +05302692struct wmi_init_cmd_10_4 {
2693 struct wmi_resource_config_10_4 resource_config;
2694 struct wmi_host_mem_chunks mem_chunks;
2695} __packed;
2696
Michal Kazior24c88f72014-07-25 13:32:17 +02002697struct wmi_chan_list_entry {
2698 __le16 freq;
2699 u8 phy_mode; /* valid for 10.2 only */
2700 u8 reserved;
2701} __packed;
2702
Kalle Valo5e3dd152013-06-12 20:52:10 +03002703/* TLV for channel list */
2704struct wmi_chan_list {
2705 __le32 tag; /* WMI_CHAN_LIST_TAG */
2706 __le32 num_chan;
Michal Kazior24c88f72014-07-25 13:32:17 +02002707 struct wmi_chan_list_entry channel_list[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03002708} __packed;
2709
2710struct wmi_bssid_list {
2711 __le32 tag; /* WMI_BSSID_LIST_TAG */
2712 __le32 num_bssid;
2713 struct wmi_mac_addr bssid_list[0];
2714} __packed;
2715
2716struct wmi_ie_data {
2717 __le32 tag; /* WMI_IE_TAG */
2718 __le32 ie_len;
2719 u8 ie_data[0];
2720} __packed;
2721
2722struct wmi_ssid {
2723 __le32 ssid_len;
2724 u8 ssid[32];
2725} __packed;
2726
2727struct wmi_ssid_list {
2728 __le32 tag; /* WMI_SSID_LIST_TAG */
2729 __le32 num_ssids;
2730 struct wmi_ssid ssids[0];
2731} __packed;
2732
2733/* prefix used by scan requestor ids on the host */
2734#define WMI_HOST_SCAN_REQUESTOR_ID_PREFIX 0xA000
2735
2736/* prefix used by scan request ids generated on the host */
2737/* host cycles through the lower 12 bits to generate ids */
2738#define WMI_HOST_SCAN_REQ_ID_PREFIX 0xA000
2739
2740#define WLAN_SCAN_PARAMS_MAX_SSID 16
2741#define WLAN_SCAN_PARAMS_MAX_BSSID 4
2742#define WLAN_SCAN_PARAMS_MAX_IE_LEN 256
2743
Michal Kaziordcca0bd2014-11-24 14:58:32 +01002744/* Values lower than this may be refused by some firmware revisions with a scan
2745 * completion with a timedout reason.
2746 */
2747#define WMI_SCAN_CHAN_MIN_TIME_MSEC 40
2748
Kalle Valo5e3dd152013-06-12 20:52:10 +03002749/* Scan priority numbers must be sequential, starting with 0 */
2750enum wmi_scan_priority {
2751 WMI_SCAN_PRIORITY_VERY_LOW = 0,
2752 WMI_SCAN_PRIORITY_LOW,
2753 WMI_SCAN_PRIORITY_MEDIUM,
2754 WMI_SCAN_PRIORITY_HIGH,
2755 WMI_SCAN_PRIORITY_VERY_HIGH,
2756 WMI_SCAN_PRIORITY_COUNT /* number of priorities supported */
2757};
2758
Michal Kaziora6aa5da2014-09-18 15:21:27 +02002759struct wmi_start_scan_common {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002760 /* Scan ID */
2761 __le32 scan_id;
2762 /* Scan requestor ID */
2763 __le32 scan_req_id;
2764 /* VDEV id(interface) that is requesting scan */
2765 __le32 vdev_id;
2766 /* Scan Priority, input to scan scheduler */
2767 __le32 scan_priority;
2768 /* Scan events subscription */
2769 __le32 notify_scan_events;
2770 /* dwell time in msec on active channels */
2771 __le32 dwell_time_active;
2772 /* dwell time in msec on passive channels */
2773 __le32 dwell_time_passive;
2774 /*
2775 * min time in msec on the BSS channel,only valid if atleast one
2776 * VDEV is active
2777 */
2778 __le32 min_rest_time;
2779 /*
2780 * max rest time in msec on the BSS channel,only valid if at least
2781 * one VDEV is active
2782 */
2783 /*
2784 * the scanner will rest on the bss channel at least min_rest_time
2785 * after min_rest_time the scanner will start checking for tx/rx
2786 * activity on all VDEVs. if there is no activity the scanner will
2787 * switch to off channel. if there is activity the scanner will let
2788 * the radio on the bss channel until max_rest_time expires.at
2789 * max_rest_time scanner will switch to off channel irrespective of
2790 * activity. activity is determined by the idle_time parameter.
2791 */
2792 __le32 max_rest_time;
2793 /*
2794 * time before sending next set of probe requests.
2795 * The scanner keeps repeating probe requests transmission with
2796 * period specified by repeat_probe_time.
2797 * The number of probe requests specified depends on the ssid_list
2798 * and bssid_list
2799 */
2800 __le32 repeat_probe_time;
2801 /* time in msec between 2 consequetive probe requests with in a set. */
2802 __le32 probe_spacing_time;
2803 /*
2804 * data inactivity time in msec on bss channel that will be used by
2805 * scanner for measuring the inactivity.
2806 */
2807 __le32 idle_time;
2808 /* maximum time in msec allowed for scan */
2809 __le32 max_scan_time;
2810 /*
2811 * delay in msec before sending first probe request after switching
2812 * to a channel
2813 */
2814 __le32 probe_delay;
2815 /* Scan control flags */
2816 __le32 scan_ctrl_flags;
Michal Kaziora6aa5da2014-09-18 15:21:27 +02002817} __packed;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002818
Michal Kaziora6aa5da2014-09-18 15:21:27 +02002819struct wmi_start_scan_tlvs {
2820 /* TLV parameters. These includes channel list, ssid list, bssid list,
2821 * extra ies.
Kalle Valo5e3dd152013-06-12 20:52:10 +03002822 */
Michal Kaziora6aa5da2014-09-18 15:21:27 +02002823 u8 tlvs[0];
2824} __packed;
2825
2826struct wmi_start_scan_cmd {
2827 struct wmi_start_scan_common common;
2828 __le32 burst_duration_ms;
2829 struct wmi_start_scan_tlvs tlvs;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002830} __packed;
2831
Bartosz Markowski89b7e762013-09-26 17:47:17 +02002832/* This is the definition from 10.X firmware branch */
Michal Kaziora6aa5da2014-09-18 15:21:27 +02002833struct wmi_10x_start_scan_cmd {
2834 struct wmi_start_scan_common common;
2835 struct wmi_start_scan_tlvs tlvs;
Bartosz Markowski89b7e762013-09-26 17:47:17 +02002836} __packed;
2837
Kalle Valo5e3dd152013-06-12 20:52:10 +03002838struct wmi_ssid_arg {
2839 int len;
2840 const u8 *ssid;
2841};
2842
2843struct wmi_bssid_arg {
2844 const u8 *bssid;
2845};
2846
2847struct wmi_start_scan_arg {
2848 u32 scan_id;
2849 u32 scan_req_id;
2850 u32 vdev_id;
2851 u32 scan_priority;
2852 u32 notify_scan_events;
2853 u32 dwell_time_active;
2854 u32 dwell_time_passive;
2855 u32 min_rest_time;
2856 u32 max_rest_time;
2857 u32 repeat_probe_time;
2858 u32 probe_spacing_time;
2859 u32 idle_time;
2860 u32 max_scan_time;
2861 u32 probe_delay;
2862 u32 scan_ctrl_flags;
Michal Kaziordbd3f9f2015-03-31 11:03:48 +00002863 u32 burst_duration_ms;
Kalle Valo5e3dd152013-06-12 20:52:10 +03002864
2865 u32 ie_len;
2866 u32 n_channels;
2867 u32 n_ssids;
2868 u32 n_bssids;
2869
2870 u8 ie[WLAN_SCAN_PARAMS_MAX_IE_LEN];
Michal Kazior24c88f72014-07-25 13:32:17 +02002871 u16 channels[64];
Kalle Valo5e3dd152013-06-12 20:52:10 +03002872 struct wmi_ssid_arg ssids[WLAN_SCAN_PARAMS_MAX_SSID];
2873 struct wmi_bssid_arg bssids[WLAN_SCAN_PARAMS_MAX_BSSID];
2874};
2875
2876/* scan control flags */
2877
2878/* passively scan all channels including active channels */
2879#define WMI_SCAN_FLAG_PASSIVE 0x1
2880/* add wild card ssid probe request even though ssid_list is specified. */
2881#define WMI_SCAN_ADD_BCAST_PROBE_REQ 0x2
2882/* add cck rates to rates/xrate ie for the generated probe request */
2883#define WMI_SCAN_ADD_CCK_RATES 0x4
2884/* add ofdm rates to rates/xrate ie for the generated probe request */
2885#define WMI_SCAN_ADD_OFDM_RATES 0x8
2886/* To enable indication of Chan load and Noise floor to host */
2887#define WMI_SCAN_CHAN_STAT_EVENT 0x10
2888/* Filter Probe request frames */
2889#define WMI_SCAN_FILTER_PROBE_REQ 0x20
2890/* When set, DFS channels will not be scanned */
2891#define WMI_SCAN_BYPASS_DFS_CHN 0x40
2892/* Different FW scan engine may choose to bail out on errors.
2893 * Allow the driver to have influence over that. */
2894#define WMI_SCAN_CONTINUE_ON_ERROR 0x80
2895
2896/* WMI_SCAN_CLASS_MASK must be the same value as IEEE80211_SCAN_CLASS_MASK */
2897#define WMI_SCAN_CLASS_MASK 0xFF000000
2898
Kalle Valo5e3dd152013-06-12 20:52:10 +03002899enum wmi_stop_scan_type {
2900 WMI_SCAN_STOP_ONE = 0x00000000, /* stop by scan_id */
2901 WMI_SCAN_STOP_VDEV_ALL = 0x01000000, /* stop by vdev_id */
2902 WMI_SCAN_STOP_ALL = 0x04000000, /* stop all scans */
2903};
2904
2905struct wmi_stop_scan_cmd {
2906 __le32 scan_req_id;
2907 __le32 scan_id;
2908 __le32 req_type;
2909 __le32 vdev_id;
2910} __packed;
2911
2912struct wmi_stop_scan_arg {
2913 u32 req_id;
2914 enum wmi_stop_scan_type req_type;
2915 union {
2916 u32 scan_id;
2917 u32 vdev_id;
2918 } u;
2919};
2920
2921struct wmi_scan_chan_list_cmd {
2922 __le32 num_scan_chans;
2923 struct wmi_channel chan_info[0];
2924} __packed;
2925
2926struct wmi_scan_chan_list_arg {
2927 u32 n_channels;
2928 struct wmi_channel_arg *channels;
2929};
2930
2931enum wmi_bss_filter {
2932 WMI_BSS_FILTER_NONE = 0, /* no beacons forwarded */
2933 WMI_BSS_FILTER_ALL, /* all beacons forwarded */
2934 WMI_BSS_FILTER_PROFILE, /* only beacons matching profile */
2935 WMI_BSS_FILTER_ALL_BUT_PROFILE, /* all but beacons matching profile */
2936 WMI_BSS_FILTER_CURRENT_BSS, /* only beacons matching current BSS */
2937 WMI_BSS_FILTER_ALL_BUT_BSS, /* all but beacons matching BSS */
2938 WMI_BSS_FILTER_PROBED_SSID, /* beacons matching probed ssid */
2939 WMI_BSS_FILTER_LAST_BSS, /* marker only */
2940};
2941
2942enum wmi_scan_event_type {
Raja Manib2297ba2015-06-22 20:22:23 +05302943 WMI_SCAN_EVENT_STARTED = BIT(0),
2944 WMI_SCAN_EVENT_COMPLETED = BIT(1),
2945 WMI_SCAN_EVENT_BSS_CHANNEL = BIT(2),
2946 WMI_SCAN_EVENT_FOREIGN_CHANNEL = BIT(3),
2947 WMI_SCAN_EVENT_DEQUEUED = BIT(4),
2948 /* possibly by high-prio scan */
2949 WMI_SCAN_EVENT_PREEMPTED = BIT(5),
2950 WMI_SCAN_EVENT_START_FAILED = BIT(6),
2951 WMI_SCAN_EVENT_RESTARTED = BIT(7),
2952 WMI_SCAN_EVENT_FOREIGN_CHANNEL_EXIT = BIT(8),
2953 WMI_SCAN_EVENT_MAX = BIT(15),
Kalle Valo5e3dd152013-06-12 20:52:10 +03002954};
2955
2956enum wmi_scan_completion_reason {
2957 WMI_SCAN_REASON_COMPLETED,
2958 WMI_SCAN_REASON_CANCELLED,
2959 WMI_SCAN_REASON_PREEMPTED,
2960 WMI_SCAN_REASON_TIMEDOUT,
Raja Manib2297ba2015-06-22 20:22:23 +05302961 WMI_SCAN_REASON_INTERNAL_FAILURE,
Kalle Valo5e3dd152013-06-12 20:52:10 +03002962 WMI_SCAN_REASON_MAX,
2963};
2964
2965struct wmi_scan_event {
2966 __le32 event_type; /* %WMI_SCAN_EVENT_ */
2967 __le32 reason; /* %WMI_SCAN_REASON_ */
2968 __le32 channel_freq; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */
2969 __le32 scan_req_id;
2970 __le32 scan_id;
2971 __le32 vdev_id;
2972} __packed;
2973
2974/*
2975 * This defines how much headroom is kept in the
2976 * receive frame between the descriptor and the
2977 * payload, in order for the WMI PHY error and
2978 * management handler to insert header contents.
2979 *
2980 * This is in bytes.
2981 */
2982#define WMI_MGMT_RX_HDR_HEADROOM 52
2983
2984/*
2985 * This event will be used for sending scan results
2986 * as well as rx mgmt frames to the host. The rx buffer
2987 * will be sent as part of this WMI event. It would be a
2988 * good idea to pass all the fields in the RX status
2989 * descriptor up to the host.
2990 */
Michal Kazior0d9b0432013-08-09 10:13:33 +02002991struct wmi_mgmt_rx_hdr_v1 {
Kalle Valo5e3dd152013-06-12 20:52:10 +03002992 __le32 channel;
2993 __le32 snr;
2994 __le32 rate;
2995 __le32 phy_mode;
2996 __le32 buf_len;
2997 __le32 status; /* %WMI_RX_STATUS_ */
2998} __packed;
2999
Michal Kazior0d9b0432013-08-09 10:13:33 +02003000struct wmi_mgmt_rx_hdr_v2 {
3001 struct wmi_mgmt_rx_hdr_v1 v1;
3002 __le32 rssi_ctl[4];
3003} __packed;
3004
3005struct wmi_mgmt_rx_event_v1 {
3006 struct wmi_mgmt_rx_hdr_v1 hdr;
3007 u8 buf[0];
3008} __packed;
3009
3010struct wmi_mgmt_rx_event_v2 {
3011 struct wmi_mgmt_rx_hdr_v2 hdr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003012 u8 buf[0];
3013} __packed;
3014
Raja Mani1c092962015-06-22 20:10:16 +05303015struct wmi_10_4_mgmt_rx_hdr {
3016 __le32 channel;
3017 __le32 snr;
3018 u8 rssi_ctl[4];
3019 __le32 rate;
3020 __le32 phy_mode;
3021 __le32 buf_len;
3022 __le32 status;
3023} __packed;
3024
3025struct wmi_10_4_mgmt_rx_event {
3026 struct wmi_10_4_mgmt_rx_hdr hdr;
3027 u8 buf[0];
3028} __packed;
3029
Kalle Valo5e3dd152013-06-12 20:52:10 +03003030#define WMI_RX_STATUS_OK 0x00
3031#define WMI_RX_STATUS_ERR_CRC 0x01
3032#define WMI_RX_STATUS_ERR_DECRYPT 0x08
3033#define WMI_RX_STATUS_ERR_MIC 0x10
3034#define WMI_RX_STATUS_ERR_KEY_CACHE_MISS 0x20
3035
Raja Mani991adf72015-08-14 11:13:29 +03003036#define PHY_ERROR_GEN_SPECTRAL_SCAN 0x26
3037#define PHY_ERROR_GEN_FALSE_RADAR_EXT 0x24
3038#define PHY_ERROR_GEN_RADAR 0x05
3039
Raja Mani2b0a2e02015-08-14 11:13:34 +03003040#define PHY_ERROR_10_4_RADAR_MASK 0x4
3041#define PHY_ERROR_10_4_SPECTRAL_SCAN_MASK 0x4000000
3042
Raja Mani991adf72015-08-14 11:13:29 +03003043enum phy_err_type {
3044 PHY_ERROR_UNKNOWN,
3045 PHY_ERROR_SPECTRAL_SCAN,
3046 PHY_ERROR_FALSE_RADAR_EXT,
3047 PHY_ERROR_RADAR
3048};
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003049
Michal Kazior2332d0a2014-09-18 15:21:25 +02003050struct wmi_phyerr {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003051 __le32 tsf_timestamp;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003052 __le16 freq1;
3053 __le16 freq2;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003054 u8 rssi_combined;
3055 u8 chan_width_mhz;
3056 u8 phy_err_code;
3057 u8 rsvd0;
Michal Kazior2332d0a2014-09-18 15:21:25 +02003058 __le32 rssi_chains[4];
3059 __le16 nf_chains[4];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003060 __le32 buf_len;
Michal Kazior2332d0a2014-09-18 15:21:25 +02003061 u8 buf[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003062} __packed;
3063
Michal Kazior2332d0a2014-09-18 15:21:25 +02003064struct wmi_phyerr_event {
3065 __le32 num_phyerrs;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003066 __le32 tsf_l32;
3067 __le32 tsf_u32;
Michal Kazior2332d0a2014-09-18 15:21:25 +02003068 struct wmi_phyerr phyerrs[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03003069} __packed;
3070
Raja Mani2b0a2e02015-08-14 11:13:34 +03003071struct wmi_10_4_phyerr_event {
3072 __le32 tsf_l32;
3073 __le32 tsf_u32;
3074 __le16 freq1;
3075 __le16 freq2;
3076 u8 rssi_combined;
3077 u8 chan_width_mhz;
3078 u8 phy_err_code;
3079 u8 rsvd0;
3080 __le32 rssi_chains[4];
3081 __le16 nf_chains[4];
3082 __le32 phy_err_mask[2];
3083 __le32 tsf_timestamp;
3084 __le32 buf_len;
3085 u8 buf[0];
3086} __packed;
3087
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003088#define PHYERR_TLV_SIG 0xBB
3089#define PHYERR_TLV_TAG_SEARCH_FFT_REPORT 0xFB
3090#define PHYERR_TLV_TAG_RADAR_PULSE_SUMMARY 0xF8
Simon Wunderlich855aed12014-08-02 09:12:54 +03003091#define PHYERR_TLV_TAG_SPECTRAL_SUMMARY_REPORT 0xF9
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003092
3093struct phyerr_radar_report {
3094 __le32 reg0; /* RADAR_REPORT_REG0_* */
3095 __le32 reg1; /* REDAR_REPORT_REG1_* */
3096} __packed;
3097
3098#define RADAR_REPORT_REG0_PULSE_IS_CHIRP_MASK 0x80000000
3099#define RADAR_REPORT_REG0_PULSE_IS_CHIRP_LSB 31
3100
3101#define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_MASK 0x40000000
3102#define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_LSB 30
3103
3104#define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_MASK 0x3FF00000
3105#define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_LSB 20
3106
3107#define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_MASK 0x000F0000
3108#define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_LSB 16
3109
3110#define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_MASK 0x0000FC00
3111#define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_LSB 10
3112
3113#define RADAR_REPORT_REG0_PULSE_SIDX_MASK 0x000003FF
3114#define RADAR_REPORT_REG0_PULSE_SIDX_LSB 0
3115
3116#define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_MASK 0x80000000
3117#define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_LSB 31
3118
3119#define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_MASK 0x7F000000
3120#define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_LSB 24
3121
3122#define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_MASK 0x00FF0000
3123#define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_LSB 16
3124
3125#define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_MASK 0x0000FF00
3126#define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_LSB 8
3127
3128#define RADAR_REPORT_REG1_PULSE_DUR_MASK 0x000000FF
3129#define RADAR_REPORT_REG1_PULSE_DUR_LSB 0
3130
3131struct phyerr_fft_report {
3132 __le32 reg0; /* SEARCH_FFT_REPORT_REG0_ * */
3133 __le32 reg1; /* SEARCH_FFT_REPORT_REG1_ * */
3134} __packed;
3135
3136#define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_MASK 0xFF800000
3137#define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_LSB 23
3138
3139#define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_MASK 0x007FC000
3140#define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_LSB 14
3141
3142#define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_MASK 0x00003000
3143#define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_LSB 12
3144
3145#define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_MASK 0x00000FFF
3146#define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_LSB 0
3147
3148#define SEARCH_FFT_REPORT_REG1_RELPWR_DB_MASK 0xFC000000
3149#define SEARCH_FFT_REPORT_REG1_RELPWR_DB_LSB 26
3150
3151#define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_MASK 0x03FC0000
3152#define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_LSB 18
3153
3154#define SEARCH_FFT_REPORT_REG1_PEAK_MAG_MASK 0x0003FF00
3155#define SEARCH_FFT_REPORT_REG1_PEAK_MAG_LSB 8
3156
3157#define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_MASK 0x000000FF
3158#define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_LSB 0
3159
Janusz Dziedzic9702c682013-11-20 09:59:41 +02003160struct phyerr_tlv {
3161 __le16 len;
3162 u8 tag;
3163 u8 sig;
3164} __packed;
3165
3166#define DFS_RSSI_POSSIBLY_FALSE 50
3167#define DFS_PEAK_MAG_THOLD_POSSIBLY_FALSE 40
3168
Kalle Valo5e3dd152013-06-12 20:52:10 +03003169struct wmi_mgmt_tx_hdr {
3170 __le32 vdev_id;
3171 struct wmi_mac_addr peer_macaddr;
3172 __le32 tx_rate;
3173 __le32 tx_power;
3174 __le32 buf_len;
3175} __packed;
3176
3177struct wmi_mgmt_tx_cmd {
3178 struct wmi_mgmt_tx_hdr hdr;
3179 u8 buf[0];
3180} __packed;
3181
3182struct wmi_echo_event {
3183 __le32 value;
3184} __packed;
3185
3186struct wmi_echo_cmd {
3187 __le32 value;
3188} __packed;
3189
Kalle Valo5e3dd152013-06-12 20:52:10 +03003190struct wmi_pdev_set_regdomain_cmd {
3191 __le32 reg_domain;
3192 __le32 reg_domain_2G;
3193 __le32 reg_domain_5G;
3194 __le32 conformance_test_limit_2G;
3195 __le32 conformance_test_limit_5G;
3196} __packed;
3197
Marek Puzyniak821af6a2014-03-21 17:46:57 +02003198enum wmi_dfs_region {
3199 /* Uninitialized dfs domain */
3200 WMI_UNINIT_DFS_DOMAIN = 0,
3201
3202 /* FCC3 dfs domain */
3203 WMI_FCC_DFS_DOMAIN = 1,
3204
3205 /* ETSI dfs domain */
3206 WMI_ETSI_DFS_DOMAIN = 2,
3207
3208 /*Japan dfs domain */
3209 WMI_MKK4_DFS_DOMAIN = 3,
3210};
3211
3212struct wmi_pdev_set_regdomain_cmd_10x {
3213 __le32 reg_domain;
3214 __le32 reg_domain_2G;
3215 __le32 reg_domain_5G;
3216 __le32 conformance_test_limit_2G;
3217 __le32 conformance_test_limit_5G;
3218
3219 /* dfs domain from wmi_dfs_region */
3220 __le32 dfs_domain;
3221} __packed;
3222
Kalle Valo5e3dd152013-06-12 20:52:10 +03003223/* Command to set/unset chip in quiet mode */
3224struct wmi_pdev_set_quiet_cmd {
3225 /* period in TUs */
3226 __le32 period;
3227
3228 /* duration in TUs */
3229 __le32 duration;
3230
3231 /* offset in TUs */
3232 __le32 next_start;
3233
3234 /* enable/disable */
3235 __le32 enabled;
3236} __packed;
3237
Kalle Valo5e3dd152013-06-12 20:52:10 +03003238/*
3239 * 802.11g protection mode.
3240 */
3241enum ath10k_protmode {
3242 ATH10K_PROT_NONE = 0, /* no protection */
3243 ATH10K_PROT_CTSONLY = 1, /* CTS to self */
3244 ATH10K_PROT_RTSCTS = 2, /* RTS-CTS */
3245};
3246
Marek Kwaczynskie81bd102014-03-11 12:58:00 +02003247enum wmi_rtscts_profile {
3248 WMI_RTSCTS_FOR_NO_RATESERIES = 0,
3249 WMI_RTSCTS_FOR_SECOND_RATESERIES,
3250 WMI_RTSCTS_ACROSS_SW_RETRIES
3251};
3252
3253#define WMI_RTSCTS_ENABLED 1
3254#define WMI_RTSCTS_SET_MASK 0x0f
3255#define WMI_RTSCTS_SET_LSB 0
3256
3257#define WMI_RTSCTS_PROFILE_MASK 0xf0
3258#define WMI_RTSCTS_PROFILE_LSB 4
3259
Kalle Valo5e3dd152013-06-12 20:52:10 +03003260enum wmi_beacon_gen_mode {
3261 WMI_BEACON_STAGGERED_MODE = 0,
3262 WMI_BEACON_BURST_MODE = 1
3263};
3264
3265enum wmi_csa_event_ies_present_flag {
3266 WMI_CSA_IE_PRESENT = 0x00000001,
3267 WMI_XCSA_IE_PRESENT = 0x00000002,
3268 WMI_WBW_IE_PRESENT = 0x00000004,
3269 WMI_CSWARP_IE_PRESENT = 0x00000008,
3270};
3271
3272/* wmi CSA receive event from beacon frame */
3273struct wmi_csa_event {
3274 __le32 i_fc_dur;
3275 /* Bit 0-15: FC */
3276 /* Bit 16-31: DUR */
3277 struct wmi_mac_addr i_addr1;
3278 struct wmi_mac_addr i_addr2;
3279 __le32 csa_ie[2];
3280 __le32 xcsa_ie[2];
3281 __le32 wb_ie[2];
3282 __le32 cswarp_ie;
3283 __le32 ies_present_flag; /* wmi_csa_event_ies_present_flag */
3284} __packed;
3285
3286/* the definition of different PDEV parameters */
3287#define PDEV_DEFAULT_STATS_UPDATE_PERIOD 500
3288#define VDEV_DEFAULT_STATS_UPDATE_PERIOD 500
3289#define PEER_DEFAULT_STATS_UPDATE_PERIOD 500
3290
Bartosz Markowski226a3392013-09-26 17:47:16 +02003291struct wmi_pdev_param_map {
3292 u32 tx_chain_mask;
3293 u32 rx_chain_mask;
3294 u32 txpower_limit2g;
3295 u32 txpower_limit5g;
3296 u32 txpower_scale;
3297 u32 beacon_gen_mode;
3298 u32 beacon_tx_mode;
3299 u32 resmgr_offchan_mode;
3300 u32 protection_mode;
3301 u32 dynamic_bw;
3302 u32 non_agg_sw_retry_th;
3303 u32 agg_sw_retry_th;
3304 u32 sta_kickout_th;
3305 u32 ac_aggrsize_scaling;
3306 u32 ltr_enable;
3307 u32 ltr_ac_latency_be;
3308 u32 ltr_ac_latency_bk;
3309 u32 ltr_ac_latency_vi;
3310 u32 ltr_ac_latency_vo;
3311 u32 ltr_ac_latency_timeout;
3312 u32 ltr_sleep_override;
3313 u32 ltr_rx_override;
3314 u32 ltr_tx_activity_timeout;
3315 u32 l1ss_enable;
3316 u32 dsleep_enable;
3317 u32 pcielp_txbuf_flush;
3318 u32 pcielp_txbuf_watermark;
3319 u32 pcielp_txbuf_tmo_en;
3320 u32 pcielp_txbuf_tmo_value;
3321 u32 pdev_stats_update_period;
3322 u32 vdev_stats_update_period;
3323 u32 peer_stats_update_period;
3324 u32 bcnflt_stats_update_period;
3325 u32 pmf_qos;
3326 u32 arp_ac_override;
Bartosz Markowski226a3392013-09-26 17:47:16 +02003327 u32 dcs;
3328 u32 ani_enable;
3329 u32 ani_poll_period;
3330 u32 ani_listen_period;
3331 u32 ani_ofdm_level;
3332 u32 ani_cck_level;
3333 u32 dyntxchain;
3334 u32 proxy_sta;
3335 u32 idle_ps_config;
3336 u32 power_gating_sleep;
3337 u32 fast_channel_reset;
3338 u32 burst_dur;
3339 u32 burst_enable;
Peter Oha7bd3e92014-12-02 13:07:14 +02003340 u32 cal_period;
Raja Manid86561f2015-06-22 20:10:14 +05303341 u32 aggr_burst;
3342 u32 rx_decap_mode;
3343 u32 smart_antenna_default_antenna;
3344 u32 igmpmld_override;
3345 u32 igmpmld_tid;
3346 u32 antenna_gain;
3347 u32 rx_filter;
3348 u32 set_mcast_to_ucast_tid;
3349 u32 proxy_sta_mode;
3350 u32 set_mcast2ucast_mode;
3351 u32 set_mcast2ucast_buffer;
3352 u32 remove_mcast2ucast_buffer;
3353 u32 peer_sta_ps_statechg_enable;
3354 u32 igmpmld_ac_override;
3355 u32 block_interbss;
3356 u32 set_disable_reset_cmdid;
3357 u32 set_msdu_ttl_cmdid;
3358 u32 set_ppdu_duration_cmdid;
3359 u32 txbf_sound_period_cmdid;
3360 u32 set_promisc_mode_cmdid;
3361 u32 set_burst_mode_cmdid;
3362 u32 en_stats;
3363 u32 mu_group_policy;
3364 u32 noise_detection;
3365 u32 noise_threshold;
3366 u32 dpd_enable;
3367 u32 set_mcast_bcast_echo;
3368 u32 atf_strict_sch;
3369 u32 atf_sched_duration;
3370 u32 ant_plzn;
3371 u32 mgmt_retry_limit;
3372 u32 sensitivity_level;
3373 u32 signed_txpower_2g;
3374 u32 signed_txpower_5g;
3375 u32 enable_per_tid_amsdu;
3376 u32 enable_per_tid_ampdu;
3377 u32 cca_threshold;
3378 u32 rts_fixed_rate;
3379 u32 pdev_reset;
3380 u32 wapi_mbssid_offset;
3381 u32 arp_srcaddr;
3382 u32 arp_dstaddr;
Bartosz Markowski226a3392013-09-26 17:47:16 +02003383};
3384
3385#define WMI_PDEV_PARAM_UNSUPPORTED 0
3386
Kalle Valo5e3dd152013-06-12 20:52:10 +03003387enum wmi_pdev_param {
Ben Greeard0e0a552014-05-14 16:56:14 +03003388 /* TX chain mask */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003389 WMI_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
Ben Greeard0e0a552014-05-14 16:56:14 +03003390 /* RX chain mask */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003391 WMI_PDEV_PARAM_RX_CHAIN_MASK,
3392 /* TX power limit for 2G Radio */
3393 WMI_PDEV_PARAM_TXPOWER_LIMIT2G,
3394 /* TX power limit for 5G Radio */
3395 WMI_PDEV_PARAM_TXPOWER_LIMIT5G,
3396 /* TX power scale */
3397 WMI_PDEV_PARAM_TXPOWER_SCALE,
3398 /* Beacon generation mode . 0: host, 1: target */
3399 WMI_PDEV_PARAM_BEACON_GEN_MODE,
3400 /* Beacon generation mode . 0: staggered 1: bursted */
3401 WMI_PDEV_PARAM_BEACON_TX_MODE,
3402 /*
3403 * Resource manager off chan mode .
3404 * 0: turn off off chan mode. 1: turn on offchan mode
3405 */
3406 WMI_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
3407 /*
3408 * Protection mode:
3409 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
3410 */
3411 WMI_PDEV_PARAM_PROTECTION_MODE,
Michal Kaziorc4dd0d02013-11-13 11:05:10 +01003412 /*
3413 * Dynamic bandwidth - 0: disable, 1: enable
3414 *
3415 * When enabled HW rate control tries different bandwidths when
3416 * retransmitting frames.
3417 */
Kalle Valo5e3dd152013-06-12 20:52:10 +03003418 WMI_PDEV_PARAM_DYNAMIC_BW,
3419 /* Non aggregrate/ 11g sw retry threshold.0-disable */
3420 WMI_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
3421 /* aggregrate sw retry threshold. 0-disable*/
3422 WMI_PDEV_PARAM_AGG_SW_RETRY_TH,
3423 /* Station kickout threshold (non of consecutive failures).0-disable */
3424 WMI_PDEV_PARAM_STA_KICKOUT_TH,
3425 /* Aggerate size scaling configuration per AC */
3426 WMI_PDEV_PARAM_AC_AGGRSIZE_SCALING,
3427 /* LTR enable */
3428 WMI_PDEV_PARAM_LTR_ENABLE,
3429 /* LTR latency for BE, in us */
3430 WMI_PDEV_PARAM_LTR_AC_LATENCY_BE,
3431 /* LTR latency for BK, in us */
3432 WMI_PDEV_PARAM_LTR_AC_LATENCY_BK,
3433 /* LTR latency for VI, in us */
3434 WMI_PDEV_PARAM_LTR_AC_LATENCY_VI,
3435 /* LTR latency for VO, in us */
3436 WMI_PDEV_PARAM_LTR_AC_LATENCY_VO,
3437 /* LTR AC latency timeout, in ms */
3438 WMI_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
3439 /* LTR platform latency override, in us */
3440 WMI_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
3441 /* LTR-RX override, in us */
3442 WMI_PDEV_PARAM_LTR_RX_OVERRIDE,
3443 /* Tx activity timeout for LTR, in us */
3444 WMI_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
3445 /* L1SS state machine enable */
3446 WMI_PDEV_PARAM_L1SS_ENABLE,
3447 /* Deep sleep state machine enable */
3448 WMI_PDEV_PARAM_DSLEEP_ENABLE,
3449 /* RX buffering flush enable */
3450 WMI_PDEV_PARAM_PCIELP_TXBUF_FLUSH,
3451 /* RX buffering matermark */
3452 WMI_PDEV_PARAM_PCIELP_TXBUF_WATERMARK,
3453 /* RX buffering timeout enable */
3454 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_EN,
3455 /* RX buffering timeout value */
3456 WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE,
3457 /* pdev level stats update period in ms */
3458 WMI_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
3459 /* vdev level stats update period in ms */
3460 WMI_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
3461 /* peer level stats update period in ms */
3462 WMI_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
3463 /* beacon filter status update period */
3464 WMI_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
3465 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
3466 WMI_PDEV_PARAM_PMF_QOS,
3467 /* Access category on which ARP frames are sent */
3468 WMI_PDEV_PARAM_ARP_AC_OVERRIDE,
3469 /* DCS configuration */
3470 WMI_PDEV_PARAM_DCS,
3471 /* Enable/Disable ANI on target */
3472 WMI_PDEV_PARAM_ANI_ENABLE,
3473 /* configure the ANI polling period */
3474 WMI_PDEV_PARAM_ANI_POLL_PERIOD,
3475 /* configure the ANI listening period */
3476 WMI_PDEV_PARAM_ANI_LISTEN_PERIOD,
3477 /* configure OFDM immunity level */
3478 WMI_PDEV_PARAM_ANI_OFDM_LEVEL,
3479 /* configure CCK immunity level */
3480 WMI_PDEV_PARAM_ANI_CCK_LEVEL,
3481 /* Enable/Disable CDD for 1x1 STAs in rate control module */
3482 WMI_PDEV_PARAM_DYNTXCHAIN,
3483 /* Enable/Disable proxy STA */
3484 WMI_PDEV_PARAM_PROXY_STA,
3485 /* Enable/Disable low power state when all VDEVs are inactive/idle. */
3486 WMI_PDEV_PARAM_IDLE_PS_CONFIG,
3487 /* Enable/Disable power gating sleep */
3488 WMI_PDEV_PARAM_POWER_GATING_SLEEP,
3489};
3490
Bartosz Markowski226a3392013-09-26 17:47:16 +02003491enum wmi_10x_pdev_param {
3492 /* TX chian mask */
3493 WMI_10X_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
3494 /* RX chian mask */
3495 WMI_10X_PDEV_PARAM_RX_CHAIN_MASK,
3496 /* TX power limit for 2G Radio */
3497 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT2G,
3498 /* TX power limit for 5G Radio */
3499 WMI_10X_PDEV_PARAM_TXPOWER_LIMIT5G,
3500 /* TX power scale */
3501 WMI_10X_PDEV_PARAM_TXPOWER_SCALE,
3502 /* Beacon generation mode . 0: host, 1: target */
3503 WMI_10X_PDEV_PARAM_BEACON_GEN_MODE,
3504 /* Beacon generation mode . 0: staggered 1: bursted */
3505 WMI_10X_PDEV_PARAM_BEACON_TX_MODE,
3506 /*
3507 * Resource manager off chan mode .
3508 * 0: turn off off chan mode. 1: turn on offchan mode
3509 */
3510 WMI_10X_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
3511 /*
3512 * Protection mode:
3513 * 0: no protection 1:use CTS-to-self 2: use RTS/CTS
3514 */
3515 WMI_10X_PDEV_PARAM_PROTECTION_MODE,
3516 /* Dynamic bandwidth 0: disable 1: enable */
3517 WMI_10X_PDEV_PARAM_DYNAMIC_BW,
3518 /* Non aggregrate/ 11g sw retry threshold.0-disable */
3519 WMI_10X_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
3520 /* aggregrate sw retry threshold. 0-disable*/
3521 WMI_10X_PDEV_PARAM_AGG_SW_RETRY_TH,
3522 /* Station kickout threshold (non of consecutive failures).0-disable */
3523 WMI_10X_PDEV_PARAM_STA_KICKOUT_TH,
3524 /* Aggerate size scaling configuration per AC */
3525 WMI_10X_PDEV_PARAM_AC_AGGRSIZE_SCALING,
3526 /* LTR enable */
3527 WMI_10X_PDEV_PARAM_LTR_ENABLE,
3528 /* LTR latency for BE, in us */
3529 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BE,
3530 /* LTR latency for BK, in us */
3531 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BK,
3532 /* LTR latency for VI, in us */
3533 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VI,
3534 /* LTR latency for VO, in us */
3535 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VO,
3536 /* LTR AC latency timeout, in ms */
3537 WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
3538 /* LTR platform latency override, in us */
3539 WMI_10X_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
3540 /* LTR-RX override, in us */
3541 WMI_10X_PDEV_PARAM_LTR_RX_OVERRIDE,
3542 /* Tx activity timeout for LTR, in us */
3543 WMI_10X_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
3544 /* L1SS state machine enable */
3545 WMI_10X_PDEV_PARAM_L1SS_ENABLE,
3546 /* Deep sleep state machine enable */
3547 WMI_10X_PDEV_PARAM_DSLEEP_ENABLE,
3548 /* pdev level stats update period in ms */
3549 WMI_10X_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
3550 /* vdev level stats update period in ms */
3551 WMI_10X_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
3552 /* peer level stats update period in ms */
3553 WMI_10X_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
3554 /* beacon filter status update period */
3555 WMI_10X_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
3556 /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */
3557 WMI_10X_PDEV_PARAM_PMF_QOS,
3558 /* Access category on which ARP and DHCP frames are sent */
3559 WMI_10X_PDEV_PARAM_ARPDHCP_AC_OVERRIDE,
3560 /* DCS configuration */
3561 WMI_10X_PDEV_PARAM_DCS,
3562 /* Enable/Disable ANI on target */
3563 WMI_10X_PDEV_PARAM_ANI_ENABLE,
3564 /* configure the ANI polling period */
3565 WMI_10X_PDEV_PARAM_ANI_POLL_PERIOD,
3566 /* configure the ANI listening period */
3567 WMI_10X_PDEV_PARAM_ANI_LISTEN_PERIOD,
3568 /* configure OFDM immunity level */
3569 WMI_10X_PDEV_PARAM_ANI_OFDM_LEVEL,
3570 /* configure CCK immunity level */
3571 WMI_10X_PDEV_PARAM_ANI_CCK_LEVEL,
3572 /* Enable/Disable CDD for 1x1 STAs in rate control module */
3573 WMI_10X_PDEV_PARAM_DYNTXCHAIN,
3574 /* Enable/Disable Fast channel reset*/
3575 WMI_10X_PDEV_PARAM_FAST_CHANNEL_RESET,
3576 /* Set Bursting DUR */
3577 WMI_10X_PDEV_PARAM_BURST_DUR,
3578 /* Set Bursting Enable*/
3579 WMI_10X_PDEV_PARAM_BURST_ENABLE,
Michal Kazior24c88f72014-07-25 13:32:17 +02003580
3581 /* following are available as of firmware 10.2 */
3582 WMI_10X_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA,
3583 WMI_10X_PDEV_PARAM_IGMPMLD_OVERRIDE,
3584 WMI_10X_PDEV_PARAM_IGMPMLD_TID,
3585 WMI_10X_PDEV_PARAM_ANTENNA_GAIN,
3586 WMI_10X_PDEV_PARAM_RX_DECAP_MODE,
3587 WMI_10X_PDEV_PARAM_RX_FILTER,
3588 WMI_10X_PDEV_PARAM_SET_MCAST_TO_UCAST_TID,
3589 WMI_10X_PDEV_PARAM_PROXY_STA_MODE,
3590 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_MODE,
3591 WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_BUFFER,
3592 WMI_10X_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER,
Peter Ohb43bf972014-12-02 13:06:53 +02003593 WMI_10X_PDEV_PARAM_PEER_STA_PS_STATECHG_ENABLE,
3594 WMI_10X_PDEV_PARAM_RTS_FIXED_RATE,
3595 WMI_10X_PDEV_PARAM_CAL_PERIOD
Bartosz Markowski226a3392013-09-26 17:47:16 +02003596};
3597
Raja Manid86561f2015-06-22 20:10:14 +05303598enum wmi_10_4_pdev_param {
3599 WMI_10_4_PDEV_PARAM_TX_CHAIN_MASK = 0x1,
3600 WMI_10_4_PDEV_PARAM_RX_CHAIN_MASK,
3601 WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT2G,
3602 WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT5G,
3603 WMI_10_4_PDEV_PARAM_TXPOWER_SCALE,
3604 WMI_10_4_PDEV_PARAM_BEACON_GEN_MODE,
3605 WMI_10_4_PDEV_PARAM_BEACON_TX_MODE,
3606 WMI_10_4_PDEV_PARAM_RESMGR_OFFCHAN_MODE,
3607 WMI_10_4_PDEV_PARAM_PROTECTION_MODE,
3608 WMI_10_4_PDEV_PARAM_DYNAMIC_BW,
3609 WMI_10_4_PDEV_PARAM_NON_AGG_SW_RETRY_TH,
3610 WMI_10_4_PDEV_PARAM_AGG_SW_RETRY_TH,
3611 WMI_10_4_PDEV_PARAM_STA_KICKOUT_TH,
3612 WMI_10_4_PDEV_PARAM_AC_AGGRSIZE_SCALING,
3613 WMI_10_4_PDEV_PARAM_LTR_ENABLE,
3614 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BE,
3615 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BK,
3616 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VI,
3617 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VO,
3618 WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT,
3619 WMI_10_4_PDEV_PARAM_LTR_SLEEP_OVERRIDE,
3620 WMI_10_4_PDEV_PARAM_LTR_RX_OVERRIDE,
3621 WMI_10_4_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT,
3622 WMI_10_4_PDEV_PARAM_L1SS_ENABLE,
3623 WMI_10_4_PDEV_PARAM_DSLEEP_ENABLE,
3624 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_FLUSH,
3625 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_WATERMARK,
3626 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_EN,
3627 WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE,
3628 WMI_10_4_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD,
3629 WMI_10_4_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD,
3630 WMI_10_4_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD,
3631 WMI_10_4_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD,
3632 WMI_10_4_PDEV_PARAM_PMF_QOS,
3633 WMI_10_4_PDEV_PARAM_ARP_AC_OVERRIDE,
3634 WMI_10_4_PDEV_PARAM_DCS,
3635 WMI_10_4_PDEV_PARAM_ANI_ENABLE,
3636 WMI_10_4_PDEV_PARAM_ANI_POLL_PERIOD,
3637 WMI_10_4_PDEV_PARAM_ANI_LISTEN_PERIOD,
3638 WMI_10_4_PDEV_PARAM_ANI_OFDM_LEVEL,
3639 WMI_10_4_PDEV_PARAM_ANI_CCK_LEVEL,
3640 WMI_10_4_PDEV_PARAM_DYNTXCHAIN,
3641 WMI_10_4_PDEV_PARAM_PROXY_STA,
3642 WMI_10_4_PDEV_PARAM_IDLE_PS_CONFIG,
3643 WMI_10_4_PDEV_PARAM_POWER_GATING_SLEEP,
3644 WMI_10_4_PDEV_PARAM_AGGR_BURST,
3645 WMI_10_4_PDEV_PARAM_RX_DECAP_MODE,
3646 WMI_10_4_PDEV_PARAM_FAST_CHANNEL_RESET,
3647 WMI_10_4_PDEV_PARAM_BURST_DUR,
3648 WMI_10_4_PDEV_PARAM_BURST_ENABLE,
3649 WMI_10_4_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA,
3650 WMI_10_4_PDEV_PARAM_IGMPMLD_OVERRIDE,
3651 WMI_10_4_PDEV_PARAM_IGMPMLD_TID,
3652 WMI_10_4_PDEV_PARAM_ANTENNA_GAIN,
3653 WMI_10_4_PDEV_PARAM_RX_FILTER,
3654 WMI_10_4_PDEV_SET_MCAST_TO_UCAST_TID,
3655 WMI_10_4_PDEV_PARAM_PROXY_STA_MODE,
3656 WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_MODE,
3657 WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_BUFFER,
3658 WMI_10_4_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER,
3659 WMI_10_4_PDEV_PEER_STA_PS_STATECHG_ENABLE,
3660 WMI_10_4_PDEV_PARAM_IGMPMLD_AC_OVERRIDE,
3661 WMI_10_4_PDEV_PARAM_BLOCK_INTERBSS,
3662 WMI_10_4_PDEV_PARAM_SET_DISABLE_RESET_CMDID,
3663 WMI_10_4_PDEV_PARAM_SET_MSDU_TTL_CMDID,
3664 WMI_10_4_PDEV_PARAM_SET_PPDU_DURATION_CMDID,
3665 WMI_10_4_PDEV_PARAM_TXBF_SOUND_PERIOD_CMDID,
3666 WMI_10_4_PDEV_PARAM_SET_PROMISC_MODE_CMDID,
3667 WMI_10_4_PDEV_PARAM_SET_BURST_MODE_CMDID,
3668 WMI_10_4_PDEV_PARAM_EN_STATS,
3669 WMI_10_4_PDEV_PARAM_MU_GROUP_POLICY,
3670 WMI_10_4_PDEV_PARAM_NOISE_DETECTION,
3671 WMI_10_4_PDEV_PARAM_NOISE_THRESHOLD,
3672 WMI_10_4_PDEV_PARAM_DPD_ENABLE,
3673 WMI_10_4_PDEV_PARAM_SET_MCAST_BCAST_ECHO,
3674 WMI_10_4_PDEV_PARAM_ATF_STRICT_SCH,
3675 WMI_10_4_PDEV_PARAM_ATF_SCHED_DURATION,
3676 WMI_10_4_PDEV_PARAM_ANT_PLZN,
3677 WMI_10_4_PDEV_PARAM_MGMT_RETRY_LIMIT,
3678 WMI_10_4_PDEV_PARAM_SENSITIVITY_LEVEL,
3679 WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_2G,
3680 WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_5G,
3681 WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMSDU,
3682 WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMPDU,
3683 WMI_10_4_PDEV_PARAM_CCA_THRESHOLD,
3684 WMI_10_4_PDEV_PARAM_RTS_FIXED_RATE,
3685 WMI_10_4_PDEV_PARAM_CAL_PERIOD,
3686 WMI_10_4_PDEV_PARAM_PDEV_RESET,
3687 WMI_10_4_PDEV_PARAM_WAPI_MBSSID_OFFSET,
3688 WMI_10_4_PDEV_PARAM_ARP_SRCADDR,
3689 WMI_10_4_PDEV_PARAM_ARP_DSTADDR,
Vasanthakumar Thiagarajan52e8ce12015-10-29 19:11:34 +05303690 WMI_10_4_PDEV_PARAM_TXPOWER_DECR_DB,
3691 WMI_10_4_PDEV_PARAM_RX_BATCHMODE,
3692 WMI_10_4_PDEV_PARAM_PACKET_AGGR_DELAY,
3693 WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCH,
3694 WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCALING_FACTOR,
3695 WMI_10_4_PDEV_PARAM_CUST_TXPOWER_SCALE,
Raja Manid86561f2015-06-22 20:10:14 +05303696};
3697
Kalle Valo5e3dd152013-06-12 20:52:10 +03003698struct wmi_pdev_set_param_cmd {
3699 __le32 param_id;
3700 __le32 param_value;
3701} __packed;
3702
Peter Oha7bd3e92014-12-02 13:07:14 +02003703/* valid period is 1 ~ 60000ms, unit in millisecond */
3704#define WMI_PDEV_PARAM_CAL_PERIOD_MAX 60000
3705
Kalle Valo5e3dd152013-06-12 20:52:10 +03003706struct wmi_pdev_get_tpc_config_cmd {
3707 /* parameter */
3708 __le32 param;
3709} __packed;
3710
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03003711#define WMI_TPC_CONFIG_PARAM 1
Kalle Valo5e3dd152013-06-12 20:52:10 +03003712#define WMI_TPC_RATE_MAX 160
3713#define WMI_TPC_TX_N_CHAIN 4
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03003714#define WMI_TPC_PREAM_TABLE_MAX 10
3715#define WMI_TPC_FLAG 3
3716#define WMI_TPC_BUF_SIZE 10
3717
3718enum wmi_tpc_table_type {
3719 WMI_TPC_TABLE_TYPE_CDD = 0,
3720 WMI_TPC_TABLE_TYPE_STBC = 1,
3721 WMI_TPC_TABLE_TYPE_TXBF = 2,
3722};
Kalle Valo5e3dd152013-06-12 20:52:10 +03003723
3724enum wmi_tpc_config_event_flag {
3725 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_CDD = 0x1,
3726 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_STBC = 0x2,
3727 WMI_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF = 0x4,
3728};
3729
3730struct wmi_pdev_tpc_config_event {
3731 __le32 reg_domain;
3732 __le32 chan_freq;
3733 __le32 phy_mode;
3734 __le32 twice_antenna_reduction;
3735 __le32 twice_max_rd_power;
Kalle Valo3b8fc902015-10-05 17:56:37 +03003736 a_sle32 twice_antenna_gain;
Kalle Valo5e3dd152013-06-12 20:52:10 +03003737 __le32 power_limit;
3738 __le32 rate_max;
3739 __le32 num_tx_chain;
3740 __le32 ctl;
3741 __le32 flags;
3742 s8 max_reg_allow_pow[WMI_TPC_TX_N_CHAIN];
3743 s8 max_reg_allow_pow_agcdd[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
3744 s8 max_reg_allow_pow_agstbc[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
3745 s8 max_reg_allow_pow_agtxbf[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN];
3746 u8 rates_array[WMI_TPC_RATE_MAX];
3747} __packed;
3748
3749/* Transmit power scale factor. */
3750enum wmi_tp_scale {
3751 WMI_TP_SCALE_MAX = 0, /* no scaling (default) */
3752 WMI_TP_SCALE_50 = 1, /* 50% of max (-3 dBm) */
3753 WMI_TP_SCALE_25 = 2, /* 25% of max (-6 dBm) */
3754 WMI_TP_SCALE_12 = 3, /* 12% of max (-9 dBm) */
3755 WMI_TP_SCALE_MIN = 4, /* min, but still on */
3756 WMI_TP_SCALE_SIZE = 5, /* max num of enum */
3757};
3758
Kalle Valo5e3dd152013-06-12 20:52:10 +03003759struct wmi_pdev_chanlist_update_event {
3760 /* number of channels */
3761 __le32 num_chan;
3762 /* array of channels */
3763 struct wmi_channel channel_list[1];
3764} __packed;
3765
3766#define WMI_MAX_DEBUG_MESG (sizeof(u32) * 32)
3767
3768struct wmi_debug_mesg_event {
3769 /* message buffer, NULL terminated */
3770 char bufp[WMI_MAX_DEBUG_MESG];
3771} __packed;
3772
3773enum {
3774 /* P2P device */
3775 VDEV_SUBTYPE_P2PDEV = 0,
3776 /* P2P client */
3777 VDEV_SUBTYPE_P2PCLI,
3778 /* P2P GO */
3779 VDEV_SUBTYPE_P2PGO,
3780 /* BT3.0 HS */
3781 VDEV_SUBTYPE_BT,
3782};
3783
3784struct wmi_pdev_set_channel_cmd {
3785 /* idnore power , only use flags , mode and freq */
3786 struct wmi_channel chan;
3787} __packed;
3788
Rajkumar Manoharan90174452014-10-03 08:02:33 +03003789struct wmi_pdev_pktlog_enable_cmd {
3790 __le32 ev_bitmap;
3791} __packed;
3792
Kalle Valo5e3dd152013-06-12 20:52:10 +03003793/* Customize the DSCP (bit) to TID (0-7) mapping for QOS */
3794#define WMI_DSCP_MAP_MAX (64)
3795struct wmi_pdev_set_dscp_tid_map_cmd {
3796 /* map indicating DSCP to TID conversion */
3797 __le32 dscp_to_tid_map[WMI_DSCP_MAP_MAX];
3798} __packed;
3799
3800enum mcast_bcast_rate_id {
3801 WMI_SET_MCAST_RATE,
3802 WMI_SET_BCAST_RATE
3803};
3804
3805struct mcast_bcast_rate {
3806 enum mcast_bcast_rate_id rate_id;
3807 __le32 rate;
3808} __packed;
3809
3810struct wmi_wmm_params {
3811 __le32 cwmin;
3812 __le32 cwmax;
3813 __le32 aifs;
3814 __le32 txop;
3815 __le32 acm;
3816 __le32 no_ack;
3817} __packed;
3818
3819struct wmi_pdev_set_wmm_params {
3820 struct wmi_wmm_params ac_be;
3821 struct wmi_wmm_params ac_bk;
3822 struct wmi_wmm_params ac_vi;
3823 struct wmi_wmm_params ac_vo;
3824} __packed;
3825
3826struct wmi_wmm_params_arg {
3827 u32 cwmin;
3828 u32 cwmax;
3829 u32 aifs;
3830 u32 txop;
3831 u32 acm;
3832 u32 no_ack;
3833};
3834
Michal Kazior5e752e42015-01-19 09:53:41 +01003835struct wmi_wmm_params_all_arg {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003836 struct wmi_wmm_params_arg ac_be;
3837 struct wmi_wmm_params_arg ac_bk;
3838 struct wmi_wmm_params_arg ac_vi;
3839 struct wmi_wmm_params_arg ac_vo;
3840};
3841
Michal Kaziorb91251f2015-01-24 12:14:49 +02003842struct wmi_pdev_stats_tx {
Kalle Valo5e3dd152013-06-12 20:52:10 +03003843 /* Num HTT cookies queued to dispatch list */
3844 __le32 comp_queued;
3845
3846 /* Num HTT cookies dispatched */
3847 __le32 comp_delivered;
3848
3849 /* Num MSDU queued to WAL */
3850 __le32 msdu_enqued;
3851
3852 /* Num MPDU queue to WAL */
3853 __le32 mpdu_enqued;
3854
3855 /* Num MSDUs dropped by WMM limit */
3856 __le32 wmm_drop;
3857
3858 /* Num Local frames queued */
3859 __le32 local_enqued;
3860
3861 /* Num Local frames done */
3862 __le32 local_freed;
3863
3864 /* Num queued to HW */
3865 __le32 hw_queued;
3866
3867 /* Num PPDU reaped from HW */
3868 __le32 hw_reaped;
3869
3870 /* Num underruns */
3871 __le32 underrun;
3872
3873 /* Num PPDUs cleaned up in TX abort */
3874 __le32 tx_abort;
3875
3876 /* Num MPDUs requed by SW */
3877 __le32 mpdus_requed;
3878
3879 /* excessive retries */
3880 __le32 tx_ko;
3881
3882 /* data hw rate code */
3883 __le32 data_rc;
3884
3885 /* Scheduler self triggers */
3886 __le32 self_triggers;
3887
3888 /* frames dropped due to excessive sw retries */
3889 __le32 sw_retry_failure;
3890
3891 /* illegal rate phy errors */
3892 __le32 illgl_rate_phy_err;
3893
3894 /* wal pdev continous xretry */
3895 __le32 pdev_cont_xretry;
3896
3897 /* wal pdev continous xretry */
3898 __le32 pdev_tx_timeout;
3899
3900 /* wal pdev resets */
3901 __le32 pdev_resets;
3902
Bartosz Markowski34d714e2014-03-28 14:35:16 +02003903 /* frames dropped due to non-availability of stateless TIDs */
3904 __le32 stateless_tid_alloc_failure;
3905
Kalle Valo5e3dd152013-06-12 20:52:10 +03003906 __le32 phy_underrun;
3907
3908 /* MPDU is more than txop limit */
3909 __le32 txop_ovf;
3910} __packed;
3911
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02003912struct wmi_10_4_pdev_stats_tx {
3913 /* Num HTT cookies queued to dispatch list */
3914 __le32 comp_queued;
3915
3916 /* Num HTT cookies dispatched */
3917 __le32 comp_delivered;
3918
3919 /* Num MSDU queued to WAL */
3920 __le32 msdu_enqued;
3921
3922 /* Num MPDU queue to WAL */
3923 __le32 mpdu_enqued;
3924
3925 /* Num MSDUs dropped by WMM limit */
3926 __le32 wmm_drop;
3927
3928 /* Num Local frames queued */
3929 __le32 local_enqued;
3930
3931 /* Num Local frames done */
3932 __le32 local_freed;
3933
3934 /* Num queued to HW */
3935 __le32 hw_queued;
3936
3937 /* Num PPDU reaped from HW */
3938 __le32 hw_reaped;
3939
3940 /* Num underruns */
3941 __le32 underrun;
3942
3943 /* HW Paused. */
3944 __le32 hw_paused;
3945
3946 /* Num PPDUs cleaned up in TX abort */
3947 __le32 tx_abort;
3948
3949 /* Num MPDUs requed by SW */
3950 __le32 mpdus_requed;
3951
3952 /* excessive retries */
3953 __le32 tx_ko;
3954
3955 /* data hw rate code */
3956 __le32 data_rc;
3957
3958 /* Scheduler self triggers */
3959 __le32 self_triggers;
3960
3961 /* frames dropped due to excessive sw retries */
3962 __le32 sw_retry_failure;
3963
3964 /* illegal rate phy errors */
3965 __le32 illgl_rate_phy_err;
3966
3967 /* wal pdev continuous xretry */
3968 __le32 pdev_cont_xretry;
3969
3970 /* wal pdev tx timeouts */
3971 __le32 pdev_tx_timeout;
3972
3973 /* wal pdev resets */
3974 __le32 pdev_resets;
3975
3976 /* frames dropped due to non-availability of stateless TIDs */
3977 __le32 stateless_tid_alloc_failure;
3978
3979 __le32 phy_underrun;
3980
3981 /* MPDU is more than txop limit */
3982 __le32 txop_ovf;
3983
3984 /* Number of Sequences posted */
3985 __le32 seq_posted;
3986
3987 /* Number of Sequences failed queueing */
3988 __le32 seq_failed_queueing;
3989
3990 /* Number of Sequences completed */
3991 __le32 seq_completed;
3992
3993 /* Number of Sequences restarted */
3994 __le32 seq_restarted;
3995
3996 /* Number of MU Sequences posted */
3997 __le32 mu_seq_posted;
3998
3999 /* Num MPDUs flushed by SW, HWPAUSED,SW TXABORT(Reset,channel change) */
4000 __le32 mpdus_sw_flush;
4001
4002 /* Num MPDUs filtered by HW, all filter condition (TTL expired) */
4003 __le32 mpdus_hw_filter;
4004
4005 /* Num MPDUs truncated by PDG
4006 * (TXOP, TBTT, PPDU_duration based on rate, dyn_bw)
4007 */
4008 __le32 mpdus_truncated;
4009
4010 /* Num MPDUs that was tried but didn't receive ACK or BA */
4011 __le32 mpdus_ack_failed;
4012
4013 /* Num MPDUs that was dropped due to expiry. */
4014 __le32 mpdus_expired;
4015} __packed;
4016
Michal Kaziorb91251f2015-01-24 12:14:49 +02004017struct wmi_pdev_stats_rx {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004018 /* Cnts any change in ring routing mid-ppdu */
4019 __le32 mid_ppdu_route_change;
4020
4021 /* Total number of statuses processed */
4022 __le32 status_rcvd;
4023
4024 /* Extra frags on rings 0-3 */
4025 __le32 r0_frags;
4026 __le32 r1_frags;
4027 __le32 r2_frags;
4028 __le32 r3_frags;
4029
4030 /* MSDUs / MPDUs delivered to HTT */
4031 __le32 htt_msdus;
4032 __le32 htt_mpdus;
4033
4034 /* MSDUs / MPDUs delivered to local stack */
4035 __le32 loc_msdus;
4036 __le32 loc_mpdus;
4037
4038 /* AMSDUs that have more MSDUs than the status ring size */
4039 __le32 oversize_amsdu;
4040
4041 /* Number of PHY errors */
4042 __le32 phy_errs;
4043
4044 /* Number of PHY errors drops */
4045 __le32 phy_err_drop;
4046
4047 /* Number of mpdu errors - FCS, MIC, ENC etc. */
4048 __le32 mpdu_errs;
4049} __packed;
4050
Michal Kaziorb91251f2015-01-24 12:14:49 +02004051struct wmi_pdev_stats_peer {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004052 /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */
4053 __le32 dummy;
4054} __packed;
4055
Kalle Valo5e3dd152013-06-12 20:52:10 +03004056enum wmi_stats_id {
Michal Kazioreed55412015-02-15 16:50:41 +02004057 WMI_STAT_PEER = BIT(0),
4058 WMI_STAT_AP = BIT(1),
4059 WMI_STAT_PDEV = BIT(2),
4060 WMI_STAT_VDEV = BIT(3),
4061 WMI_STAT_BCNFLT = BIT(4),
4062 WMI_STAT_VDEV_RATE = BIT(5),
Kalle Valo5e3dd152013-06-12 20:52:10 +03004063};
4064
Ben Greeardb9cdda2014-03-28 14:35:15 +02004065struct wlan_inst_rssi_args {
4066 __le16 cfg_retry_count;
4067 __le16 retry_count;
4068};
4069
Kalle Valo5e3dd152013-06-12 20:52:10 +03004070struct wmi_request_stats_cmd {
4071 __le32 stats_id;
4072
Ben Greeardb9cdda2014-03-28 14:35:15 +02004073 __le32 vdev_id;
4074
4075 /* peer MAC address */
4076 struct wmi_mac_addr peer_macaddr;
4077
4078 /* Instantaneous RSSI arguments */
4079 struct wlan_inst_rssi_args inst_rssi_args;
Kalle Valo5e3dd152013-06-12 20:52:10 +03004080} __packed;
4081
4082/* Suspend option */
4083enum {
4084 /* suspend */
4085 WMI_PDEV_SUSPEND,
4086
4087 /* suspend and disable all interrupts */
4088 WMI_PDEV_SUSPEND_AND_DISABLE_INTR,
4089};
4090
4091struct wmi_pdev_suspend_cmd {
4092 /* suspend option sent to target */
4093 __le32 suspend_opt;
4094} __packed;
4095
4096struct wmi_stats_event {
Michal Kazioreed55412015-02-15 16:50:41 +02004097 __le32 stats_id; /* WMI_STAT_ */
Kalle Valo5e3dd152013-06-12 20:52:10 +03004098 /*
4099 * number of pdev stats event structures
4100 * (wmi_pdev_stats) 0 or 1
4101 */
4102 __le32 num_pdev_stats;
4103 /*
4104 * number of vdev stats event structures
4105 * (wmi_vdev_stats) 0 or max vdevs
4106 */
4107 __le32 num_vdev_stats;
4108 /*
4109 * number of peer stats event structures
4110 * (wmi_peer_stats) 0 or max peers
4111 */
4112 __le32 num_peer_stats;
4113 __le32 num_bcnflt_stats;
4114 /*
4115 * followed by
4116 * num_pdev_stats * size of(struct wmi_pdev_stats)
4117 * num_vdev_stats * size of(struct wmi_vdev_stats)
4118 * num_peer_stats * size of(struct wmi_peer_stats)
4119 *
4120 * By having a zero sized array, the pointer to data area
4121 * becomes available without increasing the struct size
4122 */
4123 u8 data[0];
4124} __packed;
4125
Michal Kazior20de2222015-01-24 12:14:49 +02004126struct wmi_10_2_stats_event {
4127 __le32 stats_id; /* %WMI_REQUEST_ */
4128 __le32 num_pdev_stats;
4129 __le32 num_pdev_ext_stats;
4130 __le32 num_vdev_stats;
4131 __le32 num_peer_stats;
4132 __le32 num_bcnflt_stats;
4133 u8 data[0];
4134} __packed;
4135
Kalle Valo5e3dd152013-06-12 20:52:10 +03004136/*
4137 * PDEV statistics
4138 * TODO: add all PDEV stats here
4139 */
Michal Kaziorb91251f2015-01-24 12:14:49 +02004140struct wmi_pdev_stats_base {
4141 __le32 chan_nf;
4142 __le32 tx_frame_count;
4143 __le32 rx_frame_count;
4144 __le32 rx_clear_count;
4145 __le32 cycle_count;
4146 __le32 phy_err_count;
4147 __le32 chan_tx_pwr;
Kalle Valo5e3dd152013-06-12 20:52:10 +03004148} __packed;
4149
Michal Kaziorb91251f2015-01-24 12:14:49 +02004150struct wmi_pdev_stats {
4151 struct wmi_pdev_stats_base base;
4152 struct wmi_pdev_stats_tx tx;
4153 struct wmi_pdev_stats_rx rx;
4154 struct wmi_pdev_stats_peer peer;
4155} __packed;
4156
4157struct wmi_pdev_stats_extra {
Chun-Yeow Yeoh52e346d2014-03-28 14:35:16 +02004158 __le32 ack_rx_bad;
4159 __le32 rts_bad;
4160 __le32 rts_good;
4161 __le32 fcs_bad;
4162 __le32 no_beacons;
4163 __le32 mib_int_count;
4164} __packed;
4165
Michal Kaziorb91251f2015-01-24 12:14:49 +02004166struct wmi_10x_pdev_stats {
4167 struct wmi_pdev_stats_base base;
4168 struct wmi_pdev_stats_tx tx;
4169 struct wmi_pdev_stats_rx rx;
4170 struct wmi_pdev_stats_peer peer;
4171 struct wmi_pdev_stats_extra extra;
4172} __packed;
4173
Michal Kazior20de2222015-01-24 12:14:49 +02004174struct wmi_pdev_stats_mem {
4175 __le32 dram_free;
4176 __le32 iram_free;
4177} __packed;
4178
4179struct wmi_10_2_pdev_stats {
4180 struct wmi_pdev_stats_base base;
4181 struct wmi_pdev_stats_tx tx;
4182 __le32 mc_drop;
4183 struct wmi_pdev_stats_rx rx;
4184 __le32 pdev_rx_timeout;
4185 struct wmi_pdev_stats_mem mem;
4186 struct wmi_pdev_stats_peer peer;
4187 struct wmi_pdev_stats_extra extra;
4188} __packed;
4189
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02004190struct wmi_10_4_pdev_stats {
4191 struct wmi_pdev_stats_base base;
4192 struct wmi_10_4_pdev_stats_tx tx;
4193 struct wmi_pdev_stats_rx rx;
4194 __le32 rx_ovfl_errs;
4195 struct wmi_pdev_stats_mem mem;
4196 __le32 sram_free_size;
4197 struct wmi_pdev_stats_extra extra;
4198} __packed;
4199
Kalle Valo5e3dd152013-06-12 20:52:10 +03004200/*
4201 * VDEV statistics
4202 * TODO: add all VDEV stats here
4203 */
4204struct wmi_vdev_stats {
4205 __le32 vdev_id;
4206} __packed;
4207
4208/*
4209 * peer statistics.
4210 * TODO: add more stats
4211 */
Michal Kaziord15fb522014-09-25 12:33:47 +02004212struct wmi_peer_stats {
Kalle Valo5e3dd152013-06-12 20:52:10 +03004213 struct wmi_mac_addr peer_macaddr;
4214 __le32 peer_rssi;
4215 __le32 peer_tx_rate;
4216} __packed;
4217
Michal Kaziord15fb522014-09-25 12:33:47 +02004218struct wmi_10x_peer_stats {
4219 struct wmi_peer_stats old;
Ben Greear23c3aae2014-03-28 14:35:15 +02004220 __le32 peer_rx_rate;
4221} __packed;
4222
Michal Kazior20de2222015-01-24 12:14:49 +02004223struct wmi_10_2_peer_stats {
4224 struct wmi_peer_stats old;
4225 __le32 peer_rx_rate;
4226 __le32 current_per;
4227 __le32 retries;
4228 __le32 tx_rate_count;
4229 __le32 max_4ms_frame_len;
4230 __le32 total_sub_frames;
4231 __le32 tx_bytes;
4232 __le32 num_pkt_loss_overflow[4];
4233 __le32 num_pkt_loss_excess_retry[4];
4234} __packed;
4235
4236struct wmi_10_2_4_peer_stats {
4237 struct wmi_10_2_peer_stats common;
Mohammed Shafi Shajakhan774e6562016-01-13 21:16:29 +05304238 __le32 peer_rssi_changed;
Michal Kazior20de2222015-01-24 12:14:49 +02004239} __packed;
4240
Mohammed Shafi Shajakhande46c012016-01-13 21:16:28 +05304241struct wmi_10_2_4_ext_peer_stats {
4242 struct wmi_10_2_peer_stats common;
4243 __le32 peer_rssi_changed;
4244 __le32 rx_duration;
4245} __packed;
4246
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02004247struct wmi_10_4_peer_stats {
4248 struct wmi_mac_addr peer_macaddr;
4249 __le32 peer_rssi;
4250 __le32 peer_rssi_seq_num;
4251 __le32 peer_tx_rate;
4252 __le32 peer_rx_rate;
4253 __le32 current_per;
4254 __le32 retries;
4255 __le32 tx_rate_count;
4256 __le32 max_4ms_frame_len;
4257 __le32 total_sub_frames;
4258 __le32 tx_bytes;
4259 __le32 num_pkt_loss_overflow[4];
4260 __le32 num_pkt_loss_excess_retry[4];
4261 __le32 peer_rssi_changed;
4262} __packed;
4263
Michal Kazior20de2222015-01-24 12:14:49 +02004264struct wmi_10_2_pdev_ext_stats {
4265 __le32 rx_rssi_comb;
4266 __le32 rx_rssi[4];
4267 __le32 rx_mcs[10];
4268 __le32 tx_mcs[10];
4269 __le32 ack_rssi;
4270} __packed;
4271
Kalle Valo5e3dd152013-06-12 20:52:10 +03004272struct wmi_vdev_create_cmd {
4273 __le32 vdev_id;
4274 __le32 vdev_type;
4275 __le32 vdev_subtype;
4276 struct wmi_mac_addr vdev_macaddr;
4277} __packed;
4278
4279enum wmi_vdev_type {
4280 WMI_VDEV_TYPE_AP = 1,
4281 WMI_VDEV_TYPE_STA = 2,
4282 WMI_VDEV_TYPE_IBSS = 3,
4283 WMI_VDEV_TYPE_MONITOR = 4,
4284};
4285
4286enum wmi_vdev_subtype {
4287 WMI_VDEV_SUBTYPE_NONE = 0,
4288 WMI_VDEV_SUBTYPE_P2P_DEVICE = 1,
4289 WMI_VDEV_SUBTYPE_P2P_CLIENT = 2,
4290 WMI_VDEV_SUBTYPE_P2P_GO = 3,
Peter Oh42e08fe2015-11-24 09:37:34 -08004291 WMI_VDEV_SUBTYPE_PROXY_STA = 4,
Peter Oh0b3d76e2016-01-28 13:54:07 -08004292 WMI_VDEV_SUBTYPE_MESH_11S = 5,
Kalle Valo5e3dd152013-06-12 20:52:10 +03004293};
4294
4295/* values for vdev_subtype */
4296
4297/* values for vdev_start_request flags */
4298/*
4299 * Indicates that AP VDEV uses hidden ssid. only valid for
4300 * AP/GO */
4301#define WMI_VDEV_START_HIDDEN_SSID (1<<0)
4302/*
4303 * Indicates if robust management frame/management frame
4304 * protection is enabled. For GO/AP vdevs, it indicates that
4305 * it may support station/client associations with RMF enabled.
4306 * For STA/client vdevs, it indicates that sta will
4307 * associate with AP with RMF enabled. */
4308#define WMI_VDEV_START_PMF_ENABLED (1<<1)
4309
4310struct wmi_p2p_noa_descriptor {
4311 __le32 type_count; /* 255: continuous schedule, 0: reserved */
4312 __le32 duration; /* Absent period duration in micro seconds */
4313 __le32 interval; /* Absent period interval in micro seconds */
4314 __le32 start_time; /* 32 bit tsf time when in starts */
4315} __packed;
4316
4317struct wmi_vdev_start_request_cmd {
4318 /* WMI channel */
4319 struct wmi_channel chan;
4320 /* unique id identifying the VDEV, generated by the caller */
4321 __le32 vdev_id;
4322 /* requestor id identifying the caller module */
4323 __le32 requestor_id;
4324 /* beacon interval from received beacon */
4325 __le32 beacon_interval;
4326 /* DTIM Period from the received beacon */
4327 __le32 dtim_period;
4328 /* Flags */
4329 __le32 flags;
4330 /* ssid field. Only valid for AP/GO/IBSS/BTAmp VDEV type. */
4331 struct wmi_ssid ssid;
4332 /* beacon/probe reponse xmit rate. Applicable for SoftAP. */
4333 __le32 bcn_tx_rate;
4334 /* beacon/probe reponse xmit power. Applicable for SoftAP. */
4335 __le32 bcn_tx_power;
4336 /* number of p2p NOA descriptor(s) from scan entry */
4337 __le32 num_noa_descriptors;
4338 /*
4339 * Disable H/W ack. This used by WMI_VDEV_RESTART_REQUEST_CMDID.
4340 * During CAC, Our HW shouldn't ack ditected frames
4341 */
4342 __le32 disable_hw_ack;
4343 /* actual p2p NOA descriptor from scan entry */
4344 struct wmi_p2p_noa_descriptor noa_descriptors[2];
4345} __packed;
4346
4347struct wmi_vdev_restart_request_cmd {
4348 struct wmi_vdev_start_request_cmd vdev_start_request_cmd;
4349} __packed;
4350
4351struct wmi_vdev_start_request_arg {
4352 u32 vdev_id;
4353 struct wmi_channel_arg channel;
4354 u32 bcn_intval;
4355 u32 dtim_period;
4356 u8 *ssid;
4357 u32 ssid_len;
4358 u32 bcn_tx_rate;
4359 u32 bcn_tx_power;
4360 bool disable_hw_ack;
4361 bool hidden_ssid;
4362 bool pmf_enabled;
4363};
4364
4365struct wmi_vdev_delete_cmd {
4366 /* unique id identifying the VDEV, generated by the caller */
4367 __le32 vdev_id;
4368} __packed;
4369
4370struct wmi_vdev_up_cmd {
4371 __le32 vdev_id;
4372 __le32 vdev_assoc_id;
4373 struct wmi_mac_addr vdev_bssid;
4374} __packed;
4375
4376struct wmi_vdev_stop_cmd {
4377 __le32 vdev_id;
4378} __packed;
4379
4380struct wmi_vdev_down_cmd {
4381 __le32 vdev_id;
4382} __packed;
4383
4384struct wmi_vdev_standby_response_cmd {
4385 /* unique id identifying the VDEV, generated by the caller */
4386 __le32 vdev_id;
4387} __packed;
4388
4389struct wmi_vdev_resume_response_cmd {
4390 /* unique id identifying the VDEV, generated by the caller */
4391 __le32 vdev_id;
4392} __packed;
4393
4394struct wmi_vdev_set_param_cmd {
4395 __le32 vdev_id;
4396 __le32 param_id;
4397 __le32 param_value;
4398} __packed;
4399
4400#define WMI_MAX_KEY_INDEX 3
4401#define WMI_MAX_KEY_LEN 32
4402
4403#define WMI_KEY_PAIRWISE 0x00
4404#define WMI_KEY_GROUP 0x01
4405#define WMI_KEY_TX_USAGE 0x02 /* default tx key - static wep */
4406
4407struct wmi_key_seq_counter {
4408 __le32 key_seq_counter_l;
4409 __le32 key_seq_counter_h;
4410} __packed;
4411
4412#define WMI_CIPHER_NONE 0x0 /* clear key */
4413#define WMI_CIPHER_WEP 0x1
4414#define WMI_CIPHER_TKIP 0x2
4415#define WMI_CIPHER_AES_OCB 0x3
4416#define WMI_CIPHER_AES_CCM 0x4
4417#define WMI_CIPHER_WAPI 0x5
4418#define WMI_CIPHER_CKIP 0x6
4419#define WMI_CIPHER_AES_CMAC 0x7
4420
4421struct wmi_vdev_install_key_cmd {
4422 __le32 vdev_id;
4423 struct wmi_mac_addr peer_macaddr;
4424 __le32 key_idx;
4425 __le32 key_flags;
4426 __le32 key_cipher; /* %WMI_CIPHER_ */
4427 struct wmi_key_seq_counter key_rsc_counter;
4428 struct wmi_key_seq_counter key_global_rsc_counter;
4429 struct wmi_key_seq_counter key_tsc_counter;
4430 u8 wpi_key_rsc_counter[16];
4431 u8 wpi_key_tsc_counter[16];
4432 __le32 key_len;
4433 __le32 key_txmic_len;
4434 __le32 key_rxmic_len;
4435
4436 /* contains key followed by tx mic followed by rx mic */
4437 u8 key_data[0];
4438} __packed;
4439
4440struct wmi_vdev_install_key_arg {
4441 u32 vdev_id;
4442 const u8 *macaddr;
4443 u32 key_idx;
4444 u32 key_flags;
4445 u32 key_cipher;
4446 u32 key_len;
4447 u32 key_txmic_len;
4448 u32 key_rxmic_len;
4449 const void *key_data;
4450};
4451
Janusz Dziedzic51ab1a02014-01-08 09:08:33 +01004452/*
4453 * vdev fixed rate format:
4454 * - preamble - b7:b6 - see WMI_RATE_PREMABLE_
4455 * - nss - b5:b4 - ss number (0 mean 1ss)
4456 * - rate_mcs - b3:b0 - as below
4457 * CCK: 0 - 11Mbps, 1 - 5,5Mbps, 2 - 2Mbps, 3 - 1Mbps,
4458 * 4 - 11Mbps (s), 5 - 5,5Mbps (s), 6 - 2Mbps (s)
4459 * OFDM: 0 - 48Mbps, 1 - 24Mbps, 2 - 12Mbps, 3 - 6Mbps,
4460 * 4 - 54Mbps, 5 - 36Mbps, 6 - 18Mbps, 7 - 9Mbps
4461 * HT/VHT: MCS index
4462 */
4463
Kalle Valo5e3dd152013-06-12 20:52:10 +03004464/* Preamble types to be used with VDEV fixed rate configuration */
4465enum wmi_rate_preamble {
4466 WMI_RATE_PREAMBLE_OFDM,
4467 WMI_RATE_PREAMBLE_CCK,
4468 WMI_RATE_PREAMBLE_HT,
4469 WMI_RATE_PREAMBLE_VHT,
4470};
4471
Maharaja Kennadyrajan29542662015-10-05 17:56:38 +03004472#define ATH10K_HW_NSS(rate) (1 + (((rate) >> 4) & 0x3))
4473#define ATH10K_HW_PREAMBLE(rate) (((rate) >> 6) & 0x3)
4474#define ATH10K_HW_RATECODE(rate, nss, preamble) \
4475 (((preamble) << 6) | ((nss) << 4) | (rate))
4476
Kalle Valo5e3dd152013-06-12 20:52:10 +03004477/* Value to disable fixed rate setting */
4478#define WMI_FIXED_RATE_NONE (0xff)
4479
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02004480struct wmi_vdev_param_map {
4481 u32 rts_threshold;
4482 u32 fragmentation_threshold;
4483 u32 beacon_interval;
4484 u32 listen_interval;
4485 u32 multicast_rate;
4486 u32 mgmt_tx_rate;
4487 u32 slot_time;
4488 u32 preamble;
4489 u32 swba_time;
4490 u32 wmi_vdev_stats_update_period;
4491 u32 wmi_vdev_pwrsave_ageout_time;
4492 u32 wmi_vdev_host_swba_interval;
4493 u32 dtim_period;
4494 u32 wmi_vdev_oc_scheduler_air_time_limit;
4495 u32 wds;
4496 u32 atim_window;
4497 u32 bmiss_count_max;
4498 u32 bmiss_first_bcnt;
4499 u32 bmiss_final_bcnt;
4500 u32 feature_wmm;
4501 u32 chwidth;
4502 u32 chextoffset;
4503 u32 disable_htprotection;
4504 u32 sta_quickkickout;
4505 u32 mgmt_rate;
4506 u32 protection_mode;
4507 u32 fixed_rate;
4508 u32 sgi;
4509 u32 ldpc;
4510 u32 tx_stbc;
4511 u32 rx_stbc;
4512 u32 intra_bss_fwd;
4513 u32 def_keyid;
4514 u32 nss;
4515 u32 bcast_data_rate;
4516 u32 mcast_data_rate;
4517 u32 mcast_indicate;
4518 u32 dhcp_indicate;
4519 u32 unknown_dest_indicate;
4520 u32 ap_keepalive_min_idle_inactive_time_secs;
4521 u32 ap_keepalive_max_idle_inactive_time_secs;
4522 u32 ap_keepalive_max_unresponsive_time_secs;
4523 u32 ap_enable_nawds;
4524 u32 mcast2ucast_set;
4525 u32 enable_rtscts;
4526 u32 txbf;
4527 u32 packet_powersave;
4528 u32 drop_unencry;
4529 u32 tx_encap_type;
4530 u32 ap_detect_out_of_sync_sleeping_sta_time_secs;
Raja Mani93841a12015-06-22 20:10:13 +05304531 u32 rc_num_retries;
4532 u32 cabq_maxdur;
4533 u32 mfptest_set;
4534 u32 rts_fixed_rate;
4535 u32 vht_sgimask;
4536 u32 vht80_ratemask;
4537 u32 early_rx_adjust_enable;
4538 u32 early_rx_tgt_bmiss_num;
4539 u32 early_rx_bmiss_sample_cycle;
4540 u32 early_rx_slop_step;
4541 u32 early_rx_init_slop;
4542 u32 early_rx_adjust_pause;
4543 u32 proxy_sta;
4544 u32 meru_vc;
4545 u32 rx_decap_type;
4546 u32 bw_nss_ratemask;
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02004547};
4548
4549#define WMI_VDEV_PARAM_UNSUPPORTED 0
4550
Kalle Valo5e3dd152013-06-12 20:52:10 +03004551/* the definition of different VDEV parameters */
4552enum wmi_vdev_param {
4553 /* RTS Threshold */
4554 WMI_VDEV_PARAM_RTS_THRESHOLD = 0x1,
4555 /* Fragmentation threshold */
4556 WMI_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
4557 /* beacon interval in TUs */
4558 WMI_VDEV_PARAM_BEACON_INTERVAL,
4559 /* Listen interval in TUs */
4560 WMI_VDEV_PARAM_LISTEN_INTERVAL,
4561 /* muticast rate in Mbps */
4562 WMI_VDEV_PARAM_MULTICAST_RATE,
4563 /* management frame rate in Mbps */
4564 WMI_VDEV_PARAM_MGMT_TX_RATE,
4565 /* slot time (long vs short) */
4566 WMI_VDEV_PARAM_SLOT_TIME,
4567 /* preamble (long vs short) */
4568 WMI_VDEV_PARAM_PREAMBLE,
4569 /* SWBA time (time before tbtt in msec) */
4570 WMI_VDEV_PARAM_SWBA_TIME,
4571 /* time period for updating VDEV stats */
4572 WMI_VDEV_STATS_UPDATE_PERIOD,
4573 /* age out time in msec for frames queued for station in power save */
4574 WMI_VDEV_PWRSAVE_AGEOUT_TIME,
4575 /*
4576 * Host SWBA interval (time in msec before tbtt for SWBA event
4577 * generation).
4578 */
4579 WMI_VDEV_HOST_SWBA_INTERVAL,
4580 /* DTIM period (specified in units of num beacon intervals) */
4581 WMI_VDEV_PARAM_DTIM_PERIOD,
4582 /*
4583 * scheduler air time limit for this VDEV. used by off chan
4584 * scheduler.
4585 */
4586 WMI_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
4587 /* enable/dsiable WDS for this VDEV */
4588 WMI_VDEV_PARAM_WDS,
4589 /* ATIM Window */
4590 WMI_VDEV_PARAM_ATIM_WINDOW,
4591 /* BMISS max */
4592 WMI_VDEV_PARAM_BMISS_COUNT_MAX,
4593 /* BMISS first time */
4594 WMI_VDEV_PARAM_BMISS_FIRST_BCNT,
4595 /* BMISS final time */
4596 WMI_VDEV_PARAM_BMISS_FINAL_BCNT,
4597 /* WMM enables/disabled */
4598 WMI_VDEV_PARAM_FEATURE_WMM,
4599 /* Channel width */
4600 WMI_VDEV_PARAM_CHWIDTH,
4601 /* Channel Offset */
4602 WMI_VDEV_PARAM_CHEXTOFFSET,
4603 /* Disable HT Protection */
4604 WMI_VDEV_PARAM_DISABLE_HTPROTECTION,
4605 /* Quick STA Kickout */
4606 WMI_VDEV_PARAM_STA_QUICKKICKOUT,
4607 /* Rate to be used with Management frames */
4608 WMI_VDEV_PARAM_MGMT_RATE,
4609 /* Protection Mode */
4610 WMI_VDEV_PARAM_PROTECTION_MODE,
4611 /* Fixed rate setting */
4612 WMI_VDEV_PARAM_FIXED_RATE,
4613 /* Short GI Enable/Disable */
4614 WMI_VDEV_PARAM_SGI,
4615 /* Enable LDPC */
4616 WMI_VDEV_PARAM_LDPC,
4617 /* Enable Tx STBC */
4618 WMI_VDEV_PARAM_TX_STBC,
4619 /* Enable Rx STBC */
4620 WMI_VDEV_PARAM_RX_STBC,
4621 /* Intra BSS forwarding */
4622 WMI_VDEV_PARAM_INTRA_BSS_FWD,
4623 /* Setting Default xmit key for Vdev */
4624 WMI_VDEV_PARAM_DEF_KEYID,
4625 /* NSS width */
4626 WMI_VDEV_PARAM_NSS,
4627 /* Set the custom rate for the broadcast data frames */
4628 WMI_VDEV_PARAM_BCAST_DATA_RATE,
4629 /* Set the custom rate (rate-code) for multicast data frames */
4630 WMI_VDEV_PARAM_MCAST_DATA_RATE,
4631 /* Tx multicast packet indicate Enable/Disable */
4632 WMI_VDEV_PARAM_MCAST_INDICATE,
4633 /* Tx DHCP packet indicate Enable/Disable */
4634 WMI_VDEV_PARAM_DHCP_INDICATE,
4635 /* Enable host inspection of Tx unicast packet to unknown destination */
4636 WMI_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
4637
4638 /* The minimum amount of time AP begins to consider STA inactive */
4639 WMI_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
4640
4641 /*
4642 * An associated STA is considered inactive when there is no recent
4643 * TX/RX activity and no downlink frames are buffered for it. Once a
4644 * STA exceeds the maximum idle inactive time, the AP will send an
4645 * 802.11 data-null as a keep alive to verify the STA is still
4646 * associated. If the STA does ACK the data-null, or if the data-null
4647 * is buffered and the STA does not retrieve it, the STA will be
4648 * considered unresponsive
4649 * (see WMI_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
4650 */
4651 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
4652
4653 /*
4654 * An associated STA is considered unresponsive if there is no recent
4655 * TX/RX activity and downlink frames are buffered for it. Once a STA
4656 * exceeds the maximum unresponsive time, the AP will send a
4657 * WMI_STA_KICKOUT event to the host so the STA can be deleted. */
4658 WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
4659
4660 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
4661 WMI_VDEV_PARAM_AP_ENABLE_NAWDS,
4662 /* Enable/Disable RTS-CTS */
4663 WMI_VDEV_PARAM_ENABLE_RTSCTS,
4664 /* Enable TXBFee/er */
4665 WMI_VDEV_PARAM_TXBF,
4666
4667 /* Set packet power save */
4668 WMI_VDEV_PARAM_PACKET_POWERSAVE,
4669
4670 /*
4671 * Drops un-encrypted packets if eceived in an encrypted connection
4672 * otherwise forwards to host.
4673 */
4674 WMI_VDEV_PARAM_DROP_UNENCRY,
4675
4676 /*
4677 * Set the encapsulation type for frames.
4678 */
4679 WMI_VDEV_PARAM_TX_ENCAP_TYPE,
4680};
4681
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02004682/* the definition of different VDEV parameters */
4683enum wmi_10x_vdev_param {
4684 /* RTS Threshold */
4685 WMI_10X_VDEV_PARAM_RTS_THRESHOLD = 0x1,
4686 /* Fragmentation threshold */
4687 WMI_10X_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
4688 /* beacon interval in TUs */
4689 WMI_10X_VDEV_PARAM_BEACON_INTERVAL,
4690 /* Listen interval in TUs */
4691 WMI_10X_VDEV_PARAM_LISTEN_INTERVAL,
4692 /* muticast rate in Mbps */
4693 WMI_10X_VDEV_PARAM_MULTICAST_RATE,
4694 /* management frame rate in Mbps */
4695 WMI_10X_VDEV_PARAM_MGMT_TX_RATE,
4696 /* slot time (long vs short) */
4697 WMI_10X_VDEV_PARAM_SLOT_TIME,
4698 /* preamble (long vs short) */
4699 WMI_10X_VDEV_PARAM_PREAMBLE,
4700 /* SWBA time (time before tbtt in msec) */
4701 WMI_10X_VDEV_PARAM_SWBA_TIME,
4702 /* time period for updating VDEV stats */
4703 WMI_10X_VDEV_STATS_UPDATE_PERIOD,
4704 /* age out time in msec for frames queued for station in power save */
4705 WMI_10X_VDEV_PWRSAVE_AGEOUT_TIME,
4706 /*
4707 * Host SWBA interval (time in msec before tbtt for SWBA event
4708 * generation).
4709 */
4710 WMI_10X_VDEV_HOST_SWBA_INTERVAL,
4711 /* DTIM period (specified in units of num beacon intervals) */
4712 WMI_10X_VDEV_PARAM_DTIM_PERIOD,
4713 /*
4714 * scheduler air time limit for this VDEV. used by off chan
4715 * scheduler.
4716 */
4717 WMI_10X_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
4718 /* enable/dsiable WDS for this VDEV */
4719 WMI_10X_VDEV_PARAM_WDS,
4720 /* ATIM Window */
4721 WMI_10X_VDEV_PARAM_ATIM_WINDOW,
4722 /* BMISS max */
4723 WMI_10X_VDEV_PARAM_BMISS_COUNT_MAX,
4724 /* WMM enables/disabled */
4725 WMI_10X_VDEV_PARAM_FEATURE_WMM,
4726 /* Channel width */
4727 WMI_10X_VDEV_PARAM_CHWIDTH,
4728 /* Channel Offset */
4729 WMI_10X_VDEV_PARAM_CHEXTOFFSET,
4730 /* Disable HT Protection */
4731 WMI_10X_VDEV_PARAM_DISABLE_HTPROTECTION,
4732 /* Quick STA Kickout */
4733 WMI_10X_VDEV_PARAM_STA_QUICKKICKOUT,
4734 /* Rate to be used with Management frames */
4735 WMI_10X_VDEV_PARAM_MGMT_RATE,
4736 /* Protection Mode */
4737 WMI_10X_VDEV_PARAM_PROTECTION_MODE,
4738 /* Fixed rate setting */
4739 WMI_10X_VDEV_PARAM_FIXED_RATE,
4740 /* Short GI Enable/Disable */
4741 WMI_10X_VDEV_PARAM_SGI,
4742 /* Enable LDPC */
4743 WMI_10X_VDEV_PARAM_LDPC,
4744 /* Enable Tx STBC */
4745 WMI_10X_VDEV_PARAM_TX_STBC,
4746 /* Enable Rx STBC */
4747 WMI_10X_VDEV_PARAM_RX_STBC,
4748 /* Intra BSS forwarding */
4749 WMI_10X_VDEV_PARAM_INTRA_BSS_FWD,
4750 /* Setting Default xmit key for Vdev */
4751 WMI_10X_VDEV_PARAM_DEF_KEYID,
4752 /* NSS width */
4753 WMI_10X_VDEV_PARAM_NSS,
4754 /* Set the custom rate for the broadcast data frames */
4755 WMI_10X_VDEV_PARAM_BCAST_DATA_RATE,
4756 /* Set the custom rate (rate-code) for multicast data frames */
4757 WMI_10X_VDEV_PARAM_MCAST_DATA_RATE,
4758 /* Tx multicast packet indicate Enable/Disable */
4759 WMI_10X_VDEV_PARAM_MCAST_INDICATE,
4760 /* Tx DHCP packet indicate Enable/Disable */
4761 WMI_10X_VDEV_PARAM_DHCP_INDICATE,
4762 /* Enable host inspection of Tx unicast packet to unknown destination */
4763 WMI_10X_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
4764
4765 /* The minimum amount of time AP begins to consider STA inactive */
4766 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
4767
4768 /*
4769 * An associated STA is considered inactive when there is no recent
4770 * TX/RX activity and no downlink frames are buffered for it. Once a
4771 * STA exceeds the maximum idle inactive time, the AP will send an
4772 * 802.11 data-null as a keep alive to verify the STA is still
4773 * associated. If the STA does ACK the data-null, or if the data-null
4774 * is buffered and the STA does not retrieve it, the STA will be
4775 * considered unresponsive
4776 * (see WMI_10X_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS).
4777 */
4778 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
4779
4780 /*
4781 * An associated STA is considered unresponsive if there is no recent
4782 * TX/RX activity and downlink frames are buffered for it. Once a STA
4783 * exceeds the maximum unresponsive time, the AP will send a
4784 * WMI_10X_STA_KICKOUT event to the host so the STA can be deleted. */
4785 WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
4786
4787 /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */
4788 WMI_10X_VDEV_PARAM_AP_ENABLE_NAWDS,
4789
4790 WMI_10X_VDEV_PARAM_MCAST2UCAST_SET,
4791 /* Enable/Disable RTS-CTS */
4792 WMI_10X_VDEV_PARAM_ENABLE_RTSCTS,
4793
4794 WMI_10X_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS,
Michal Kazior24c88f72014-07-25 13:32:17 +02004795
4796 /* following are available as of firmware 10.2 */
4797 WMI_10X_VDEV_PARAM_TX_ENCAP_TYPE,
4798 WMI_10X_VDEV_PARAM_CABQ_MAXDUR,
4799 WMI_10X_VDEV_PARAM_MFPTEST_SET,
4800 WMI_10X_VDEV_PARAM_RTS_FIXED_RATE,
4801 WMI_10X_VDEV_PARAM_VHT_SGIMASK,
4802 WMI_10X_VDEV_PARAM_VHT80_RATEMASK,
Bartosz Markowski6d1506e2013-09-26 17:47:15 +02004803};
4804
Raja Mani93841a12015-06-22 20:10:13 +05304805enum wmi_10_4_vdev_param {
4806 WMI_10_4_VDEV_PARAM_RTS_THRESHOLD = 0x1,
4807 WMI_10_4_VDEV_PARAM_FRAGMENTATION_THRESHOLD,
4808 WMI_10_4_VDEV_PARAM_BEACON_INTERVAL,
4809 WMI_10_4_VDEV_PARAM_LISTEN_INTERVAL,
4810 WMI_10_4_VDEV_PARAM_MULTICAST_RATE,
4811 WMI_10_4_VDEV_PARAM_MGMT_TX_RATE,
4812 WMI_10_4_VDEV_PARAM_SLOT_TIME,
4813 WMI_10_4_VDEV_PARAM_PREAMBLE,
4814 WMI_10_4_VDEV_PARAM_SWBA_TIME,
4815 WMI_10_4_VDEV_STATS_UPDATE_PERIOD,
4816 WMI_10_4_VDEV_PWRSAVE_AGEOUT_TIME,
4817 WMI_10_4_VDEV_HOST_SWBA_INTERVAL,
4818 WMI_10_4_VDEV_PARAM_DTIM_PERIOD,
4819 WMI_10_4_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT,
4820 WMI_10_4_VDEV_PARAM_WDS,
4821 WMI_10_4_VDEV_PARAM_ATIM_WINDOW,
4822 WMI_10_4_VDEV_PARAM_BMISS_COUNT_MAX,
4823 WMI_10_4_VDEV_PARAM_BMISS_FIRST_BCNT,
4824 WMI_10_4_VDEV_PARAM_BMISS_FINAL_BCNT,
4825 WMI_10_4_VDEV_PARAM_FEATURE_WMM,
4826 WMI_10_4_VDEV_PARAM_CHWIDTH,
4827 WMI_10_4_VDEV_PARAM_CHEXTOFFSET,
4828 WMI_10_4_VDEV_PARAM_DISABLE_HTPROTECTION,
4829 WMI_10_4_VDEV_PARAM_STA_QUICKKICKOUT,
4830 WMI_10_4_VDEV_PARAM_MGMT_RATE,
4831 WMI_10_4_VDEV_PARAM_PROTECTION_MODE,
4832 WMI_10_4_VDEV_PARAM_FIXED_RATE,
4833 WMI_10_4_VDEV_PARAM_SGI,
4834 WMI_10_4_VDEV_PARAM_LDPC,
4835 WMI_10_4_VDEV_PARAM_TX_STBC,
4836 WMI_10_4_VDEV_PARAM_RX_STBC,
4837 WMI_10_4_VDEV_PARAM_INTRA_BSS_FWD,
4838 WMI_10_4_VDEV_PARAM_DEF_KEYID,
4839 WMI_10_4_VDEV_PARAM_NSS,
4840 WMI_10_4_VDEV_PARAM_BCAST_DATA_RATE,
4841 WMI_10_4_VDEV_PARAM_MCAST_DATA_RATE,
4842 WMI_10_4_VDEV_PARAM_MCAST_INDICATE,
4843 WMI_10_4_VDEV_PARAM_DHCP_INDICATE,
4844 WMI_10_4_VDEV_PARAM_UNKNOWN_DEST_INDICATE,
4845 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS,
4846 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS,
4847 WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS,
4848 WMI_10_4_VDEV_PARAM_AP_ENABLE_NAWDS,
4849 WMI_10_4_VDEV_PARAM_MCAST2UCAST_SET,
4850 WMI_10_4_VDEV_PARAM_ENABLE_RTSCTS,
4851 WMI_10_4_VDEV_PARAM_RC_NUM_RETRIES,
4852 WMI_10_4_VDEV_PARAM_TXBF,
4853 WMI_10_4_VDEV_PARAM_PACKET_POWERSAVE,
4854 WMI_10_4_VDEV_PARAM_DROP_UNENCRY,
4855 WMI_10_4_VDEV_PARAM_TX_ENCAP_TYPE,
4856 WMI_10_4_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS,
4857 WMI_10_4_VDEV_PARAM_CABQ_MAXDUR,
4858 WMI_10_4_VDEV_PARAM_MFPTEST_SET,
4859 WMI_10_4_VDEV_PARAM_RTS_FIXED_RATE,
4860 WMI_10_4_VDEV_PARAM_VHT_SGIMASK,
4861 WMI_10_4_VDEV_PARAM_VHT80_RATEMASK,
4862 WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_ENABLE,
4863 WMI_10_4_VDEV_PARAM_EARLY_RX_TGT_BMISS_NUM,
4864 WMI_10_4_VDEV_PARAM_EARLY_RX_BMISS_SAMPLE_CYCLE,
4865 WMI_10_4_VDEV_PARAM_EARLY_RX_SLOP_STEP,
4866 WMI_10_4_VDEV_PARAM_EARLY_RX_INIT_SLOP,
4867 WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_PAUSE,
4868 WMI_10_4_VDEV_PARAM_PROXY_STA,
4869 WMI_10_4_VDEV_PARAM_MERU_VC,
4870 WMI_10_4_VDEV_PARAM_RX_DECAP_TYPE,
4871 WMI_10_4_VDEV_PARAM_BW_NSS_RATEMASK,
4872};
4873
Michal Kazior139e1702015-02-15 16:50:42 +02004874#define WMI_VDEV_PARAM_TXBF_SU_TX_BFEE BIT(0)
4875#define WMI_VDEV_PARAM_TXBF_MU_TX_BFEE BIT(1)
4876#define WMI_VDEV_PARAM_TXBF_SU_TX_BFER BIT(2)
4877#define WMI_VDEV_PARAM_TXBF_MU_TX_BFER BIT(3)
4878
Vivek Natarajana48e2cc2015-08-04 10:45:12 +05304879#define WMI_TXBF_STS_CAP_OFFSET_LSB 4
4880#define WMI_TXBF_STS_CAP_OFFSET_MASK 0xf0
4881#define WMI_BF_SOUND_DIM_OFFSET_LSB 8
4882#define WMI_BF_SOUND_DIM_OFFSET_MASK 0xf00
4883
Kalle Valo5e3dd152013-06-12 20:52:10 +03004884/* slot time long */
4885#define WMI_VDEV_SLOT_TIME_LONG 0x1
4886/* slot time short */
4887#define WMI_VDEV_SLOT_TIME_SHORT 0x2
4888/* preablbe long */
4889#define WMI_VDEV_PREAMBLE_LONG 0x1
4890/* preablbe short */
4891#define WMI_VDEV_PREAMBLE_SHORT 0x2
4892
4893enum wmi_start_event_param {
4894 WMI_VDEV_RESP_START_EVENT = 0,
4895 WMI_VDEV_RESP_RESTART_EVENT,
4896};
4897
4898struct wmi_vdev_start_response_event {
4899 __le32 vdev_id;
4900 __le32 req_id;
4901 __le32 resp_type; /* %WMI_VDEV_RESP_ */
4902 __le32 status;
4903} __packed;
4904
4905struct wmi_vdev_standby_req_event {
4906 /* unique id identifying the VDEV, generated by the caller */
4907 __le32 vdev_id;
4908} __packed;
4909
4910struct wmi_vdev_resume_req_event {
4911 /* unique id identifying the VDEV, generated by the caller */
4912 __le32 vdev_id;
4913} __packed;
4914
4915struct wmi_vdev_stopped_event {
4916 /* unique id identifying the VDEV, generated by the caller */
4917 __le32 vdev_id;
4918} __packed;
4919
4920/*
4921 * common structure used for simple events
4922 * (stopped, resume_req, standby response)
4923 */
4924struct wmi_vdev_simple_event {
4925 /* unique id identifying the VDEV, generated by the caller */
4926 __le32 vdev_id;
4927} __packed;
4928
4929/* VDEV start response status codes */
4930/* VDEV succesfully started */
4931#define WMI_INIFIED_VDEV_START_RESPONSE_STATUS_SUCCESS 0x0
4932
4933/* requested VDEV not found */
4934#define WMI_INIFIED_VDEV_START_RESPONSE_INVALID_VDEVID 0x1
4935
4936/* unsupported VDEV combination */
4937#define WMI_INIFIED_VDEV_START_RESPONSE_NOT_SUPPORTED 0x2
4938
Simon Wunderlich855aed12014-08-02 09:12:54 +03004939/* TODO: please add more comments if you have in-depth information */
4940struct wmi_vdev_spectral_conf_cmd {
4941 __le32 vdev_id;
4942
4943 /* number of fft samples to send (0 for infinite) */
4944 __le32 scan_count;
4945 __le32 scan_period;
4946 __le32 scan_priority;
4947
4948 /* number of bins in the FFT: 2^(fft_size - bin_scale) */
4949 __le32 scan_fft_size;
4950 __le32 scan_gc_ena;
4951 __le32 scan_restart_ena;
4952 __le32 scan_noise_floor_ref;
4953 __le32 scan_init_delay;
4954 __le32 scan_nb_tone_thr;
4955 __le32 scan_str_bin_thr;
4956 __le32 scan_wb_rpt_mode;
4957 __le32 scan_rssi_rpt_mode;
4958 __le32 scan_rssi_thr;
4959 __le32 scan_pwr_format;
4960
4961 /* rpt_mode: Format of FFT report to software for spectral scan
4962 * triggered FFTs:
4963 * 0: No FFT report (only spectral scan summary report)
4964 * 1: 2-dword summary of metrics for each completed FFT + spectral
4965 * scan summary report
4966 * 2: 2-dword summary of metrics for each completed FFT +
4967 * 1x- oversampled bins(in-band) per FFT + spectral scan summary
4968 * report
4969 * 3: 2-dword summary of metrics for each completed FFT +
4970 * 2x- oversampled bins (all) per FFT + spectral scan summary
4971 */
4972 __le32 scan_rpt_mode;
4973 __le32 scan_bin_scale;
4974 __le32 scan_dbm_adj;
4975 __le32 scan_chn_mask;
4976} __packed;
4977
4978struct wmi_vdev_spectral_conf_arg {
4979 u32 vdev_id;
4980 u32 scan_count;
4981 u32 scan_period;
4982 u32 scan_priority;
4983 u32 scan_fft_size;
4984 u32 scan_gc_ena;
4985 u32 scan_restart_ena;
4986 u32 scan_noise_floor_ref;
4987 u32 scan_init_delay;
4988 u32 scan_nb_tone_thr;
4989 u32 scan_str_bin_thr;
4990 u32 scan_wb_rpt_mode;
4991 u32 scan_rssi_rpt_mode;
4992 u32 scan_rssi_thr;
4993 u32 scan_pwr_format;
4994 u32 scan_rpt_mode;
4995 u32 scan_bin_scale;
4996 u32 scan_dbm_adj;
4997 u32 scan_chn_mask;
4998};
4999
5000#define WMI_SPECTRAL_ENABLE_DEFAULT 0
5001#define WMI_SPECTRAL_COUNT_DEFAULT 0
5002#define WMI_SPECTRAL_PERIOD_DEFAULT 35
5003#define WMI_SPECTRAL_PRIORITY_DEFAULT 1
5004#define WMI_SPECTRAL_FFT_SIZE_DEFAULT 7
5005#define WMI_SPECTRAL_GC_ENA_DEFAULT 1
5006#define WMI_SPECTRAL_RESTART_ENA_DEFAULT 0
5007#define WMI_SPECTRAL_NOISE_FLOOR_REF_DEFAULT -96
5008#define WMI_SPECTRAL_INIT_DELAY_DEFAULT 80
5009#define WMI_SPECTRAL_NB_TONE_THR_DEFAULT 12
5010#define WMI_SPECTRAL_STR_BIN_THR_DEFAULT 8
5011#define WMI_SPECTRAL_WB_RPT_MODE_DEFAULT 0
5012#define WMI_SPECTRAL_RSSI_RPT_MODE_DEFAULT 0
5013#define WMI_SPECTRAL_RSSI_THR_DEFAULT 0xf0
5014#define WMI_SPECTRAL_PWR_FORMAT_DEFAULT 0
5015#define WMI_SPECTRAL_RPT_MODE_DEFAULT 2
5016#define WMI_SPECTRAL_BIN_SCALE_DEFAULT 1
5017#define WMI_SPECTRAL_DBM_ADJ_DEFAULT 1
5018#define WMI_SPECTRAL_CHN_MASK_DEFAULT 1
5019
5020struct wmi_vdev_spectral_enable_cmd {
5021 __le32 vdev_id;
5022 __le32 trigger_cmd;
5023 __le32 enable_cmd;
5024} __packed;
5025
5026#define WMI_SPECTRAL_TRIGGER_CMD_TRIGGER 1
5027#define WMI_SPECTRAL_TRIGGER_CMD_CLEAR 2
5028#define WMI_SPECTRAL_ENABLE_CMD_ENABLE 1
5029#define WMI_SPECTRAL_ENABLE_CMD_DISABLE 2
5030
Kalle Valo5e3dd152013-06-12 20:52:10 +03005031/* Beacon processing related command and event structures */
5032struct wmi_bcn_tx_hdr {
5033 __le32 vdev_id;
5034 __le32 tx_rate;
5035 __le32 tx_power;
5036 __le32 bcn_len;
5037} __packed;
5038
5039struct wmi_bcn_tx_cmd {
5040 struct wmi_bcn_tx_hdr hdr;
5041 u8 *bcn[0];
5042} __packed;
5043
5044struct wmi_bcn_tx_arg {
5045 u32 vdev_id;
5046 u32 tx_rate;
5047 u32 tx_power;
5048 u32 bcn_len;
5049 const void *bcn;
5050};
5051
Michal Kazior748afc42014-01-23 12:48:21 +01005052enum wmi_bcn_tx_ref_flags {
5053 WMI_BCN_TX_REF_FLAG_DTIM_ZERO = 0x1,
5054 WMI_BCN_TX_REF_FLAG_DELIVER_CAB = 0x2,
5055};
5056
Michal Kazior24c88f72014-07-25 13:32:17 +02005057/* TODO: It is unclear why "no antenna" works while any other seemingly valid
5058 * chainmask yields no beacons on the air at all.
5059 */
5060#define WMI_BCN_TX_REF_DEF_ANTENNA 0
5061
Michal Kazior748afc42014-01-23 12:48:21 +01005062struct wmi_bcn_tx_ref_cmd {
5063 __le32 vdev_id;
5064 __le32 data_len;
5065 /* physical address of the frame - dma pointer */
5066 __le32 data_ptr;
5067 /* id for host to track */
5068 __le32 msdu_id;
5069 /* frame ctrl to setup PPDU desc */
5070 __le32 frame_control;
5071 /* to control CABQ traffic: WMI_BCN_TX_REF_FLAG_ */
5072 __le32 flags;
Michal Kazior24c88f72014-07-25 13:32:17 +02005073 /* introduced in 10.2 */
5074 __le32 antenna_mask;
Michal Kazior748afc42014-01-23 12:48:21 +01005075} __packed;
5076
Kalle Valo5e3dd152013-06-12 20:52:10 +03005077/* Beacon filter */
5078#define WMI_BCN_FILTER_ALL 0 /* Filter all beacons */
5079#define WMI_BCN_FILTER_NONE 1 /* Pass all beacons */
5080#define WMI_BCN_FILTER_RSSI 2 /* Pass Beacons RSSI >= RSSI threshold */
5081#define WMI_BCN_FILTER_BSSID 3 /* Pass Beacons with matching BSSID */
5082#define WMI_BCN_FILTER_SSID 4 /* Pass Beacons with matching SSID */
5083
5084struct wmi_bcn_filter_rx_cmd {
5085 /* Filter ID */
5086 __le32 bcn_filter_id;
5087 /* Filter type - wmi_bcn_filter */
5088 __le32 bcn_filter;
5089 /* Buffer len */
5090 __le32 bcn_filter_len;
5091 /* Filter info (threshold, BSSID, RSSI) */
5092 u8 *bcn_filter_buf;
5093} __packed;
5094
5095/* Capabilities and IEs to be passed to firmware */
5096struct wmi_bcn_prb_info {
5097 /* Capabilities */
5098 __le32 caps;
5099 /* ERP info */
5100 __le32 erp;
5101 /* Advanced capabilities */
5102 /* HT capabilities */
5103 /* HT Info */
5104 /* ibss_dfs */
5105 /* wpa Info */
5106 /* rsn Info */
5107 /* rrm info */
5108 /* ath_ext */
5109 /* app IE */
5110} __packed;
5111
5112struct wmi_bcn_tmpl_cmd {
5113 /* unique id identifying the VDEV, generated by the caller */
5114 __le32 vdev_id;
5115 /* TIM IE offset from the beginning of the template. */
5116 __le32 tim_ie_offset;
5117 /* beacon probe capabilities and IEs */
5118 struct wmi_bcn_prb_info bcn_prb_info;
5119 /* beacon buffer length */
5120 __le32 buf_len;
5121 /* variable length data */
5122 u8 data[1];
5123} __packed;
5124
5125struct wmi_prb_tmpl_cmd {
5126 /* unique id identifying the VDEV, generated by the caller */
5127 __le32 vdev_id;
5128 /* beacon probe capabilities and IEs */
5129 struct wmi_bcn_prb_info bcn_prb_info;
5130 /* beacon buffer length */
5131 __le32 buf_len;
5132 /* Variable length data */
5133 u8 data[1];
5134} __packed;
5135
5136enum wmi_sta_ps_mode {
5137 /* enable power save for the given STA VDEV */
5138 WMI_STA_PS_MODE_DISABLED = 0,
5139 /* disable power save for a given STA VDEV */
5140 WMI_STA_PS_MODE_ENABLED = 1,
5141};
5142
5143struct wmi_sta_powersave_mode_cmd {
5144 /* unique id identifying the VDEV, generated by the caller */
5145 __le32 vdev_id;
5146
5147 /*
5148 * Power save mode
5149 * (see enum wmi_sta_ps_mode)
5150 */
5151 __le32 sta_ps_mode;
5152} __packed;
5153
5154enum wmi_csa_offload_en {
5155 WMI_CSA_OFFLOAD_DISABLE = 0,
5156 WMI_CSA_OFFLOAD_ENABLE = 1,
5157};
5158
5159struct wmi_csa_offload_enable_cmd {
5160 __le32 vdev_id;
5161 __le32 csa_offload_enable;
5162} __packed;
5163
5164struct wmi_csa_offload_chanswitch_cmd {
5165 __le32 vdev_id;
5166 struct wmi_channel chan;
5167} __packed;
5168
5169/*
5170 * This parameter controls the policy for retrieving frames from AP while the
5171 * STA is in sleep state.
5172 *
5173 * Only takes affect if the sta_ps_mode is enabled
5174 */
5175enum wmi_sta_ps_param_rx_wake_policy {
5176 /*
5177 * Wake up when ever there is an RX activity on the VDEV. In this mode
5178 * the Power save SM(state machine) will come out of sleep by either
5179 * sending null frame (or) a data frame (with PS==0) in response to TIM
5180 * bit set in the received beacon frame from AP.
5181 */
5182 WMI_STA_PS_RX_WAKE_POLICY_WAKE = 0,
5183
5184 /*
5185 * Here the power save state machine will not wakeup in response to TIM
5186 * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD
5187 * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all
5188 * access categories are delivery-enabled, the station will send a
5189 * UAPSD trigger frame, otherwise it will send a PS-Poll.
5190 */
5191 WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD = 1,
5192};
5193
5194/*
5195 * Number of tx frames/beacon that cause the power save SM to wake up.
5196 *
5197 * Value 1 causes the SM to wake up for every TX. Value 0 has a special
5198 * meaning, It will cause the SM to never wake up. This is useful if you want
5199 * to keep the system to sleep all the time for some kind of test mode . host
5200 * can change this parameter any time. It will affect at the next tx frame.
5201 */
5202enum wmi_sta_ps_param_tx_wake_threshold {
5203 WMI_STA_PS_TX_WAKE_THRESHOLD_NEVER = 0,
5204 WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS = 1,
5205
5206 /*
5207 * Values greater than one indicate that many TX attempts per beacon
5208 * interval before the STA will wake up
5209 */
5210};
5211
5212/*
5213 * The maximum number of PS-Poll frames the FW will send in response to
5214 * traffic advertised in TIM before waking up (by sending a null frame with PS
5215 * = 0). Value 0 has a special meaning: there is no maximum count and the FW
5216 * will send as many PS-Poll as are necessary to retrieve buffered BU. This
5217 * parameter is used when the RX wake policy is
5218 * WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD and ignored when the RX wake
5219 * policy is WMI_STA_PS_RX_WAKE_POLICY_WAKE.
5220 */
5221enum wmi_sta_ps_param_pspoll_count {
5222 WMI_STA_PS_PSPOLL_COUNT_NO_MAX = 0,
5223 /*
5224 * Values greater than 0 indicate the maximum numer of PS-Poll frames
5225 * FW will send before waking up.
5226 */
Michal Kazior9f9b5742014-12-12 12:41:36 +01005227
5228 /* When u-APSD is enabled the firmware will be very reluctant to exit
5229 * STA PS. This could result in very poor Rx performance with STA doing
5230 * PS-Poll for each and every buffered frame. This value is a bit
5231 * arbitrary.
5232 */
5233 WMI_STA_PS_PSPOLL_COUNT_UAPSD = 3,
Kalle Valo5e3dd152013-06-12 20:52:10 +03005234};
5235
5236/*
5237 * This will include the delivery and trigger enabled state for every AC.
5238 * This is the negotiated state with AP. The host MLME needs to set this based
5239 * on AP capability and the state Set in the association request by the
5240 * station MLME.Lower 8 bits of the value specify the UAPSD configuration.
5241 */
5242#define WMI_UAPSD_AC_TYPE_DELI 0
5243#define WMI_UAPSD_AC_TYPE_TRIG 1
5244
5245#define WMI_UAPSD_AC_BIT_MASK(ac, type) \
5246 ((type == WMI_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) : (1<<((ac<<1)+1)))
5247
5248enum wmi_sta_ps_param_uapsd {
5249 WMI_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
5250 WMI_STA_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
5251 WMI_STA_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
5252 WMI_STA_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
5253 WMI_STA_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
5254 WMI_STA_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
5255 WMI_STA_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
5256 WMI_STA_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
5257};
5258
Janusz Dziedzic0c7e4772015-01-24 12:14:52 +02005259#define WMI_STA_UAPSD_MAX_INTERVAL_MSEC UINT_MAX
5260
5261struct wmi_sta_uapsd_auto_trig_param {
5262 __le32 wmm_ac;
5263 __le32 user_priority;
5264 __le32 service_interval;
5265 __le32 suspend_interval;
5266 __le32 delay_interval;
5267};
5268
5269struct wmi_sta_uapsd_auto_trig_cmd_fixed_param {
5270 __le32 vdev_id;
5271 struct wmi_mac_addr peer_macaddr;
5272 __le32 num_ac;
5273};
5274
5275struct wmi_sta_uapsd_auto_trig_arg {
5276 u32 wmm_ac;
5277 u32 user_priority;
5278 u32 service_interval;
5279 u32 suspend_interval;
5280 u32 delay_interval;
5281};
5282
Kalle Valo5e3dd152013-06-12 20:52:10 +03005283enum wmi_sta_powersave_param {
5284 /*
5285 * Controls how frames are retrievd from AP while STA is sleeping
5286 *
5287 * (see enum wmi_sta_ps_param_rx_wake_policy)
5288 */
5289 WMI_STA_PS_PARAM_RX_WAKE_POLICY = 0,
5290
5291 /*
5292 * The STA will go active after this many TX
5293 *
5294 * (see enum wmi_sta_ps_param_tx_wake_threshold)
5295 */
5296 WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD = 1,
5297
5298 /*
5299 * Number of PS-Poll to send before STA wakes up
5300 *
5301 * (see enum wmi_sta_ps_param_pspoll_count)
5302 *
5303 */
5304 WMI_STA_PS_PARAM_PSPOLL_COUNT = 2,
5305
5306 /*
5307 * TX/RX inactivity time in msec before going to sleep.
5308 *
5309 * The power save SM will monitor tx/rx activity on the VDEV, if no
5310 * activity for the specified msec of the parameter the Power save
5311 * SM will go to sleep.
5312 */
5313 WMI_STA_PS_PARAM_INACTIVITY_TIME = 3,
5314
5315 /*
5316 * Set uapsd configuration.
5317 *
5318 * (see enum wmi_sta_ps_param_uapsd)
5319 */
5320 WMI_STA_PS_PARAM_UAPSD = 4,
5321};
5322
5323struct wmi_sta_powersave_param_cmd {
5324 __le32 vdev_id;
5325 __le32 param_id; /* %WMI_STA_PS_PARAM_ */
5326 __le32 param_value;
5327} __packed;
5328
5329/* No MIMO power save */
5330#define WMI_STA_MIMO_PS_MODE_DISABLE
5331/* mimo powersave mode static*/
5332#define WMI_STA_MIMO_PS_MODE_STATIC
5333/* mimo powersave mode dynamic */
5334#define WMI_STA_MIMO_PS_MODE_DYNAMIC
5335
5336struct wmi_sta_mimo_ps_mode_cmd {
5337 /* unique id identifying the VDEV, generated by the caller */
5338 __le32 vdev_id;
5339 /* mimo powersave mode as defined above */
5340 __le32 mimo_pwrsave_mode;
5341} __packed;
5342
5343/* U-APSD configuration of peer station from (re)assoc request and TSPECs */
5344enum wmi_ap_ps_param_uapsd {
5345 WMI_AP_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
5346 WMI_AP_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1),
5347 WMI_AP_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2),
5348 WMI_AP_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3),
5349 WMI_AP_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4),
5350 WMI_AP_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5),
5351 WMI_AP_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6),
5352 WMI_AP_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7),
5353};
5354
5355/* U-APSD maximum service period of peer station */
5356enum wmi_ap_ps_peer_param_max_sp {
5357 WMI_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED = 0,
5358 WMI_AP_PS_PEER_PARAM_MAX_SP_2 = 1,
5359 WMI_AP_PS_PEER_PARAM_MAX_SP_4 = 2,
5360 WMI_AP_PS_PEER_PARAM_MAX_SP_6 = 3,
5361 MAX_WMI_AP_PS_PEER_PARAM_MAX_SP,
5362};
5363
5364/*
5365 * AP power save parameter
5366 * Set a power save specific parameter for a peer station
5367 */
5368enum wmi_ap_ps_peer_param {
5369 /* Set uapsd configuration for a given peer.
5370 *
5371 * Include the delivery and trigger enabled state for every AC.
5372 * The host MLME needs to set this based on AP capability and stations
5373 * request Set in the association request received from the station.
5374 *
5375 * Lower 8 bits of the value specify the UAPSD configuration.
5376 *
5377 * (see enum wmi_ap_ps_param_uapsd)
5378 * The default value is 0.
5379 */
5380 WMI_AP_PS_PEER_PARAM_UAPSD = 0,
5381
5382 /*
5383 * Set the service period for a UAPSD capable station
5384 *
5385 * The service period from wme ie in the (re)assoc request frame.
5386 *
5387 * (see enum wmi_ap_ps_peer_param_max_sp)
5388 */
5389 WMI_AP_PS_PEER_PARAM_MAX_SP = 1,
5390
5391 /* Time in seconds for aging out buffered frames for STA in PS */
5392 WMI_AP_PS_PEER_PARAM_AGEOUT_TIME = 2,
5393};
5394
5395struct wmi_ap_ps_peer_cmd {
5396 /* unique id identifying the VDEV, generated by the caller */
5397 __le32 vdev_id;
5398
5399 /* peer MAC address */
5400 struct wmi_mac_addr peer_macaddr;
5401
5402 /* AP powersave param (see enum wmi_ap_ps_peer_param) */
5403 __le32 param_id;
5404
5405 /* AP powersave param value */
5406 __le32 param_value;
5407} __packed;
5408
5409/* 128 clients = 4 words */
5410#define WMI_TIM_BITMAP_ARRAY_SIZE 4
5411
5412struct wmi_tim_info {
5413 __le32 tim_len;
5414 __le32 tim_mcast;
5415 __le32 tim_bitmap[WMI_TIM_BITMAP_ARRAY_SIZE];
5416 __le32 tim_changed;
5417 __le32 tim_num_ps_pending;
5418} __packed;
5419
Raja Mania03fee32015-06-22 20:22:20 +05305420struct wmi_tim_info_arg {
5421 __le32 tim_len;
5422 __le32 tim_mcast;
5423 const __le32 *tim_bitmap;
5424 __le32 tim_changed;
5425 __le32 tim_num_ps_pending;
5426} __packed;
5427
Kalle Valo5e3dd152013-06-12 20:52:10 +03005428/* Maximum number of NOA Descriptors supported */
5429#define WMI_P2P_MAX_NOA_DESCRIPTORS 4
5430#define WMI_P2P_OPPPS_ENABLE_BIT BIT(0)
5431#define WMI_P2P_OPPPS_CTWINDOW_OFFSET 1
5432#define WMI_P2P_NOA_CHANGED_BIT BIT(0)
5433
5434struct wmi_p2p_noa_info {
5435 /* Bit 0 - Flag to indicate an update in NOA schedule
5436 Bits 7-1 - Reserved */
5437 u8 changed;
5438 /* NOA index */
5439 u8 index;
5440 /* Bit 0 - Opp PS state of the AP
5441 Bits 1-7 - Ctwindow in TUs */
5442 u8 ctwindow_oppps;
5443 /* Number of NOA descriptors */
5444 u8 num_descriptors;
5445
5446 struct wmi_p2p_noa_descriptor descriptors[WMI_P2P_MAX_NOA_DESCRIPTORS];
5447} __packed;
5448
5449struct wmi_bcn_info {
5450 struct wmi_tim_info tim_info;
5451 struct wmi_p2p_noa_info p2p_noa_info;
5452} __packed;
5453
5454struct wmi_host_swba_event {
5455 __le32 vdev_map;
Michal Kazior32653cf2014-12-03 10:10:26 +02005456 struct wmi_bcn_info bcn_info[0];
Kalle Valo5e3dd152013-06-12 20:52:10 +03005457} __packed;
5458
Yanbo Li8b019fb2016-01-14 15:39:19 -08005459struct wmi_10_2_4_bcn_info {
5460 struct wmi_tim_info tim_info;
5461 /* The 10.2.4 FW doesn't have p2p NOA info */
5462} __packed;
5463
5464struct wmi_10_2_4_host_swba_event {
5465 __le32 vdev_map;
5466 struct wmi_10_2_4_bcn_info bcn_info[0];
5467} __packed;
5468
Raja Mani3cec3be2015-06-22 20:22:21 +05305469/* 16 words = 512 client + 1 word = for guard */
5470#define WMI_10_4_TIM_BITMAP_ARRAY_SIZE 17
5471
5472struct wmi_10_4_tim_info {
5473 __le32 tim_len;
5474 __le32 tim_mcast;
5475 __le32 tim_bitmap[WMI_10_4_TIM_BITMAP_ARRAY_SIZE];
5476 __le32 tim_changed;
5477 __le32 tim_num_ps_pending;
5478} __packed;
5479
5480#define WMI_10_4_P2P_MAX_NOA_DESCRIPTORS 1
5481
5482struct wmi_10_4_p2p_noa_info {
5483 /* Bit 0 - Flag to indicate an update in NOA schedule
5484 * Bits 7-1 - Reserved
5485 */
5486 u8 changed;
5487 /* NOA index */
5488 u8 index;
5489 /* Bit 0 - Opp PS state of the AP
5490 * Bits 1-7 - Ctwindow in TUs
5491 */
5492 u8 ctwindow_oppps;
5493 /* Number of NOA descriptors */
5494 u8 num_descriptors;
5495
5496 struct wmi_p2p_noa_descriptor
5497 noa_descriptors[WMI_10_4_P2P_MAX_NOA_DESCRIPTORS];
5498} __packed;
5499
5500struct wmi_10_4_bcn_info {
5501 struct wmi_10_4_tim_info tim_info;
5502 struct wmi_10_4_p2p_noa_info p2p_noa_info;
5503} __packed;
5504
5505struct wmi_10_4_host_swba_event {
5506 __le32 vdev_map;
5507 struct wmi_10_4_bcn_info bcn_info[0];
5508} __packed;
5509
Kalle Valo5e3dd152013-06-12 20:52:10 +03005510#define WMI_MAX_AP_VDEV 16
5511
5512struct wmi_tbtt_offset_event {
5513 __le32 vdev_map;
5514 __le32 tbttoffset_list[WMI_MAX_AP_VDEV];
5515} __packed;
5516
Kalle Valo5e3dd152013-06-12 20:52:10 +03005517struct wmi_peer_create_cmd {
5518 __le32 vdev_id;
5519 struct wmi_mac_addr peer_macaddr;
5520} __packed;
5521
Marek Puzyniak7390ed32015-03-30 09:51:52 +03005522enum wmi_peer_type {
5523 WMI_PEER_TYPE_DEFAULT = 0,
5524 WMI_PEER_TYPE_BSS = 1,
5525 WMI_PEER_TYPE_TDLS = 2,
5526};
5527
Kalle Valo5e3dd152013-06-12 20:52:10 +03005528struct wmi_peer_delete_cmd {
5529 __le32 vdev_id;
5530 struct wmi_mac_addr peer_macaddr;
5531} __packed;
5532
5533struct wmi_peer_flush_tids_cmd {
5534 __le32 vdev_id;
5535 struct wmi_mac_addr peer_macaddr;
5536 __le32 peer_tid_bitmap;
5537} __packed;
5538
5539struct wmi_fixed_rate {
5540 /*
5541 * rate mode . 0: disable fixed rate (auto rate)
5542 * 1: legacy (non 11n) rate specified as ieee rate 2*Mbps
5543 * 2: ht20 11n rate specified as mcs index
5544 * 3: ht40 11n rate specified as mcs index
5545 */
5546 __le32 rate_mode;
5547 /*
5548 * 4 rate values for 4 rate series. series 0 is stored in byte 0 (LSB)
5549 * and series 3 is stored at byte 3 (MSB)
5550 */
5551 __le32 rate_series;
5552 /*
5553 * 4 retry counts for 4 rate series. retry count for rate 0 is stored
5554 * in byte 0 (LSB) and retry count for rate 3 is stored at byte 3
5555 * (MSB)
5556 */
5557 __le32 rate_retries;
5558} __packed;
5559
5560struct wmi_peer_fixed_rate_cmd {
5561 /* unique id identifying the VDEV, generated by the caller */
5562 __le32 vdev_id;
5563 /* peer MAC address */
5564 struct wmi_mac_addr peer_macaddr;
5565 /* fixed rate */
5566 struct wmi_fixed_rate peer_fixed_rate;
5567} __packed;
5568
5569#define WMI_MGMT_TID 17
5570
5571struct wmi_addba_clear_resp_cmd {
5572 /* unique id identifying the VDEV, generated by the caller */
5573 __le32 vdev_id;
5574 /* peer MAC address */
5575 struct wmi_mac_addr peer_macaddr;
5576} __packed;
5577
5578struct wmi_addba_send_cmd {
5579 /* unique id identifying the VDEV, generated by the caller */
5580 __le32 vdev_id;
5581 /* peer MAC address */
5582 struct wmi_mac_addr peer_macaddr;
5583 /* Tid number */
5584 __le32 tid;
5585 /* Buffer/Window size*/
5586 __le32 buffersize;
5587} __packed;
5588
5589struct wmi_delba_send_cmd {
5590 /* unique id identifying the VDEV, generated by the caller */
5591 __le32 vdev_id;
5592 /* peer MAC address */
5593 struct wmi_mac_addr peer_macaddr;
5594 /* Tid number */
5595 __le32 tid;
5596 /* Is Initiator */
5597 __le32 initiator;
5598 /* Reason code */
5599 __le32 reasoncode;
5600} __packed;
5601
5602struct wmi_addba_setresponse_cmd {
5603 /* unique id identifying the vdev, generated by the caller */
5604 __le32 vdev_id;
5605 /* peer mac address */
5606 struct wmi_mac_addr peer_macaddr;
5607 /* Tid number */
5608 __le32 tid;
5609 /* status code */
5610 __le32 statuscode;
5611} __packed;
5612
5613struct wmi_send_singleamsdu_cmd {
5614 /* unique id identifying the vdev, generated by the caller */
5615 __le32 vdev_id;
5616 /* peer mac address */
5617 struct wmi_mac_addr peer_macaddr;
5618 /* Tid number */
5619 __le32 tid;
5620} __packed;
5621
5622enum wmi_peer_smps_state {
5623 WMI_PEER_SMPS_PS_NONE = 0x0,
5624 WMI_PEER_SMPS_STATIC = 0x1,
5625 WMI_PEER_SMPS_DYNAMIC = 0x2
5626};
5627
Michal Kazior9797feb2014-02-14 14:49:48 +01005628enum wmi_peer_chwidth {
5629 WMI_PEER_CHWIDTH_20MHZ = 0,
5630 WMI_PEER_CHWIDTH_40MHZ = 1,
5631 WMI_PEER_CHWIDTH_80MHZ = 2,
5632};
5633
Kalle Valo5e3dd152013-06-12 20:52:10 +03005634enum wmi_peer_param {
5635 WMI_PEER_SMPS_STATE = 0x1, /* see %wmi_peer_smps_state */
5636 WMI_PEER_AMPDU = 0x2,
5637 WMI_PEER_AUTHORIZE = 0x3,
5638 WMI_PEER_CHAN_WIDTH = 0x4,
5639 WMI_PEER_NSS = 0x5,
Michal Kazior0a987fb2015-02-13 13:30:15 +01005640 WMI_PEER_USE_4ADDR = 0x6,
5641 WMI_PEER_DUMMY_VAR = 0xff, /* dummy parameter for STA PS workaround */
Kalle Valo5e3dd152013-06-12 20:52:10 +03005642};
5643
5644struct wmi_peer_set_param_cmd {
5645 __le32 vdev_id;
5646 struct wmi_mac_addr peer_macaddr;
5647 __le32 param_id;
5648 __le32 param_value;
5649} __packed;
5650
5651#define MAX_SUPPORTED_RATES 128
5652
5653struct wmi_rate_set {
5654 /* total number of rates */
5655 __le32 num_rates;
5656 /*
5657 * rates (each 8bit value) packed into a 32 bit word.
5658 * the rates are filled from least significant byte to most
5659 * significant byte.
5660 */
5661 __le32 rates[(MAX_SUPPORTED_RATES/4)+1];
5662} __packed;
5663
5664struct wmi_rate_set_arg {
5665 unsigned int num_rates;
5666 u8 rates[MAX_SUPPORTED_RATES];
5667};
5668
5669/*
5670 * NOTE: It would bea good idea to represent the Tx MCS
5671 * info in one word and Rx in another word. This is split
5672 * into multiple words for convenience
5673 */
5674struct wmi_vht_rate_set {
5675 __le32 rx_max_rate; /* Max Rx data rate */
5676 __le32 rx_mcs_set; /* Negotiated RX VHT rates */
5677 __le32 tx_max_rate; /* Max Tx data rate */
5678 __le32 tx_mcs_set; /* Negotiated TX VHT rates */
5679} __packed;
5680
5681struct wmi_vht_rate_set_arg {
5682 u32 rx_max_rate;
5683 u32 rx_mcs_set;
5684 u32 tx_max_rate;
5685 u32 tx_mcs_set;
5686};
5687
5688struct wmi_peer_set_rates_cmd {
5689 /* peer MAC address */
5690 struct wmi_mac_addr peer_macaddr;
5691 /* legacy rate set */
5692 struct wmi_rate_set peer_legacy_rates;
5693 /* ht rate set */
5694 struct wmi_rate_set peer_ht_rates;
5695} __packed;
5696
5697struct wmi_peer_set_q_empty_callback_cmd {
5698 /* unique id identifying the VDEV, generated by the caller */
5699 __le32 vdev_id;
5700 /* peer MAC address */
5701 struct wmi_mac_addr peer_macaddr;
5702 __le32 callback_enable;
5703} __packed;
5704
Tamizh chelvam3fab30f2015-10-29 14:27:37 +02005705struct wmi_peer_flags_map {
5706 u32 auth;
5707 u32 qos;
5708 u32 need_ptk_4_way;
5709 u32 need_gtk_2_way;
5710 u32 apsd;
5711 u32 ht;
5712 u32 bw40;
5713 u32 stbc;
5714 u32 ldbc;
5715 u32 dyn_mimops;
5716 u32 static_mimops;
5717 u32 spatial_mux;
5718 u32 vht;
5719 u32 bw80;
5720 u32 vht_2g;
5721 u32 pmf;
5722};
5723
5724enum wmi_peer_flags {
5725 WMI_PEER_AUTH = 0x00000001,
5726 WMI_PEER_QOS = 0x00000002,
5727 WMI_PEER_NEED_PTK_4_WAY = 0x00000004,
5728 WMI_PEER_NEED_GTK_2_WAY = 0x00000010,
5729 WMI_PEER_APSD = 0x00000800,
5730 WMI_PEER_HT = 0x00001000,
5731 WMI_PEER_40MHZ = 0x00002000,
5732 WMI_PEER_STBC = 0x00008000,
5733 WMI_PEER_LDPC = 0x00010000,
5734 WMI_PEER_DYN_MIMOPS = 0x00020000,
5735 WMI_PEER_STATIC_MIMOPS = 0x00040000,
5736 WMI_PEER_SPATIAL_MUX = 0x00200000,
5737 WMI_PEER_VHT = 0x02000000,
5738 WMI_PEER_80MHZ = 0x04000000,
5739 WMI_PEER_VHT_2G = 0x08000000,
5740 WMI_PEER_PMF = 0x10000000,
5741};
5742
5743enum wmi_10x_peer_flags {
5744 WMI_10X_PEER_AUTH = 0x00000001,
5745 WMI_10X_PEER_QOS = 0x00000002,
5746 WMI_10X_PEER_NEED_PTK_4_WAY = 0x00000004,
5747 WMI_10X_PEER_NEED_GTK_2_WAY = 0x00000010,
5748 WMI_10X_PEER_APSD = 0x00000800,
5749 WMI_10X_PEER_HT = 0x00001000,
5750 WMI_10X_PEER_40MHZ = 0x00002000,
5751 WMI_10X_PEER_STBC = 0x00008000,
5752 WMI_10X_PEER_LDPC = 0x00010000,
5753 WMI_10X_PEER_DYN_MIMOPS = 0x00020000,
5754 WMI_10X_PEER_STATIC_MIMOPS = 0x00040000,
5755 WMI_10X_PEER_SPATIAL_MUX = 0x00200000,
5756 WMI_10X_PEER_VHT = 0x02000000,
5757 WMI_10X_PEER_80MHZ = 0x04000000,
5758};
5759
5760enum wmi_10_2_peer_flags {
5761 WMI_10_2_PEER_AUTH = 0x00000001,
5762 WMI_10_2_PEER_QOS = 0x00000002,
5763 WMI_10_2_PEER_NEED_PTK_4_WAY = 0x00000004,
5764 WMI_10_2_PEER_NEED_GTK_2_WAY = 0x00000010,
5765 WMI_10_2_PEER_APSD = 0x00000800,
5766 WMI_10_2_PEER_HT = 0x00001000,
5767 WMI_10_2_PEER_40MHZ = 0x00002000,
5768 WMI_10_2_PEER_STBC = 0x00008000,
5769 WMI_10_2_PEER_LDPC = 0x00010000,
5770 WMI_10_2_PEER_DYN_MIMOPS = 0x00020000,
5771 WMI_10_2_PEER_STATIC_MIMOPS = 0x00040000,
5772 WMI_10_2_PEER_SPATIAL_MUX = 0x00200000,
5773 WMI_10_2_PEER_VHT = 0x02000000,
5774 WMI_10_2_PEER_80MHZ = 0x04000000,
5775 WMI_10_2_PEER_VHT_2G = 0x08000000,
5776 WMI_10_2_PEER_PMF = 0x10000000,
5777};
Kalle Valo5e3dd152013-06-12 20:52:10 +03005778
5779/*
5780 * Peer rate capabilities.
5781 *
5782 * This is of interest to the ratecontrol
5783 * module which resides in the firmware. The bit definitions are
5784 * consistent with that defined in if_athrate.c.
5785 */
5786#define WMI_RC_DS_FLAG 0x01
5787#define WMI_RC_CW40_FLAG 0x02
5788#define WMI_RC_SGI_FLAG 0x04
5789#define WMI_RC_HT_FLAG 0x08
5790#define WMI_RC_RTSCTS_FLAG 0x10
5791#define WMI_RC_TX_STBC_FLAG 0x20
5792#define WMI_RC_RX_STBC_FLAG 0xC0
5793#define WMI_RC_RX_STBC_FLAG_S 6
5794#define WMI_RC_WEP_TKIP_FLAG 0x100
5795#define WMI_RC_TS_FLAG 0x200
5796#define WMI_RC_UAPSD_FLAG 0x400
5797
5798/* Maximum listen interval supported by hw in units of beacon interval */
5799#define ATH10K_MAX_HW_LISTEN_INTERVAL 5
5800
Michal Kazior24c88f72014-07-25 13:32:17 +02005801struct wmi_common_peer_assoc_complete_cmd {
Kalle Valo5e3dd152013-06-12 20:52:10 +03005802 struct wmi_mac_addr peer_macaddr;
5803 __le32 vdev_id;
5804 __le32 peer_new_assoc; /* 1=assoc, 0=reassoc */
5805 __le32 peer_associd; /* 16 LSBs */
5806 __le32 peer_flags;
5807 __le32 peer_caps; /* 16 LSBs */
5808 __le32 peer_listen_intval;
5809 __le32 peer_ht_caps;
5810 __le32 peer_max_mpdu;
5811 __le32 peer_mpdu_density; /* 0..16 */
5812 __le32 peer_rate_caps;
5813 struct wmi_rate_set peer_legacy_rates;
5814 struct wmi_rate_set peer_ht_rates;
5815 __le32 peer_nss; /* num of spatial streams */
5816 __le32 peer_vht_caps;
5817 __le32 peer_phymode;
5818 struct wmi_vht_rate_set peer_vht_rates;
Michal Kazior24c88f72014-07-25 13:32:17 +02005819};
5820
5821struct wmi_main_peer_assoc_complete_cmd {
5822 struct wmi_common_peer_assoc_complete_cmd cmd;
5823
Kalle Valo5e3dd152013-06-12 20:52:10 +03005824 /* HT Operation Element of the peer. Five bytes packed in 2
5825 * INT32 array and filled from lsb to msb. */
5826 __le32 peer_ht_info[2];
5827} __packed;
5828
Michal Kazior24c88f72014-07-25 13:32:17 +02005829struct wmi_10_1_peer_assoc_complete_cmd {
5830 struct wmi_common_peer_assoc_complete_cmd cmd;
5831} __packed;
5832
5833#define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_LSB 0
5834#define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_MASK 0x0f
5835#define WMI_PEER_ASSOC_INFO0_MAX_NSS_LSB 4
5836#define WMI_PEER_ASSOC_INFO0_MAX_NSS_MASK 0xf0
5837
5838struct wmi_10_2_peer_assoc_complete_cmd {
5839 struct wmi_common_peer_assoc_complete_cmd cmd;
5840 __le32 info0; /* WMI_PEER_ASSOC_INFO0_ */
5841} __packed;
5842
Vasanthakumar Thiagarajanb54e16f2015-11-05 11:33:58 +05305843struct wmi_10_4_peer_assoc_complete_cmd {
5844 struct wmi_10_2_peer_assoc_complete_cmd cmd;
5845 __le32 peer_bw_rxnss_override;
5846} __packed;
5847
Kalle Valo5e3dd152013-06-12 20:52:10 +03005848struct wmi_peer_assoc_complete_arg {
5849 u8 addr[ETH_ALEN];
5850 u32 vdev_id;
5851 bool peer_reassoc;
5852 u16 peer_aid;
5853 u32 peer_flags; /* see %WMI_PEER_ */
5854 u16 peer_caps;
5855 u32 peer_listen_intval;
5856 u32 peer_ht_caps;
5857 u32 peer_max_mpdu;
5858 u32 peer_mpdu_density; /* 0..16 */
5859 u32 peer_rate_caps; /* see %WMI_RC_ */
5860 struct wmi_rate_set_arg peer_legacy_rates;
5861 struct wmi_rate_set_arg peer_ht_rates;
5862 u32 peer_num_spatial_streams;
5863 u32 peer_vht_caps;
5864 enum wmi_phy_mode peer_phymode;
5865 struct wmi_vht_rate_set_arg peer_vht_rates;
5866};
5867
5868struct wmi_peer_add_wds_entry_cmd {
5869 /* peer MAC address */
5870 struct wmi_mac_addr peer_macaddr;
5871 /* wds MAC addr */
5872 struct wmi_mac_addr wds_macaddr;
5873} __packed;
5874
5875struct wmi_peer_remove_wds_entry_cmd {
5876 /* wds MAC addr */
5877 struct wmi_mac_addr wds_macaddr;
5878} __packed;
5879
5880struct wmi_peer_q_empty_callback_event {
5881 /* peer MAC address */
5882 struct wmi_mac_addr peer_macaddr;
5883} __packed;
5884
5885/*
5886 * Channel info WMI event
5887 */
5888struct wmi_chan_info_event {
5889 __le32 err_code;
5890 __le32 freq;
5891 __le32 cmd_flags;
5892 __le32 noise_floor;
5893 __le32 rx_clear_count;
5894 __le32 cycle_count;
5895} __packed;
5896
Raja Manib2297ba2015-06-22 20:22:23 +05305897struct wmi_10_4_chan_info_event {
5898 __le32 err_code;
5899 __le32 freq;
5900 __le32 cmd_flags;
5901 __le32 noise_floor;
5902 __le32 rx_clear_count;
5903 __le32 cycle_count;
5904 __le32 chan_tx_pwr_range;
5905 __le32 chan_tx_pwr_tp;
5906 __le32 rx_frame_count;
5907} __packed;
5908
Kalle Valo5a13e762014-01-20 11:01:46 +02005909struct wmi_peer_sta_kickout_event {
5910 struct wmi_mac_addr peer_macaddr;
5911} __packed;
5912
Michal Kazior2e1dea42013-07-31 10:32:40 +02005913#define WMI_CHAN_INFO_FLAG_COMPLETE BIT(0)
Vasanthakumar Thiagarajan3d2a2e22015-08-12 16:24:04 +05305914#define WMI_CHAN_INFO_FLAG_PRE_COMPLETE BIT(1)
Michal Kazior2e1dea42013-07-31 10:32:40 +02005915
Kalle Valo5e3dd152013-06-12 20:52:10 +03005916/* Beacon filter wmi command info */
5917#define BCN_FLT_MAX_SUPPORTED_IES 256
5918#define BCN_FLT_MAX_ELEMS_IE_LIST (BCN_FLT_MAX_SUPPORTED_IES / 32)
5919
5920struct bss_bcn_stats {
5921 __le32 vdev_id;
5922 __le32 bss_bcnsdropped;
5923 __le32 bss_bcnsdelivered;
5924} __packed;
5925
5926struct bcn_filter_stats {
5927 __le32 bcns_dropped;
5928 __le32 bcns_delivered;
5929 __le32 activefilters;
5930 struct bss_bcn_stats bss_stats;
5931} __packed;
5932
5933struct wmi_add_bcn_filter_cmd {
5934 u32 vdev_id;
5935 u32 ie_map[BCN_FLT_MAX_ELEMS_IE_LIST];
5936} __packed;
5937
5938enum wmi_sta_keepalive_method {
5939 WMI_STA_KEEPALIVE_METHOD_NULL_FRAME = 1,
5940 WMI_STA_KEEPALIVE_METHOD_UNSOLICITATED_ARP_RESPONSE = 2,
5941};
5942
Michal Kazior46725b152015-01-28 09:57:49 +02005943#define WMI_STA_KEEPALIVE_INTERVAL_DISABLE 0
5944
5945/* Firmware crashes if keepalive interval exceeds this limit */
5946#define WMI_STA_KEEPALIVE_INTERVAL_MAX_SECONDS 0xffff
5947
Kalle Valo5e3dd152013-06-12 20:52:10 +03005948/* note: ip4 addresses are in network byte order, i.e. big endian */
5949struct wmi_sta_keepalive_arp_resp {
5950 __be32 src_ip4_addr;
5951 __be32 dest_ip4_addr;
5952 struct wmi_mac_addr dest_mac_addr;
5953} __packed;
5954
5955struct wmi_sta_keepalive_cmd {
5956 __le32 vdev_id;
5957 __le32 enabled;
5958 __le32 method; /* WMI_STA_KEEPALIVE_METHOD_ */
5959 __le32 interval; /* in seconds */
5960 struct wmi_sta_keepalive_arp_resp arp_resp;
5961} __packed;
5962
Janusz Dziedzic6e8b1882015-01-28 09:57:39 +02005963struct wmi_sta_keepalive_arg {
5964 u32 vdev_id;
5965 u32 enabled;
5966 u32 method;
5967 u32 interval;
5968 __be32 src_ip4_addr;
5969 __be32 dest_ip4_addr;
5970 const u8 dest_mac_addr[ETH_ALEN];
5971};
5972
Michal Kazior9cfbce72013-07-16 09:54:36 +02005973enum wmi_force_fw_hang_type {
5974 WMI_FORCE_FW_HANG_ASSERT = 1,
5975 WMI_FORCE_FW_HANG_NO_DETECT,
5976 WMI_FORCE_FW_HANG_CTRL_EP_FULL,
5977 WMI_FORCE_FW_HANG_EMPTY_POINT,
5978 WMI_FORCE_FW_HANG_STACK_OVERFLOW,
5979 WMI_FORCE_FW_HANG_INFINITE_LOOP,
5980};
5981
5982#define WMI_FORCE_FW_HANG_RANDOM_TIME 0xFFFFFFFF
5983
5984struct wmi_force_fw_hang_cmd {
5985 __le32 type;
5986 __le32 delay_ms;
5987} __packed;
5988
Kalle Valof118a3e2014-01-03 12:59:31 +02005989enum ath10k_dbglog_level {
5990 ATH10K_DBGLOG_LEVEL_VERBOSE = 0,
5991 ATH10K_DBGLOG_LEVEL_INFO = 1,
5992 ATH10K_DBGLOG_LEVEL_WARN = 2,
5993 ATH10K_DBGLOG_LEVEL_ERR = 3,
5994};
5995
5996/* VAP ids to enable dbglog */
5997#define ATH10K_DBGLOG_CFG_VAP_LOG_LSB 0
5998#define ATH10K_DBGLOG_CFG_VAP_LOG_MASK 0x0000ffff
5999
6000/* to enable dbglog in the firmware */
6001#define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_LSB 16
6002#define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_MASK 0x00010000
6003
6004/* timestamp resolution */
6005#define ATH10K_DBGLOG_CFG_RESOLUTION_LSB 17
6006#define ATH10K_DBGLOG_CFG_RESOLUTION_MASK 0x000E0000
6007
6008/* number of queued messages before sending them to the host */
6009#define ATH10K_DBGLOG_CFG_REPORT_SIZE_LSB 20
6010#define ATH10K_DBGLOG_CFG_REPORT_SIZE_MASK 0x0ff00000
6011
6012/*
6013 * Log levels to enable. This defines the minimum level to enable, this is
6014 * not a bitmask. See enum ath10k_dbglog_level for the values.
6015 */
6016#define ATH10K_DBGLOG_CFG_LOG_LVL_LSB 28
6017#define ATH10K_DBGLOG_CFG_LOG_LVL_MASK 0x70000000
6018
6019/*
6020 * Note: this is a cleaned up version of a struct firmware uses. For
6021 * example, config_valid was hidden inside an array.
6022 */
6023struct wmi_dbglog_cfg_cmd {
6024 /* bitmask to hold mod id config*/
6025 __le32 module_enable;
6026
6027 /* see ATH10K_DBGLOG_CFG_ */
6028 __le32 config_enable;
6029
6030 /* mask of module id bits to be changed */
6031 __le32 module_valid;
6032
6033 /* mask of config bits to be changed, see ATH10K_DBGLOG_CFG_ */
6034 __le32 config_valid;
6035} __packed;
6036
Michal Kaziorc1a46542015-03-10 16:21:54 +02006037enum wmi_roam_reason {
6038 WMI_ROAM_REASON_BETTER_AP = 1,
6039 WMI_ROAM_REASON_BEACON_MISS = 2,
6040 WMI_ROAM_REASON_LOW_RSSI = 3,
6041 WMI_ROAM_REASON_SUITABLE_AP_FOUND = 4,
6042 WMI_ROAM_REASON_HO_FAILED = 5,
6043
6044 /* keep last */
6045 WMI_ROAM_REASON_MAX,
6046};
6047
6048struct wmi_roam_ev {
6049 __le32 vdev_id;
6050 __le32 reason;
6051} __packed;
6052
Kalle Valo5e3dd152013-06-12 20:52:10 +03006053#define ATH10K_FRAGMT_THRESHOLD_MIN 540
6054#define ATH10K_FRAGMT_THRESHOLD_MAX 2346
6055
6056#define WMI_MAX_EVENT 0x1000
6057/* Maximum number of pending TXed WMI packets */
Kalle Valo5e3dd152013-06-12 20:52:10 +03006058#define WMI_SKB_HEADROOM sizeof(struct wmi_cmd_hdr)
6059
6060/* By default disable power save for IBSS */
6061#define ATH10K_DEFAULT_ATIM 0
6062
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006063#define WMI_MAX_MEM_REQS 16
6064
Michal Kazior32653cf2014-12-03 10:10:26 +02006065struct wmi_scan_ev_arg {
6066 __le32 event_type; /* %WMI_SCAN_EVENT_ */
6067 __le32 reason; /* %WMI_SCAN_REASON_ */
6068 __le32 channel_freq; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */
6069 __le32 scan_req_id;
6070 __le32 scan_id;
6071 __le32 vdev_id;
6072};
6073
6074struct wmi_mgmt_rx_ev_arg {
6075 __le32 channel;
6076 __le32 snr;
6077 __le32 rate;
6078 __le32 phy_mode;
6079 __le32 buf_len;
6080 __le32 status; /* %WMI_RX_STATUS_ */
6081};
6082
6083struct wmi_ch_info_ev_arg {
6084 __le32 err_code;
6085 __le32 freq;
6086 __le32 cmd_flags;
6087 __le32 noise_floor;
6088 __le32 rx_clear_count;
6089 __le32 cycle_count;
Raja Manib2297ba2015-06-22 20:22:23 +05306090 __le32 chan_tx_pwr_range;
6091 __le32 chan_tx_pwr_tp;
6092 __le32 rx_frame_count;
Michal Kazior32653cf2014-12-03 10:10:26 +02006093};
6094
6095struct wmi_vdev_start_ev_arg {
6096 __le32 vdev_id;
6097 __le32 req_id;
6098 __le32 resp_type; /* %WMI_VDEV_RESP_ */
6099 __le32 status;
6100};
6101
6102struct wmi_peer_kick_ev_arg {
6103 const u8 *mac_addr;
6104};
6105
6106struct wmi_swba_ev_arg {
6107 __le32 vdev_map;
Raja Mania03fee32015-06-22 20:22:20 +05306108 struct wmi_tim_info_arg tim_info[WMI_MAX_AP_VDEV];
Michal Kazior32653cf2014-12-03 10:10:26 +02006109 const struct wmi_p2p_noa_info *noa_info[WMI_MAX_AP_VDEV];
6110};
6111
6112struct wmi_phyerr_ev_arg {
Raja Mani991adf72015-08-14 11:13:29 +03006113 u32 tsf_timestamp;
6114 u16 freq1;
6115 u16 freq2;
6116 u8 rssi_combined;
6117 u8 chan_width_mhz;
6118 u8 phy_err_code;
6119 u16 nf_chains[4];
6120 u32 buf_len;
6121 const u8 *buf;
6122 u8 hdr_len;
6123};
6124
6125struct wmi_phyerr_hdr_arg {
6126 u32 num_phyerrs;
6127 u32 tsf_l32;
6128 u32 tsf_u32;
6129 u32 buf_len;
6130 const void *phyerrs;
Michal Kazior32653cf2014-12-03 10:10:26 +02006131};
6132
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006133struct wmi_svc_rdy_ev_arg {
6134 __le32 min_tx_power;
6135 __le32 max_tx_power;
6136 __le32 ht_cap;
6137 __le32 vht_cap;
6138 __le32 sw_ver0;
6139 __le32 sw_ver1;
Michal Kaziorca996ec2014-12-03 10:11:32 +02006140 __le32 fw_build;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006141 __le32 phy_capab;
6142 __le32 num_rf_chains;
6143 __le32 eeprom_rd;
6144 __le32 num_mem_reqs;
6145 const __le32 *service_map;
Michal Kazior2a3e60d2014-11-27 10:11:15 +01006146 size_t service_map_len;
Michal Kazior5c01aa3d2014-09-18 15:21:24 +02006147 const struct wlan_host_mem_req *mem_reqs[WMI_MAX_MEM_REQS];
6148};
6149
Michal Kazior32653cf2014-12-03 10:10:26 +02006150struct wmi_rdy_ev_arg {
6151 __le32 sw_version;
6152 __le32 abi_version;
6153 __le32 status;
6154 const u8 *mac_addr;
6155};
6156
Michal Kaziorc1a46542015-03-10 16:21:54 +02006157struct wmi_roam_ev_arg {
6158 __le32 vdev_id;
6159 __le32 reason;
6160 __le32 rssi;
6161};
6162
Rajkumar Manoharana57a6a22014-12-17 12:22:17 +02006163struct wmi_pdev_temperature_event {
6164 /* temperature value in Celcius degree */
6165 __le32 temperature;
6166} __packed;
6167
Janusz Dziedzicf5431e82015-03-23 17:32:53 +02006168/* WOW structures */
6169enum wmi_wow_wakeup_event {
6170 WOW_BMISS_EVENT = 0,
6171 WOW_BETTER_AP_EVENT,
6172 WOW_DEAUTH_RECVD_EVENT,
6173 WOW_MAGIC_PKT_RECVD_EVENT,
6174 WOW_GTK_ERR_EVENT,
6175 WOW_FOURWAY_HSHAKE_EVENT,
6176 WOW_EAPOL_RECVD_EVENT,
6177 WOW_NLO_DETECTED_EVENT,
6178 WOW_DISASSOC_RECVD_EVENT,
6179 WOW_PATTERN_MATCH_EVENT,
6180 WOW_CSA_IE_EVENT,
6181 WOW_PROBE_REQ_WPS_IE_EVENT,
6182 WOW_AUTH_REQ_EVENT,
6183 WOW_ASSOC_REQ_EVENT,
6184 WOW_HTT_EVENT,
6185 WOW_RA_MATCH_EVENT,
6186 WOW_HOST_AUTO_SHUTDOWN_EVENT,
6187 WOW_IOAC_MAGIC_EVENT,
6188 WOW_IOAC_SHORT_EVENT,
6189 WOW_IOAC_EXTEND_EVENT,
6190 WOW_IOAC_TIMER_EVENT,
6191 WOW_DFS_PHYERR_RADAR_EVENT,
6192 WOW_BEACON_EVENT,
6193 WOW_CLIENT_KICKOUT_EVENT,
6194 WOW_EVENT_MAX,
6195};
6196
6197#define C2S(x) case x: return #x
6198
6199static inline const char *wow_wakeup_event(enum wmi_wow_wakeup_event ev)
6200{
6201 switch (ev) {
6202 C2S(WOW_BMISS_EVENT);
6203 C2S(WOW_BETTER_AP_EVENT);
6204 C2S(WOW_DEAUTH_RECVD_EVENT);
6205 C2S(WOW_MAGIC_PKT_RECVD_EVENT);
6206 C2S(WOW_GTK_ERR_EVENT);
6207 C2S(WOW_FOURWAY_HSHAKE_EVENT);
6208 C2S(WOW_EAPOL_RECVD_EVENT);
6209 C2S(WOW_NLO_DETECTED_EVENT);
6210 C2S(WOW_DISASSOC_RECVD_EVENT);
6211 C2S(WOW_PATTERN_MATCH_EVENT);
6212 C2S(WOW_CSA_IE_EVENT);
6213 C2S(WOW_PROBE_REQ_WPS_IE_EVENT);
6214 C2S(WOW_AUTH_REQ_EVENT);
6215 C2S(WOW_ASSOC_REQ_EVENT);
6216 C2S(WOW_HTT_EVENT);
6217 C2S(WOW_RA_MATCH_EVENT);
6218 C2S(WOW_HOST_AUTO_SHUTDOWN_EVENT);
6219 C2S(WOW_IOAC_MAGIC_EVENT);
6220 C2S(WOW_IOAC_SHORT_EVENT);
6221 C2S(WOW_IOAC_EXTEND_EVENT);
6222 C2S(WOW_IOAC_TIMER_EVENT);
6223 C2S(WOW_DFS_PHYERR_RADAR_EVENT);
6224 C2S(WOW_BEACON_EVENT);
6225 C2S(WOW_CLIENT_KICKOUT_EVENT);
6226 C2S(WOW_EVENT_MAX);
6227 default:
6228 return NULL;
6229 }
6230}
6231
6232enum wmi_wow_wake_reason {
6233 WOW_REASON_UNSPECIFIED = -1,
6234 WOW_REASON_NLOD = 0,
6235 WOW_REASON_AP_ASSOC_LOST,
6236 WOW_REASON_LOW_RSSI,
6237 WOW_REASON_DEAUTH_RECVD,
6238 WOW_REASON_DISASSOC_RECVD,
6239 WOW_REASON_GTK_HS_ERR,
6240 WOW_REASON_EAP_REQ,
6241 WOW_REASON_FOURWAY_HS_RECV,
6242 WOW_REASON_TIMER_INTR_RECV,
6243 WOW_REASON_PATTERN_MATCH_FOUND,
6244 WOW_REASON_RECV_MAGIC_PATTERN,
6245 WOW_REASON_P2P_DISC,
6246 WOW_REASON_WLAN_HB,
6247 WOW_REASON_CSA_EVENT,
6248 WOW_REASON_PROBE_REQ_WPS_IE_RECV,
6249 WOW_REASON_AUTH_REQ_RECV,
6250 WOW_REASON_ASSOC_REQ_RECV,
6251 WOW_REASON_HTT_EVENT,
6252 WOW_REASON_RA_MATCH,
6253 WOW_REASON_HOST_AUTO_SHUTDOWN,
6254 WOW_REASON_IOAC_MAGIC_EVENT,
6255 WOW_REASON_IOAC_SHORT_EVENT,
6256 WOW_REASON_IOAC_EXTEND_EVENT,
6257 WOW_REASON_IOAC_TIMER_EVENT,
6258 WOW_REASON_ROAM_HO,
6259 WOW_REASON_DFS_PHYERR_RADADR_EVENT,
6260 WOW_REASON_BEACON_RECV,
6261 WOW_REASON_CLIENT_KICKOUT_EVENT,
6262 WOW_REASON_DEBUG_TEST = 0xFF,
6263};
6264
6265static inline const char *wow_reason(enum wmi_wow_wake_reason reason)
6266{
6267 switch (reason) {
6268 C2S(WOW_REASON_UNSPECIFIED);
6269 C2S(WOW_REASON_NLOD);
6270 C2S(WOW_REASON_AP_ASSOC_LOST);
6271 C2S(WOW_REASON_LOW_RSSI);
6272 C2S(WOW_REASON_DEAUTH_RECVD);
6273 C2S(WOW_REASON_DISASSOC_RECVD);
6274 C2S(WOW_REASON_GTK_HS_ERR);
6275 C2S(WOW_REASON_EAP_REQ);
6276 C2S(WOW_REASON_FOURWAY_HS_RECV);
6277 C2S(WOW_REASON_TIMER_INTR_RECV);
6278 C2S(WOW_REASON_PATTERN_MATCH_FOUND);
6279 C2S(WOW_REASON_RECV_MAGIC_PATTERN);
6280 C2S(WOW_REASON_P2P_DISC);
6281 C2S(WOW_REASON_WLAN_HB);
6282 C2S(WOW_REASON_CSA_EVENT);
6283 C2S(WOW_REASON_PROBE_REQ_WPS_IE_RECV);
6284 C2S(WOW_REASON_AUTH_REQ_RECV);
6285 C2S(WOW_REASON_ASSOC_REQ_RECV);
6286 C2S(WOW_REASON_HTT_EVENT);
6287 C2S(WOW_REASON_RA_MATCH);
6288 C2S(WOW_REASON_HOST_AUTO_SHUTDOWN);
6289 C2S(WOW_REASON_IOAC_MAGIC_EVENT);
6290 C2S(WOW_REASON_IOAC_SHORT_EVENT);
6291 C2S(WOW_REASON_IOAC_EXTEND_EVENT);
6292 C2S(WOW_REASON_IOAC_TIMER_EVENT);
6293 C2S(WOW_REASON_ROAM_HO);
6294 C2S(WOW_REASON_DFS_PHYERR_RADADR_EVENT);
6295 C2S(WOW_REASON_BEACON_RECV);
6296 C2S(WOW_REASON_CLIENT_KICKOUT_EVENT);
6297 C2S(WOW_REASON_DEBUG_TEST);
6298 default:
6299 return NULL;
6300 }
6301}
6302
6303#undef C2S
6304
6305struct wmi_wow_ev_arg {
6306 u32 vdev_id;
6307 u32 flag;
6308 enum wmi_wow_wake_reason wake_reason;
6309 u32 data_len;
6310};
6311
Janusz Dziedzic25c86612015-03-23 17:32:54 +02006312#define WOW_MIN_PATTERN_SIZE 1
6313#define WOW_MAX_PATTERN_SIZE 148
6314#define WOW_MAX_PKT_OFFSET 128
6315
Marek Puzyniakad45c882015-03-30 09:51:53 +03006316enum wmi_tdls_state {
6317 WMI_TDLS_DISABLE,
6318 WMI_TDLS_ENABLE_PASSIVE,
6319 WMI_TDLS_ENABLE_ACTIVE,
6320};
6321
6322enum wmi_tdls_peer_state {
6323 WMI_TDLS_PEER_STATE_PEERING,
6324 WMI_TDLS_PEER_STATE_CONNECTED,
6325 WMI_TDLS_PEER_STATE_TEARDOWN,
6326};
6327
6328struct wmi_tdls_peer_update_cmd_arg {
6329 u32 vdev_id;
6330 enum wmi_tdls_peer_state peer_state;
6331 u8 addr[ETH_ALEN];
6332};
6333
6334#define WMI_TDLS_MAX_SUPP_OPER_CLASSES 32
6335
6336struct wmi_tdls_peer_capab_arg {
6337 u8 peer_uapsd_queues;
6338 u8 peer_max_sp;
6339 u32 buff_sta_support;
6340 u32 off_chan_support;
6341 u32 peer_curr_operclass;
6342 u32 self_curr_operclass;
6343 u32 peer_chan_len;
6344 u32 peer_operclass_len;
6345 u8 peer_operclass[WMI_TDLS_MAX_SUPP_OPER_CLASSES];
6346 u32 is_peer_responder;
6347 u32 pref_offchan_num;
6348 u32 pref_offchan_bw;
6349};
6350
Vivek Natarajan08e75ea2015-08-04 10:45:11 +05306351enum wmi_txbf_conf {
6352 WMI_TXBF_CONF_UNSUPPORTED,
6353 WMI_TXBF_CONF_BEFORE_ASSOC,
6354 WMI_TXBF_CONF_AFTER_ASSOC,
6355};
6356
Maharaja62f77f02015-10-21 11:49:18 +03006357#define WMI_CCA_DETECT_LEVEL_AUTO 0
6358#define WMI_CCA_DETECT_MARGIN_AUTO 0
6359
6360struct wmi_pdev_set_adaptive_cca_params {
6361 __le32 enable;
6362 __le32 cca_detect_level;
6363 __le32 cca_detect_margin;
6364} __packed;
6365
Kalle Valo5e3dd152013-06-12 20:52:10 +03006366struct ath10k;
6367struct ath10k_vif;
Michal Kazior0226d602014-12-03 10:11:22 +02006368struct ath10k_fw_stats_pdev;
6369struct ath10k_fw_stats_peer;
Manikanta Pubbisettybc6f9ae2015-10-16 15:54:52 +03006370struct ath10k_fw_stats;
Kalle Valo5e3dd152013-06-12 20:52:10 +03006371
6372int ath10k_wmi_attach(struct ath10k *ar);
6373void ath10k_wmi_detach(struct ath10k *ar);
Vasanthakumar Thiagarajana925a372015-08-28 17:21:34 +05306374void ath10k_wmi_free_host_mem(struct ath10k *ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03006375int ath10k_wmi_wait_for_service_ready(struct ath10k *ar);
6376int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar);
Kalle Valo5e3dd152013-06-12 20:52:10 +03006377
Michal Kazior0226d602014-12-03 10:11:22 +02006378struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len);
Michal Kazior95bf21f2014-05-16 17:15:39 +03006379int ath10k_wmi_connect(struct ath10k *ar);
Kalle Valo666a73f32014-09-10 18:23:23 +03006380
6381struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len);
6382int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id);
Michal Kaziord7579d12014-12-03 10:10:54 +02006383int ath10k_wmi_cmd_send_nowait(struct ath10k *ar, struct sk_buff *skb,
6384 u32 cmd_id);
Kalle Valo5e3dd152013-06-12 20:52:10 +03006385void ath10k_wmi_start_scan_init(struct ath10k *ar, struct wmi_start_scan_arg *);
Kalle Valo5e3dd152013-06-12 20:52:10 +03006386
Michal Kaziorb91251f2015-01-24 12:14:49 +02006387void ath10k_wmi_pull_pdev_stats_base(const struct wmi_pdev_stats_base *src,
6388 struct ath10k_fw_stats_pdev *dst);
6389void ath10k_wmi_pull_pdev_stats_tx(const struct wmi_pdev_stats_tx *src,
6390 struct ath10k_fw_stats_pdev *dst);
6391void ath10k_wmi_pull_pdev_stats_rx(const struct wmi_pdev_stats_rx *src,
6392 struct ath10k_fw_stats_pdev *dst);
6393void ath10k_wmi_pull_pdev_stats_extra(const struct wmi_pdev_stats_extra *src,
6394 struct ath10k_fw_stats_pdev *dst);
Michal Kazior0226d602014-12-03 10:11:22 +02006395void ath10k_wmi_pull_peer_stats(const struct wmi_peer_stats *src,
6396 struct ath10k_fw_stats_peer *dst);
6397void ath10k_wmi_put_host_mem_chunks(struct ath10k *ar,
6398 struct wmi_host_mem_chunks *chunks);
6399void ath10k_wmi_put_start_scan_common(struct wmi_start_scan_common *cmn,
6400 const struct wmi_start_scan_arg *arg);
Michal Kazior5e752e42015-01-19 09:53:41 +01006401void ath10k_wmi_set_wmm_param(struct wmi_wmm_params *params,
6402 const struct wmi_wmm_params_arg *arg);
Michal Kazior0226d602014-12-03 10:11:22 +02006403void ath10k_wmi_put_wmi_channel(struct wmi_channel *ch,
6404 const struct wmi_channel_arg *arg);
6405int ath10k_wmi_start_scan_verify(const struct wmi_start_scan_arg *arg);
6406
6407int ath10k_wmi_event_scan(struct ath10k *ar, struct sk_buff *skb);
6408int ath10k_wmi_event_mgmt_rx(struct ath10k *ar, struct sk_buff *skb);
6409void ath10k_wmi_event_chan_info(struct ath10k *ar, struct sk_buff *skb);
6410void ath10k_wmi_event_echo(struct ath10k *ar, struct sk_buff *skb);
6411int ath10k_wmi_event_debug_mesg(struct ath10k *ar, struct sk_buff *skb);
6412void ath10k_wmi_event_update_stats(struct ath10k *ar, struct sk_buff *skb);
6413void ath10k_wmi_event_vdev_start_resp(struct ath10k *ar, struct sk_buff *skb);
6414void ath10k_wmi_event_vdev_stopped(struct ath10k *ar, struct sk_buff *skb);
6415void ath10k_wmi_event_peer_sta_kickout(struct ath10k *ar, struct sk_buff *skb);
6416void ath10k_wmi_event_host_swba(struct ath10k *ar, struct sk_buff *skb);
6417void ath10k_wmi_event_tbttoffset_update(struct ath10k *ar, struct sk_buff *skb);
6418void ath10k_wmi_event_dfs(struct ath10k *ar,
Raja Mani991adf72015-08-14 11:13:29 +03006419 struct wmi_phyerr_ev_arg *phyerr, u64 tsf);
Michal Kazior0226d602014-12-03 10:11:22 +02006420void ath10k_wmi_event_spectral_scan(struct ath10k *ar,
Raja Mani991adf72015-08-14 11:13:29 +03006421 struct wmi_phyerr_ev_arg *phyerr,
Michal Kazior0226d602014-12-03 10:11:22 +02006422 u64 tsf);
6423void ath10k_wmi_event_phyerr(struct ath10k *ar, struct sk_buff *skb);
6424void ath10k_wmi_event_roam(struct ath10k *ar, struct sk_buff *skb);
6425void ath10k_wmi_event_profile_match(struct ath10k *ar, struct sk_buff *skb);
6426void ath10k_wmi_event_debug_print(struct ath10k *ar, struct sk_buff *skb);
6427void ath10k_wmi_event_pdev_qvit(struct ath10k *ar, struct sk_buff *skb);
6428void ath10k_wmi_event_wlan_profile_data(struct ath10k *ar, struct sk_buff *skb);
6429void ath10k_wmi_event_rtt_measurement_report(struct ath10k *ar,
6430 struct sk_buff *skb);
6431void ath10k_wmi_event_tsf_measurement_report(struct ath10k *ar,
6432 struct sk_buff *skb);
6433void ath10k_wmi_event_rtt_error_report(struct ath10k *ar, struct sk_buff *skb);
6434void ath10k_wmi_event_wow_wakeup_host(struct ath10k *ar, struct sk_buff *skb);
6435void ath10k_wmi_event_dcs_interference(struct ath10k *ar, struct sk_buff *skb);
6436void ath10k_wmi_event_pdev_tpc_config(struct ath10k *ar, struct sk_buff *skb);
6437void ath10k_wmi_event_pdev_ftm_intg(struct ath10k *ar, struct sk_buff *skb);
6438void ath10k_wmi_event_gtk_offload_status(struct ath10k *ar,
6439 struct sk_buff *skb);
6440void ath10k_wmi_event_gtk_rekey_fail(struct ath10k *ar, struct sk_buff *skb);
6441void ath10k_wmi_event_delba_complete(struct ath10k *ar, struct sk_buff *skb);
6442void ath10k_wmi_event_addba_complete(struct ath10k *ar, struct sk_buff *skb);
6443void ath10k_wmi_event_vdev_install_key_complete(struct ath10k *ar,
6444 struct sk_buff *skb);
6445void ath10k_wmi_event_inst_rssi_stats(struct ath10k *ar, struct sk_buff *skb);
6446void ath10k_wmi_event_vdev_standby_req(struct ath10k *ar, struct sk_buff *skb);
6447void ath10k_wmi_event_vdev_resume_req(struct ath10k *ar, struct sk_buff *skb);
6448void ath10k_wmi_event_service_ready(struct ath10k *ar, struct sk_buff *skb);
6449int ath10k_wmi_event_ready(struct ath10k *ar, struct sk_buff *skb);
Raja Mani991adf72015-08-14 11:13:29 +03006450int ath10k_wmi_op_pull_phyerr_ev(struct ath10k *ar, const void *phyerr_buf,
6451 int left_len, struct wmi_phyerr_ev_arg *arg);
Manikanta Pubbisettybc6f9ae2015-10-16 15:54:52 +03006452void ath10k_wmi_main_op_fw_stats_fill(struct ath10k *ar,
6453 struct ath10k_fw_stats *fw_stats,
6454 char *buf);
6455void ath10k_wmi_10x_op_fw_stats_fill(struct ath10k *ar,
6456 struct ath10k_fw_stats *fw_stats,
6457 char *buf);
6458size_t ath10k_wmi_fw_stats_num_peers(struct list_head *head);
6459size_t ath10k_wmi_fw_stats_num_vdevs(struct list_head *head);
Manikanta Pubbisetty98dd2b92015-10-28 21:38:33 +02006460void ath10k_wmi_10_4_op_fw_stats_fill(struct ath10k *ar,
6461 struct ath10k_fw_stats *fw_stats,
6462 char *buf);
Manikanta Pubbisettybc6f9ae2015-10-16 15:54:52 +03006463
Kalle Valo5e3dd152013-06-12 20:52:10 +03006464#endif /* _WMI_H_ */