xref: /linux/drivers/net/wireless/ath/ath6kl/wmi.h (revision 91ec2035134982b98fab0609a9fd8480e8217dc1)
1 /*
2  * Copyright (c) 2010-2011 Atheros Communications Inc.
3  * Copyright (c) 2011-2012 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 /*
19  * This file contains the definitions of the WMI protocol specified in the
20  * Wireless Module Interface (WMI).  It includes definitions of all the
21  * commands and events. Commands are messages from the host to the WM.
22  * Events and Replies are messages from the WM to the host.
23  */
24 
25 #ifndef WMI_H
26 #define WMI_H
27 
28 #include <linux/ieee80211.h>
29 
30 #include "htc.h"
31 
32 #define HTC_PROTOCOL_VERSION		0x0002
33 #define WMI_PROTOCOL_VERSION		0x0002
34 #define WMI_CONTROL_MSG_MAX_LEN		256
35 #define is_ethertype(type_or_len)	((type_or_len) >= 0x0600)
36 
37 #define IP_ETHERTYPE		0x0800
38 
39 #define WMI_IMPLICIT_PSTREAM	0xFF
40 #define WMI_MAX_THINSTREAM	15
41 
42 #define SSID_IE_LEN_INDEX	13
43 
44 /* Host side link management data structures */
45 #define SIG_QUALITY_THRESH_LVLS		6
46 #define SIG_QUALITY_UPPER_THRESH_LVLS	SIG_QUALITY_THRESH_LVLS
47 #define SIG_QUALITY_LOWER_THRESH_LVLS	SIG_QUALITY_THRESH_LVLS
48 
49 #define A_BAND_24GHZ           0
50 #define A_BAND_5GHZ            1
51 #define ATH6KL_NUM_BANDS       2
52 
53 /* in ms */
54 #define WMI_IMPLICIT_PSTREAM_INACTIVITY_INT 5000
55 
56 /*
57  * There are no signed versions of __le16 and __le32, so for a temporary
58  * solution come up with our own version. The idea is from fs/ntfs/types.h.
59  *
60  * Use a_ prefix so that it doesn't conflict if we get proper support to
61  * linux/types.h.
62  */
63 typedef __s16 __bitwise a_sle16;
64 typedef __s32 __bitwise a_sle32;
65 
a_cpu_to_sle32(s32 val)66 static inline a_sle32 a_cpu_to_sle32(s32 val)
67 {
68 	return (__force a_sle32) cpu_to_le32(val);
69 }
70 
a_sle32_to_cpu(a_sle32 val)71 static inline s32 a_sle32_to_cpu(a_sle32 val)
72 {
73 	return le32_to_cpu((__force __le32) val);
74 }
75 
a_cpu_to_sle16(s16 val)76 static inline a_sle16 a_cpu_to_sle16(s16 val)
77 {
78 	return (__force a_sle16) cpu_to_le16(val);
79 }
80 
a_sle16_to_cpu(a_sle16 val)81 static inline s16 a_sle16_to_cpu(a_sle16 val)
82 {
83 	return le16_to_cpu((__force __le16) val);
84 }
85 
86 struct sq_threshold_params {
87 	s16 upper_threshold[SIG_QUALITY_UPPER_THRESH_LVLS];
88 	s16 lower_threshold[SIG_QUALITY_LOWER_THRESH_LVLS];
89 	u32 upper_threshold_valid_count;
90 	u32 lower_threshold_valid_count;
91 	u32 polling_interval;
92 	u8 weight;
93 	u8 last_rssi;
94 	u8 last_rssi_poll_event;
95 };
96 
97 struct wmi_data_sync_bufs {
98 	u8 traffic_class;
99 	struct sk_buff *skb;
100 };
101 
102 /* WMM stream classes */
103 #define WMM_NUM_AC  4
104 #define WMM_AC_BE   0		/* best effort */
105 #define WMM_AC_BK   1		/* background */
106 #define WMM_AC_VI   2		/* video */
107 #define WMM_AC_VO   3		/* voice */
108 
109 #define WMI_VOICE_USER_PRIORITY		0x7
110 
111 struct wmi {
112 	u16 stream_exist_for_ac[WMM_NUM_AC];
113 	u8 fat_pipe_exist;
114 	struct ath6kl *parent_dev;
115 	u8 pwr_mode;
116 
117 	/* protects fat_pipe_exist and stream_exist_for_ac */
118 	spinlock_t lock;
119 	enum htc_endpoint_id ep_id;
120 	struct sq_threshold_params
121 	    sq_threshld[SIGNAL_QUALITY_METRICS_NUM_MAX];
122 	bool is_wmm_enabled;
123 	u8 traffic_class;
124 	bool is_probe_ssid;
125 
126 	u8 *last_mgmt_tx_frame;
127 	size_t last_mgmt_tx_frame_len;
128 	u64 last_mgmt_tx_cookie;
129 	u8 saved_pwr_mode;
130 };
131 
132 struct host_app_area {
133 	__le32 wmi_protocol_ver;
134 } __packed;
135 
136 enum wmi_msg_type {
137 	DATA_MSGTYPE = 0x0,
138 	CNTL_MSGTYPE,
139 	SYNC_MSGTYPE,
140 	OPT_MSGTYPE,
141 };
142 
143 /*
144  * Macros for operating on WMI_DATA_HDR (info) field
145  */
146 
147 #define WMI_DATA_HDR_MSG_TYPE_MASK  0x03
148 #define WMI_DATA_HDR_MSG_TYPE_SHIFT 0
149 #define WMI_DATA_HDR_UP_MASK        0x07
150 #define WMI_DATA_HDR_UP_SHIFT       2
151 
152 /* In AP mode, the same bit (b5) is used to indicate Power save state in
153  * the Rx dir and More data bit state in the tx direction.
154  */
155 #define WMI_DATA_HDR_PS_MASK        0x1
156 #define WMI_DATA_HDR_PS_SHIFT       5
157 
158 #define WMI_DATA_HDR_MORE	0x20
159 
160 enum wmi_data_hdr_data_type {
161 	WMI_DATA_HDR_DATA_TYPE_802_3 = 0,
162 	WMI_DATA_HDR_DATA_TYPE_802_11,
163 
164 	/* used to be used for the PAL */
165 	WMI_DATA_HDR_DATA_TYPE_ACL,
166 };
167 
168 /* Bitmap of data header flags */
169 enum wmi_data_hdr_flags {
170 	WMI_DATA_HDR_FLAGS_MORE = 0x1,
171 	WMI_DATA_HDR_FLAGS_EOSP = 0x2,
172 	WMI_DATA_HDR_FLAGS_UAPSD = 0x4,
173 };
174 
175 #define WMI_DATA_HDR_DATA_TYPE_MASK     0x3
176 #define WMI_DATA_HDR_DATA_TYPE_SHIFT    6
177 
178 /* Macros for operating on WMI_DATA_HDR (info2) field */
179 #define WMI_DATA_HDR_SEQNO_MASK     0xFFF
180 #define WMI_DATA_HDR_SEQNO_SHIFT    0
181 
182 #define WMI_DATA_HDR_AMSDU_MASK     0x1
183 #define WMI_DATA_HDR_AMSDU_SHIFT    12
184 
185 #define WMI_DATA_HDR_META_MASK      0x7
186 #define WMI_DATA_HDR_META_SHIFT     13
187 
188 #define WMI_DATA_HDR_PAD_BEFORE_DATA_MASK               0xFF
189 #define WMI_DATA_HDR_PAD_BEFORE_DATA_SHIFT              0x8
190 
191 /* Macros for operating on WMI_DATA_HDR (info3) field */
192 #define WMI_DATA_HDR_IF_IDX_MASK    0xF
193 
194 #define WMI_DATA_HDR_TRIG	    0x10
195 #define WMI_DATA_HDR_EOSP	    0x10
196 
197 struct wmi_data_hdr {
198 	s8 rssi;
199 
200 	/*
201 	 * usage of 'info' field(8-bit):
202 	 *
203 	 *  b1:b0       - WMI_MSG_TYPE
204 	 *  b4:b3:b2    - UP(tid)
205 	 *  b5          - Used in AP mode.
206 	 *  More-data in tx dir, PS in rx.
207 	 *  b7:b6       - Dot3 header(0),
208 	 *                Dot11 Header(1),
209 	 *                ACL data(2)
210 	 */
211 	u8 info;
212 
213 	/*
214 	 * usage of 'info2' field(16-bit):
215 	 *
216 	 * b11:b0       - seq_no
217 	 * b12          - A-MSDU?
218 	 * b15:b13      - META_DATA_VERSION 0 - 7
219 	 */
220 	__le16 info2;
221 
222 	/*
223 	 * usage of info3, 16-bit:
224 	 * b3:b0	- Interface index
225 	 * b4		- uAPSD trigger in rx & EOSP in tx
226 	 * b15:b5	- Reserved
227 	 */
228 	__le16 info3;
229 } __packed;
230 
wmi_data_hdr_get_up(struct wmi_data_hdr * dhdr)231 static inline u8 wmi_data_hdr_get_up(struct wmi_data_hdr *dhdr)
232 {
233 	return (dhdr->info >> WMI_DATA_HDR_UP_SHIFT) & WMI_DATA_HDR_UP_MASK;
234 }
235 
wmi_data_hdr_set_up(struct wmi_data_hdr * dhdr,u8 usr_pri)236 static inline void wmi_data_hdr_set_up(struct wmi_data_hdr *dhdr,
237 				       u8 usr_pri)
238 {
239 	dhdr->info &= ~(WMI_DATA_HDR_UP_MASK << WMI_DATA_HDR_UP_SHIFT);
240 	dhdr->info |= usr_pri << WMI_DATA_HDR_UP_SHIFT;
241 }
242 
wmi_data_hdr_get_dot11(struct wmi_data_hdr * dhdr)243 static inline u8 wmi_data_hdr_get_dot11(struct wmi_data_hdr *dhdr)
244 {
245 	u8 data_type;
246 
247 	data_type = (dhdr->info >> WMI_DATA_HDR_DATA_TYPE_SHIFT) &
248 				   WMI_DATA_HDR_DATA_TYPE_MASK;
249 	return (data_type == WMI_DATA_HDR_DATA_TYPE_802_11);
250 }
251 
wmi_data_hdr_get_seqno(struct wmi_data_hdr * dhdr)252 static inline u16 wmi_data_hdr_get_seqno(struct wmi_data_hdr *dhdr)
253 {
254 	return (le16_to_cpu(dhdr->info2) >> WMI_DATA_HDR_SEQNO_SHIFT) &
255 				WMI_DATA_HDR_SEQNO_MASK;
256 }
257 
wmi_data_hdr_is_amsdu(struct wmi_data_hdr * dhdr)258 static inline u8 wmi_data_hdr_is_amsdu(struct wmi_data_hdr *dhdr)
259 {
260 	return (le16_to_cpu(dhdr->info2) >> WMI_DATA_HDR_AMSDU_SHIFT) &
261 			       WMI_DATA_HDR_AMSDU_MASK;
262 }
263 
wmi_data_hdr_get_meta(struct wmi_data_hdr * dhdr)264 static inline u8 wmi_data_hdr_get_meta(struct wmi_data_hdr *dhdr)
265 {
266 	return (le16_to_cpu(dhdr->info2) >> WMI_DATA_HDR_META_SHIFT) &
267 			       WMI_DATA_HDR_META_MASK;
268 }
269 
wmi_data_hdr_get_if_idx(struct wmi_data_hdr * dhdr)270 static inline u8 wmi_data_hdr_get_if_idx(struct wmi_data_hdr *dhdr)
271 {
272 	return le16_to_cpu(dhdr->info3) & WMI_DATA_HDR_IF_IDX_MASK;
273 }
274 
275 /* Tx meta version definitions */
276 #define WMI_MAX_TX_META_SZ	12
277 #define WMI_META_VERSION_1	0x01
278 #define WMI_META_VERSION_2	0x02
279 
280 /* Flag to signal to FW to calculate TCP checksum */
281 #define WMI_META_V2_FLAG_CSUM_OFFLOAD 0x01
282 
283 struct wmi_tx_meta_v1 {
284 	/* packet ID to identify the tx request */
285 	u8 pkt_id;
286 
287 	/* rate policy to be used for the tx of this frame */
288 	u8 rate_plcy_id;
289 } __packed;
290 
291 struct wmi_tx_meta_v2 {
292 	/*
293 	 * Offset from start of the WMI header for csum calculation to
294 	 * begin.
295 	 */
296 	u8 csum_start;
297 
298 	/* offset from start of WMI header where final csum goes */
299 	u8 csum_dest;
300 
301 	/* no of bytes over which csum is calculated */
302 	u8 csum_flags;
303 } __packed;
304 
305 struct wmi_rx_meta_v1 {
306 	u8 status;
307 
308 	/* rate index mapped to rate at which this packet was received. */
309 	u8 rix;
310 
311 	/* rssi of packet */
312 	u8 rssi;
313 
314 	/* rf channel during packet reception */
315 	u8 channel;
316 
317 	__le16 flags;
318 } __packed;
319 
320 struct wmi_rx_meta_v2 {
321 	__le16 csum;
322 
323 	/* bit 0 set -partial csum valid bit 1 set -test mode */
324 	u8 csum_flags;
325 } __packed;
326 
327 #define WMI_CMD_HDR_IF_ID_MASK 0xF
328 
329 /* Control Path */
330 struct wmi_cmd_hdr {
331 	__le16 cmd_id;
332 
333 	/* info1 - 16 bits
334 	 * b03:b00 - id
335 	 * b15:b04 - unused */
336 	__le16 info1;
337 
338 	/* for alignment */
339 	__le16 reserved;
340 } __packed;
341 
wmi_cmd_hdr_get_if_idx(struct wmi_cmd_hdr * chdr)342 static inline u8 wmi_cmd_hdr_get_if_idx(struct wmi_cmd_hdr *chdr)
343 {
344 	return le16_to_cpu(chdr->info1) & WMI_CMD_HDR_IF_ID_MASK;
345 }
346 
347 /* List of WMI commands */
348 enum wmi_cmd_id {
349 	WMI_CONNECT_CMDID = 0x0001,
350 	WMI_RECONNECT_CMDID,
351 	WMI_DISCONNECT_CMDID,
352 	WMI_SYNCHRONIZE_CMDID,
353 	WMI_CREATE_PSTREAM_CMDID,
354 	WMI_DELETE_PSTREAM_CMDID,
355 	/* WMI_START_SCAN_CMDID is to be deprecated. Use
356 	 * WMI_BEGIN_SCAN_CMDID instead. The new cmd supports P2P mgmt
357 	 * operations using station interface.
358 	 */
359 	WMI_START_SCAN_CMDID,
360 	WMI_SET_SCAN_PARAMS_CMDID,
361 	WMI_SET_BSS_FILTER_CMDID,
362 	WMI_SET_PROBED_SSID_CMDID,	/* 10 */
363 	WMI_SET_LISTEN_INT_CMDID,
364 	WMI_SET_BMISS_TIME_CMDID,
365 	WMI_SET_DISC_TIMEOUT_CMDID,
366 	WMI_GET_CHANNEL_LIST_CMDID,
367 	WMI_SET_BEACON_INT_CMDID,
368 	WMI_GET_STATISTICS_CMDID,
369 	WMI_SET_CHANNEL_PARAMS_CMDID,
370 	WMI_SET_POWER_MODE_CMDID,
371 	WMI_SET_IBSS_PM_CAPS_CMDID,
372 	WMI_SET_POWER_PARAMS_CMDID,	/* 20 */
373 	WMI_SET_POWERSAVE_TIMERS_POLICY_CMDID,
374 	WMI_ADD_CIPHER_KEY_CMDID,
375 	WMI_DELETE_CIPHER_KEY_CMDID,
376 	WMI_ADD_KRK_CMDID,
377 	WMI_DELETE_KRK_CMDID,
378 	WMI_SET_PMKID_CMDID,
379 	WMI_SET_TX_PWR_CMDID,
380 	WMI_GET_TX_PWR_CMDID,
381 	WMI_SET_ASSOC_INFO_CMDID,
382 	WMI_ADD_BAD_AP_CMDID,		/* 30 */
383 	WMI_DELETE_BAD_AP_CMDID,
384 	WMI_SET_TKIP_COUNTERMEASURES_CMDID,
385 	WMI_RSSI_THRESHOLD_PARAMS_CMDID,
386 	WMI_TARGET_ERROR_REPORT_BITMASK_CMDID,
387 	WMI_SET_ACCESS_PARAMS_CMDID,
388 	WMI_SET_RETRY_LIMITS_CMDID,
389 	WMI_SET_OPT_MODE_CMDID,
390 	WMI_OPT_TX_FRAME_CMDID,
391 	WMI_SET_VOICE_PKT_SIZE_CMDID,
392 	WMI_SET_MAX_SP_LEN_CMDID,	/* 40 */
393 	WMI_SET_ROAM_CTRL_CMDID,
394 	WMI_GET_ROAM_TBL_CMDID,
395 	WMI_GET_ROAM_DATA_CMDID,
396 	WMI_ENABLE_RM_CMDID,
397 	WMI_SET_MAX_OFFHOME_DURATION_CMDID,
398 	WMI_EXTENSION_CMDID,	/* Non-wireless extensions */
399 	WMI_SNR_THRESHOLD_PARAMS_CMDID,
400 	WMI_LQ_THRESHOLD_PARAMS_CMDID,
401 	WMI_SET_LPREAMBLE_CMDID,
402 	WMI_SET_RTS_CMDID,		/* 50 */
403 	WMI_CLR_RSSI_SNR_CMDID,
404 	WMI_SET_FIXRATES_CMDID,
405 	WMI_GET_FIXRATES_CMDID,
406 	WMI_SET_AUTH_MODE_CMDID,
407 	WMI_SET_REASSOC_MODE_CMDID,
408 	WMI_SET_WMM_CMDID,
409 	WMI_SET_WMM_TXOP_CMDID,
410 	WMI_TEST_CMDID,
411 
412 	/* COEX AR6002 only */
413 	WMI_SET_BT_STATUS_CMDID,
414 	WMI_SET_BT_PARAMS_CMDID,	/* 60 */
415 
416 	WMI_SET_KEEPALIVE_CMDID,
417 	WMI_GET_KEEPALIVE_CMDID,
418 	WMI_SET_APPIE_CMDID,
419 	WMI_GET_APPIE_CMDID,
420 	WMI_SET_WSC_STATUS_CMDID,
421 
422 	/* Wake on Wireless */
423 	WMI_SET_HOST_SLEEP_MODE_CMDID,
424 	WMI_SET_WOW_MODE_CMDID,
425 	WMI_GET_WOW_LIST_CMDID,
426 	WMI_ADD_WOW_PATTERN_CMDID,
427 	WMI_DEL_WOW_PATTERN_CMDID,	/* 70 */
428 
429 	WMI_SET_FRAMERATES_CMDID,
430 	WMI_SET_AP_PS_CMDID,
431 	WMI_SET_QOS_SUPP_CMDID,
432 	WMI_SET_IE_CMDID,
433 
434 	/* WMI_THIN_RESERVED_... mark the start and end
435 	 * values for WMI_THIN_RESERVED command IDs. These
436 	 * command IDs can be found in wmi_thin.h */
437 	WMI_THIN_RESERVED_START = 0x8000,
438 	WMI_THIN_RESERVED_END = 0x8fff,
439 
440 	/* Developer commands starts at 0xF000 */
441 	WMI_SET_BITRATE_CMDID = 0xF000,
442 	WMI_GET_BITRATE_CMDID,
443 	WMI_SET_WHALPARAM_CMDID,
444 	WMI_SET_MAC_ADDRESS_CMDID,
445 	WMI_SET_AKMP_PARAMS_CMDID,
446 	WMI_SET_PMKID_LIST_CMDID,
447 	WMI_GET_PMKID_LIST_CMDID,
448 	WMI_ABORT_SCAN_CMDID,
449 	WMI_SET_TARGET_EVENT_REPORT_CMDID,
450 
451 	/* Unused */
452 	WMI_UNUSED1,
453 	WMI_UNUSED2,
454 
455 	/* AP mode commands */
456 	WMI_AP_HIDDEN_SSID_CMDID,
457 	WMI_AP_SET_NUM_STA_CMDID,
458 	WMI_AP_ACL_POLICY_CMDID,
459 	WMI_AP_ACL_MAC_LIST_CMDID,
460 	WMI_AP_CONFIG_COMMIT_CMDID,
461 	WMI_AP_SET_MLME_CMDID,
462 	WMI_AP_SET_PVB_CMDID,
463 	WMI_AP_CONN_INACT_CMDID,
464 	WMI_AP_PROT_SCAN_TIME_CMDID,
465 	WMI_AP_SET_COUNTRY_CMDID,
466 	WMI_AP_SET_DTIM_CMDID,
467 	WMI_AP_MODE_STAT_CMDID,
468 
469 	WMI_SET_IP_CMDID,
470 	WMI_SET_PARAMS_CMDID,
471 	WMI_SET_MCAST_FILTER_CMDID,
472 	WMI_DEL_MCAST_FILTER_CMDID,
473 
474 	WMI_ALLOW_AGGR_CMDID,
475 	WMI_ADDBA_REQ_CMDID,
476 	WMI_DELBA_REQ_CMDID,
477 	WMI_SET_HT_CAP_CMDID,
478 	WMI_SET_HT_OP_CMDID,
479 	WMI_SET_TX_SELECT_RATES_CMDID,
480 	WMI_SET_TX_SGI_PARAM_CMDID,
481 	WMI_SET_RATE_POLICY_CMDID,
482 
483 	WMI_HCI_CMD_CMDID,
484 	WMI_RX_FRAME_FORMAT_CMDID,
485 	WMI_SET_THIN_MODE_CMDID,
486 	WMI_SET_BT_WLAN_CONN_PRECEDENCE_CMDID,
487 
488 	WMI_AP_SET_11BG_RATESET_CMDID,
489 	WMI_SET_PMK_CMDID,
490 	WMI_MCAST_FILTER_CMDID,
491 
492 	/* COEX CMDID AR6003 */
493 	WMI_SET_BTCOEX_FE_ANT_CMDID,
494 	WMI_SET_BTCOEX_COLOCATED_BT_DEV_CMDID,
495 	WMI_SET_BTCOEX_SCO_CONFIG_CMDID,
496 	WMI_SET_BTCOEX_A2DP_CONFIG_CMDID,
497 	WMI_SET_BTCOEX_ACLCOEX_CONFIG_CMDID,
498 	WMI_SET_BTCOEX_BTINQUIRY_PAGE_CONFIG_CMDID,
499 	WMI_SET_BTCOEX_DEBUG_CMDID,
500 	WMI_SET_BTCOEX_BT_OPERATING_STATUS_CMDID,
501 	WMI_GET_BTCOEX_STATS_CMDID,
502 	WMI_GET_BTCOEX_CONFIG_CMDID,
503 
504 	WMI_SET_DFS_ENABLE_CMDID,	/* F034 */
505 	WMI_SET_DFS_MINRSSITHRESH_CMDID,
506 	WMI_SET_DFS_MAXPULSEDUR_CMDID,
507 	WMI_DFS_RADAR_DETECTED_CMDID,
508 
509 	/* P2P commands */
510 	WMI_P2P_SET_CONFIG_CMDID,	/* F038 */
511 	WMI_WPS_SET_CONFIG_CMDID,
512 	WMI_SET_REQ_DEV_ATTR_CMDID,
513 	WMI_P2P_FIND_CMDID,
514 	WMI_P2P_STOP_FIND_CMDID,
515 	WMI_P2P_GO_NEG_START_CMDID,
516 	WMI_P2P_LISTEN_CMDID,
517 
518 	WMI_CONFIG_TX_MAC_RULES_CMDID,	/* F040 */
519 	WMI_SET_PROMISCUOUS_MODE_CMDID,
520 	WMI_RX_FRAME_FILTER_CMDID,
521 	WMI_SET_CHANNEL_CMDID,
522 
523 	/* WAC commands */
524 	WMI_ENABLE_WAC_CMDID,
525 	WMI_WAC_SCAN_REPLY_CMDID,
526 	WMI_WAC_CTRL_REQ_CMDID,
527 	WMI_SET_DIV_PARAMS_CMDID,
528 
529 	WMI_GET_PMK_CMDID,
530 	WMI_SET_PASSPHRASE_CMDID,
531 	WMI_SEND_ASSOC_RES_CMDID,
532 	WMI_SET_ASSOC_REQ_RELAY_CMDID,
533 
534 	/* ACS command, consists of sub-commands */
535 	WMI_ACS_CTRL_CMDID,
536 	WMI_SET_EXCESS_TX_RETRY_THRES_CMDID,
537 	WMI_SET_TBD_TIME_CMDID, /*added for wmiconfig command for TBD */
538 
539 	/* Pktlog cmds */
540 	WMI_PKTLOG_ENABLE_CMDID,
541 	WMI_PKTLOG_DISABLE_CMDID,
542 
543 	/* More P2P Cmds */
544 	WMI_P2P_GO_NEG_REQ_RSP_CMDID,
545 	WMI_P2P_GRP_INIT_CMDID,
546 	WMI_P2P_GRP_FORMATION_DONE_CMDID,
547 	WMI_P2P_INVITE_CMDID,
548 	WMI_P2P_INVITE_REQ_RSP_CMDID,
549 	WMI_P2P_PROV_DISC_REQ_CMDID,
550 	WMI_P2P_SET_CMDID,
551 
552 	WMI_GET_RFKILL_MODE_CMDID,
553 	WMI_SET_RFKILL_MODE_CMDID,
554 	WMI_AP_SET_APSD_CMDID,
555 	WMI_AP_APSD_BUFFERED_TRAFFIC_CMDID,
556 
557 	WMI_P2P_SDPD_TX_CMDID, /* F05C */
558 	WMI_P2P_STOP_SDPD_CMDID,
559 	WMI_P2P_CANCEL_CMDID,
560 	/* Ultra low power store / recall commands */
561 	WMI_STORERECALL_CONFIGURE_CMDID,
562 	WMI_STORERECALL_RECALL_CMDID,
563 	WMI_STORERECALL_HOST_READY_CMDID,
564 	WMI_FORCE_TARGET_ASSERT_CMDID,
565 
566 	WMI_SET_PROBED_SSID_EX_CMDID,
567 	WMI_SET_NETWORK_LIST_OFFLOAD_CMDID,
568 	WMI_SET_ARP_NS_OFFLOAD_CMDID,
569 	WMI_ADD_WOW_EXT_PATTERN_CMDID,
570 	WMI_GTK_OFFLOAD_OP_CMDID,
571 	WMI_REMAIN_ON_CHNL_CMDID,
572 	WMI_CANCEL_REMAIN_ON_CHNL_CMDID,
573 	/* WMI_SEND_ACTION_CMDID is to be deprecated. Use
574 	 * WMI_SEND_MGMT_CMDID instead. The new cmd supports P2P mgmt
575 	 * operations using station interface.
576 	 */
577 	WMI_SEND_ACTION_CMDID,
578 	WMI_PROBE_REQ_REPORT_CMDID,
579 	WMI_DISABLE_11B_RATES_CMDID,
580 	WMI_SEND_PROBE_RESPONSE_CMDID,
581 	WMI_GET_P2P_INFO_CMDID,
582 	WMI_AP_JOIN_BSS_CMDID,
583 
584 	WMI_SMPS_ENABLE_CMDID,
585 	WMI_SMPS_CONFIG_CMDID,
586 	WMI_SET_RATECTRL_PARM_CMDID,
587 	/*  LPL specific commands*/
588 	WMI_LPL_FORCE_ENABLE_CMDID,
589 	WMI_LPL_SET_POLICY_CMDID,
590 	WMI_LPL_GET_POLICY_CMDID,
591 	WMI_LPL_GET_HWSTATE_CMDID,
592 	WMI_LPL_SET_PARAMS_CMDID,
593 	WMI_LPL_GET_PARAMS_CMDID,
594 
595 	WMI_SET_BUNDLE_PARAM_CMDID,
596 
597 	/*GreenTx specific commands*/
598 
599 	WMI_GREENTX_PARAMS_CMDID,
600 
601 	WMI_RTT_MEASREQ_CMDID,
602 	WMI_RTT_CAPREQ_CMDID,
603 	WMI_RTT_STATUSREQ_CMDID,
604 
605 	/* WPS Commands */
606 	WMI_WPS_START_CMDID,
607 	WMI_GET_WPS_STATUS_CMDID,
608 
609 	/* More P2P commands */
610 	WMI_SET_NOA_CMDID,
611 	WMI_GET_NOA_CMDID,
612 	WMI_SET_OPPPS_CMDID,
613 	WMI_GET_OPPPS_CMDID,
614 	WMI_ADD_PORT_CMDID,
615 	WMI_DEL_PORT_CMDID,
616 
617 	/* 802.11w cmd */
618 	WMI_SET_RSN_CAP_CMDID,
619 	WMI_GET_RSN_CAP_CMDID,
620 	WMI_SET_IGTK_CMDID,
621 
622 	WMI_RX_FILTER_COALESCE_FILTER_OP_CMDID,
623 	WMI_RX_FILTER_SET_FRAME_TEST_LIST_CMDID,
624 
625 	WMI_SEND_MGMT_CMDID,
626 	WMI_BEGIN_SCAN_CMDID,
627 
628 	WMI_SET_BLACK_LIST,
629 	WMI_SET_MCASTRATE,
630 
631 	WMI_STA_BMISS_ENHANCE_CMDID,
632 
633 	WMI_SET_REGDOMAIN_CMDID,
634 
635 	WMI_SET_RSSI_FILTER_CMDID,
636 
637 	WMI_SET_KEEP_ALIVE_EXT,
638 
639 	WMI_VOICE_DETECTION_ENABLE_CMDID,
640 
641 	WMI_SET_TXE_NOTIFY_CMDID,
642 
643 	WMI_SET_RECOVERY_TEST_PARAMETER_CMDID, /*0xf094*/
644 
645 	WMI_ENABLE_SCHED_SCAN_CMDID,
646 };
647 
648 enum wmi_mgmt_frame_type {
649 	WMI_FRAME_BEACON = 0,
650 	WMI_FRAME_PROBE_REQ,
651 	WMI_FRAME_PROBE_RESP,
652 	WMI_FRAME_ASSOC_REQ,
653 	WMI_FRAME_ASSOC_RESP,
654 	WMI_NUM_MGMT_FRAME
655 };
656 
657 enum wmi_ie_field_type {
658 	WMI_RSN_IE_CAPB	= 0x1,
659 	WMI_IE_FULL	= 0xFF,  /* indicates full IE */
660 };
661 
662 /* WMI_CONNECT_CMDID  */
663 enum network_type {
664 	INFRA_NETWORK = 0x01,
665 	ADHOC_NETWORK = 0x02,
666 	ADHOC_CREATOR = 0x04,
667 	AP_NETWORK = 0x10,
668 };
669 
670 enum network_subtype {
671 	SUBTYPE_NONE,
672 	SUBTYPE_BT,
673 	SUBTYPE_P2PDEV,
674 	SUBTYPE_P2PCLIENT,
675 	SUBTYPE_P2PGO,
676 };
677 
678 enum dot11_auth_mode {
679 	OPEN_AUTH = 0x01,
680 	SHARED_AUTH = 0x02,
681 
682 	/* different from IEEE_AUTH_MODE definitions */
683 	LEAP_AUTH = 0x04,
684 };
685 
686 enum auth_mode {
687 	NONE_AUTH = 0x01,
688 	WPA_AUTH = 0x02,
689 	WPA2_AUTH = 0x04,
690 	WPA_PSK_AUTH = 0x08,
691 	WPA2_PSK_AUTH = 0x10,
692 	WPA_AUTH_CCKM = 0x20,
693 	WPA2_AUTH_CCKM = 0x40,
694 };
695 
696 #define WMI_MAX_KEY_INDEX   3
697 
698 #define WMI_MAX_KEY_LEN     32
699 
700 /*
701  * NB: these values are ordered carefully; there are lots of
702  * implications in any reordering.  In particular beware
703  * that 4 is not used to avoid conflicting with IEEE80211_F_PRIVACY.
704  */
705 #define ATH6KL_CIPHER_WEP            0
706 #define ATH6KL_CIPHER_TKIP           1
707 #define ATH6KL_CIPHER_AES_OCB        2
708 #define ATH6KL_CIPHER_AES_CCM        3
709 #define ATH6KL_CIPHER_CKIP           5
710 #define ATH6KL_CIPHER_CCKM_KRK       6
711 #define ATH6KL_CIPHER_NONE           7 /* pseudo value */
712 
713 /*
714  * 802.11 rate set.
715  */
716 #define ATH6KL_RATE_MAXSIZE  15	/* max rates we'll handle */
717 
718 #define ATH_OUI_TYPE            0x01
719 #define WPA_OUI_TYPE            0x01
720 #define WMM_PARAM_OUI_SUBTYPE   0x01
721 #define WMM_OUI_TYPE            0x02
722 #define WSC_OUT_TYPE            0x04
723 
724 enum wmi_connect_ctrl_flags_bits {
725 	CONNECT_ASSOC_POLICY_USER = 0x0001,
726 	CONNECT_SEND_REASSOC = 0x0002,
727 	CONNECT_IGNORE_WPAx_GROUP_CIPHER = 0x0004,
728 	CONNECT_PROFILE_MATCH_DONE = 0x0008,
729 	CONNECT_IGNORE_AAC_BEACON = 0x0010,
730 	CONNECT_CSA_FOLLOW_BSS = 0x0020,
731 	CONNECT_DO_WPA_OFFLOAD = 0x0040,
732 	CONNECT_DO_NOT_DEAUTH = 0x0080,
733 	CONNECT_WPS_FLAG = 0x0100,
734 };
735 
736 struct wmi_connect_cmd {
737 	u8 nw_type;
738 	u8 dot11_auth_mode;
739 	u8 auth_mode;
740 	u8 prwise_crypto_type;
741 	u8 prwise_crypto_len;
742 	u8 grp_crypto_type;
743 	u8 grp_crypto_len;
744 	u8 ssid_len;
745 	u8 ssid[IEEE80211_MAX_SSID_LEN];
746 	__le16 ch;
747 	u8 bssid[ETH_ALEN];
748 	__le32 ctrl_flags;
749 	u8 nw_subtype;
750 } __packed;
751 
752 /* WMI_RECONNECT_CMDID */
753 struct wmi_reconnect_cmd {
754 	/* channel hint */
755 	__le16 channel;
756 
757 	/* mandatory if set */
758 	u8 bssid[ETH_ALEN];
759 } __packed;
760 
761 /* WMI_ADD_CIPHER_KEY_CMDID */
762 enum key_usage {
763 	PAIRWISE_USAGE = 0x00,
764 	GROUP_USAGE = 0x01,
765 
766 	/* default Tx Key - static WEP only */
767 	TX_USAGE = 0x02,
768 };
769 
770 /*
771  * Bit Flag
772  * Bit 0 - Initialise TSC - default is Initialize
773  */
774 #define KEY_OP_INIT_TSC     0x01
775 #define KEY_OP_INIT_RSC     0x02
776 
777 /* default initialise the TSC & RSC */
778 #define KEY_OP_INIT_VAL     0x03
779 #define KEY_OP_VALID_MASK   0x03
780 
781 struct wmi_add_cipher_key_cmd {
782 	u8 key_index;
783 	u8 key_type;
784 
785 	/* enum key_usage */
786 	u8 key_usage;
787 
788 	u8 key_len;
789 
790 	/* key replay sequence counter */
791 	u8 key_rsc[8];
792 
793 	u8 key[WLAN_MAX_KEY_LEN];
794 
795 	/* additional key control info */
796 	u8 key_op_ctrl;
797 
798 	u8 key_mac_addr[ETH_ALEN];
799 } __packed;
800 
801 /* WMI_DELETE_CIPHER_KEY_CMDID */
802 struct wmi_delete_cipher_key_cmd {
803 	u8 key_index;
804 } __packed;
805 
806 #define WMI_KRK_LEN     16
807 
808 /* WMI_ADD_KRK_CMDID */
809 struct wmi_add_krk_cmd {
810 	u8 krk[WMI_KRK_LEN];
811 } __packed;
812 
813 /* WMI_SETPMKID_CMDID */
814 
815 #define WMI_PMKID_LEN 16
816 
817 enum pmkid_enable_flg {
818 	PMKID_DISABLE = 0,
819 	PMKID_ENABLE = 1,
820 };
821 
822 struct wmi_setpmkid_cmd {
823 	u8 bssid[ETH_ALEN];
824 
825 	/* enum pmkid_enable_flg */
826 	u8 enable;
827 
828 	u8 pmkid[WMI_PMKID_LEN];
829 } __packed;
830 
831 /* WMI_START_SCAN_CMD */
832 enum wmi_scan_type {
833 	WMI_LONG_SCAN = 0,
834 	WMI_SHORT_SCAN = 1,
835 };
836 
837 struct wmi_supp_rates {
838 	u8 nrates;
839 	u8 rates[ATH6KL_RATE_MAXSIZE];
840 };
841 
842 struct wmi_begin_scan_cmd {
843 	__le32 force_fg_scan;
844 
845 	/* for legacy cisco AP compatibility */
846 	__le32 is_legacy;
847 
848 	/* max duration in the home channel(msec) */
849 	__le32 home_dwell_time;
850 
851 	/* time interval between scans (msec) */
852 	__le32 force_scan_intvl;
853 
854 	/* no CCK rates */
855 	__le32 no_cck;
856 
857 	/* enum wmi_scan_type */
858 	u8 scan_type;
859 
860 	/* Supported rates to advertise in the probe request frames */
861 	struct wmi_supp_rates supp_rates[ATH6KL_NUM_BANDS];
862 
863 	/* how many channels follow */
864 	u8 num_ch;
865 
866 	/* channels in Mhz */
867 	__le16 ch_list[];
868 } __packed;
869 
870 /* wmi_start_scan_cmd is to be deprecated. Use
871  * wmi_begin_scan_cmd instead. The new structure supports P2P mgmt
872  * operations using station interface.
873  */
874 struct wmi_start_scan_cmd {
875 	__le32 force_fg_scan;
876 
877 	/* for legacy cisco AP compatibility */
878 	__le32 is_legacy;
879 
880 	/* max duration in the home channel(msec) */
881 	__le32 home_dwell_time;
882 
883 	/* time interval between scans (msec) */
884 	__le32 force_scan_intvl;
885 
886 	/* enum wmi_scan_type */
887 	u8 scan_type;
888 
889 	/* how many channels follow */
890 	u8 num_ch;
891 
892 	/* channels in Mhz */
893 	__le16 ch_list[];
894 } __packed;
895 
896 /*
897  *  Warning: scan control flag value of 0xFF is used to disable
898  *  all flags in WMI_SCAN_PARAMS_CMD. Do not add any more
899  *  flags here
900  */
901 enum wmi_scan_ctrl_flags_bits {
902 	/* set if can scan in the connect cmd */
903 	CONNECT_SCAN_CTRL_FLAGS = 0x01,
904 
905 	/* set if scan for the SSID it is already connected to */
906 	SCAN_CONNECTED_CTRL_FLAGS = 0x02,
907 
908 	/* set if enable active scan */
909 	ACTIVE_SCAN_CTRL_FLAGS = 0x04,
910 
911 	/* set if enable roam scan when bmiss and lowrssi */
912 	ROAM_SCAN_CTRL_FLAGS = 0x08,
913 
914 	/* set if follows customer BSSINFO reporting rule */
915 	REPORT_BSSINFO_CTRL_FLAGS = 0x10,
916 
917 	/* if disabled, target doesn't scan after a disconnect event  */
918 	ENABLE_AUTO_CTRL_FLAGS = 0x20,
919 
920 	/*
921 	 * Scan complete event with canceled status will be generated when
922 	 * a scan is prempted before it gets completed.
923 	 */
924 	ENABLE_SCAN_ABORT_EVENT = 0x40
925 };
926 
927 struct wmi_scan_params_cmd {
928 	  /* sec */
929 	__le16 fg_start_period;
930 
931 	/* sec */
932 	__le16 fg_end_period;
933 
934 	/* sec */
935 	__le16 bg_period;
936 
937 	/* msec */
938 	__le16 maxact_chdwell_time;
939 
940 	/* msec */
941 	__le16 pas_chdwell_time;
942 
943 	  /* how many shorts scan for one long */
944 	u8 short_scan_ratio;
945 
946 	u8 scan_ctrl_flags;
947 
948 	/* msec */
949 	__le16 minact_chdwell_time;
950 
951 	/* max active scans per ssid */
952 	__le16 maxact_scan_per_ssid;
953 
954 	/* msecs */
955 	__le32 max_dfsch_act_time;
956 } __packed;
957 
958 /* WMI_ENABLE_SCHED_SCAN_CMDID */
959 struct wmi_enable_sched_scan_cmd {
960 	u8 enable;
961 } __packed;
962 
963 /* WMI_SET_BSS_FILTER_CMDID */
964 enum wmi_bss_filter {
965 	/* no beacons forwarded */
966 	NONE_BSS_FILTER = 0x0,
967 
968 	/* all beacons forwarded */
969 	ALL_BSS_FILTER,
970 
971 	/* only beacons matching profile */
972 	PROFILE_FILTER,
973 
974 	/* all but beacons matching profile */
975 	ALL_BUT_PROFILE_FILTER,
976 
977 	/* only beacons matching current BSS */
978 	CURRENT_BSS_FILTER,
979 
980 	/* all but beacons matching BSS */
981 	ALL_BUT_BSS_FILTER,
982 
983 	/* beacons matching probed ssid */
984 	PROBED_SSID_FILTER,
985 
986 	/* beacons matching matched ssid */
987 	MATCHED_SSID_FILTER,
988 
989 	/* marker only */
990 	LAST_BSS_FILTER,
991 };
992 
993 struct wmi_bss_filter_cmd {
994 	/* see, enum wmi_bss_filter */
995 	u8 bss_filter;
996 
997 	/* for alignment */
998 	u8 reserved1;
999 
1000 	/* for alignment */
1001 	__le16 reserved2;
1002 
1003 	__le32 ie_mask;
1004 } __packed;
1005 
1006 /* WMI_SET_PROBED_SSID_CMDID */
1007 #define MAX_PROBED_SSIDS   16
1008 
1009 enum wmi_ssid_flag {
1010 	/* disables entry */
1011 	DISABLE_SSID_FLAG = 0,
1012 
1013 	/* probes specified ssid */
1014 	SPECIFIC_SSID_FLAG = 0x01,
1015 
1016 	/* probes for any ssid */
1017 	ANY_SSID_FLAG = 0x02,
1018 
1019 	/* match for ssid */
1020 	MATCH_SSID_FLAG = 0x08,
1021 };
1022 
1023 struct wmi_probed_ssid_cmd {
1024 	/* 0 to MAX_PROBED_SSIDS - 1 */
1025 	u8 entry_index;
1026 
1027 	/* see, enum wmi_ssid_flg */
1028 	u8 flag;
1029 
1030 	u8 ssid_len;
1031 	u8 ssid[IEEE80211_MAX_SSID_LEN];
1032 } __packed;
1033 
1034 /*
1035  * WMI_SET_LISTEN_INT_CMDID
1036  * The Listen interval is between 15 and 3000 TUs
1037  */
1038 struct wmi_listen_int_cmd {
1039 	__le16 listen_intvl;
1040 	__le16 num_beacons;
1041 } __packed;
1042 
1043 /* WMI_SET_BMISS_TIME_CMDID */
1044 struct wmi_bmiss_time_cmd {
1045 	__le16 bmiss_time;
1046 	__le16 num_beacons;
1047 };
1048 
1049 /* WMI_STA_ENHANCE_BMISS_CMDID */
1050 struct wmi_sta_bmiss_enhance_cmd {
1051 	u8 enable;
1052 } __packed;
1053 
1054 struct wmi_set_regdomain_cmd {
1055 	u8 length;
1056 	u8 iso_name[2];
1057 } __packed;
1058 
1059 /* WMI_SET_POWER_MODE_CMDID */
1060 enum wmi_power_mode {
1061 	REC_POWER = 0x01,
1062 	MAX_PERF_POWER,
1063 };
1064 
1065 struct wmi_power_mode_cmd {
1066 	/* see, enum wmi_power_mode */
1067 	u8 pwr_mode;
1068 } __packed;
1069 
1070 /*
1071  * Policy to determine whether power save failure event should be sent to
1072  * host during scanning
1073  */
1074 enum power_save_fail_event_policy {
1075 	SEND_POWER_SAVE_FAIL_EVENT_ALWAYS = 1,
1076 	IGNORE_PS_FAIL_DURING_SCAN = 2,
1077 };
1078 
1079 struct wmi_power_params_cmd {
1080 	/* msec */
1081 	__le16 idle_period;
1082 
1083 	__le16 pspoll_number;
1084 	__le16 dtim_policy;
1085 	__le16 tx_wakeup_policy;
1086 	__le16 num_tx_to_wakeup;
1087 	__le16 ps_fail_event_policy;
1088 } __packed;
1089 
1090 /*
1091  * Ratemask for below modes should be passed
1092  * to WMI_SET_TX_SELECT_RATES_CMDID.
1093  * AR6003 has 32 bit mask for each modes.
1094  * First 12 bits for legacy rates, 13 to 20
1095  * bits for HT 20 rates and 21 to 28 bits for
1096  * HT 40 rates
1097  */
1098 enum wmi_mode_phy {
1099 	WMI_RATES_MODE_11A = 0,
1100 	WMI_RATES_MODE_11G,
1101 	WMI_RATES_MODE_11B,
1102 	WMI_RATES_MODE_11GONLY,
1103 	WMI_RATES_MODE_11A_HT20,
1104 	WMI_RATES_MODE_11G_HT20,
1105 	WMI_RATES_MODE_11A_HT40,
1106 	WMI_RATES_MODE_11G_HT40,
1107 	WMI_RATES_MODE_MAX
1108 };
1109 
1110 /* WMI_SET_TX_SELECT_RATES_CMDID */
1111 struct wmi_set_tx_select_rates32_cmd {
1112 	__le32 ratemask[WMI_RATES_MODE_MAX];
1113 } __packed;
1114 
1115 /* WMI_SET_TX_SELECT_RATES_CMDID */
1116 struct wmi_set_tx_select_rates64_cmd {
1117 	__le64 ratemask[WMI_RATES_MODE_MAX];
1118 } __packed;
1119 
1120 /* WMI_SET_DISC_TIMEOUT_CMDID */
1121 struct wmi_disc_timeout_cmd {
1122 	/* seconds */
1123 	u8 discon_timeout;
1124 } __packed;
1125 
1126 enum dir_type {
1127 	UPLINK_TRAFFIC = 0,
1128 	DNLINK_TRAFFIC = 1,
1129 	BIDIR_TRAFFIC = 2,
1130 };
1131 
1132 enum voiceps_cap_type {
1133 	DISABLE_FOR_THIS_AC = 0,
1134 	ENABLE_FOR_THIS_AC = 1,
1135 	ENABLE_FOR_ALL_AC = 2,
1136 };
1137 
1138 enum traffic_type {
1139 	TRAFFIC_TYPE_APERIODIC = 0,
1140 	TRAFFIC_TYPE_PERIODIC = 1,
1141 };
1142 
1143 /* WMI_SYNCHRONIZE_CMDID */
1144 struct wmi_sync_cmd {
1145 	u8 data_sync_map;
1146 } __packed;
1147 
1148 /* WMI_CREATE_PSTREAM_CMDID */
1149 struct wmi_create_pstream_cmd {
1150 	/* msec */
1151 	__le32 min_service_int;
1152 
1153 	/* msec */
1154 	__le32 max_service_int;
1155 
1156 	/* msec */
1157 	__le32 inactivity_int;
1158 
1159 	/* msec */
1160 	__le32 suspension_int;
1161 
1162 	__le32 service_start_time;
1163 
1164 	/* in bps */
1165 	__le32 min_data_rate;
1166 
1167 	/* in bps */
1168 	__le32 mean_data_rate;
1169 
1170 	/* in bps */
1171 	__le32 peak_data_rate;
1172 
1173 	__le32 max_burst_size;
1174 	__le32 delay_bound;
1175 
1176 	/* in bps */
1177 	__le32 min_phy_rate;
1178 
1179 	__le32 sba;
1180 	__le32 medium_time;
1181 
1182 	/* in octets */
1183 	__le16 nominal_msdu;
1184 
1185 	/* in octets */
1186 	__le16 max_msdu;
1187 
1188 	u8 traffic_class;
1189 
1190 	/* see, enum dir_type */
1191 	u8 traffic_direc;
1192 
1193 	u8 rx_queue_num;
1194 
1195 	/* see, enum traffic_type */
1196 	u8 traffic_type;
1197 
1198 	/* see, enum voiceps_cap_type */
1199 	u8 voice_psc_cap;
1200 	u8 tsid;
1201 
1202 	/* 802.1D user priority */
1203 	u8 user_pri;
1204 
1205 	/* nominal phy rate */
1206 	u8 nominal_phy;
1207 } __packed;
1208 
1209 /* WMI_DELETE_PSTREAM_CMDID */
1210 struct wmi_delete_pstream_cmd {
1211 	u8 tx_queue_num;
1212 	u8 rx_queue_num;
1213 	u8 traffic_direc;
1214 	u8 traffic_class;
1215 	u8 tsid;
1216 } __packed;
1217 
1218 /* WMI_SET_CHANNEL_PARAMS_CMDID */
1219 enum wmi_phy_mode {
1220 	WMI_11A_MODE = 0x1,
1221 	WMI_11G_MODE = 0x2,
1222 	WMI_11AG_MODE = 0x3,
1223 	WMI_11B_MODE = 0x4,
1224 	WMI_11GONLY_MODE = 0x5,
1225 	WMI_11G_HT20	= 0x6,
1226 };
1227 
1228 #define WMI_MAX_CHANNELS        32
1229 
1230 /*
1231  *  WMI_RSSI_THRESHOLD_PARAMS_CMDID
1232  *  Setting the polltime to 0 would disable polling. Threshold values are
1233  *  in the ascending order, and should agree to:
1234  *  (lowThreshold_lowerVal < lowThreshold_upperVal < highThreshold_lowerVal
1235  *   < highThreshold_upperVal)
1236  */
1237 
1238 struct wmi_rssi_threshold_params_cmd {
1239 	/* polling time as a factor of LI */
1240 	__le32 poll_time;
1241 
1242 	/* lowest of upper */
1243 	a_sle16 thresh_above1_val;
1244 
1245 	a_sle16 thresh_above2_val;
1246 	a_sle16 thresh_above3_val;
1247 	a_sle16 thresh_above4_val;
1248 	a_sle16 thresh_above5_val;
1249 
1250 	/* highest of upper */
1251 	a_sle16 thresh_above6_val;
1252 
1253 	/* lowest of below */
1254 	a_sle16 thresh_below1_val;
1255 
1256 	a_sle16 thresh_below2_val;
1257 	a_sle16 thresh_below3_val;
1258 	a_sle16 thresh_below4_val;
1259 	a_sle16 thresh_below5_val;
1260 
1261 	/* highest of below */
1262 	a_sle16 thresh_below6_val;
1263 
1264 	/* "alpha" */
1265 	u8 weight;
1266 
1267 	u8 reserved[3];
1268 } __packed;
1269 
1270 /*
1271  *  WMI_SNR_THRESHOLD_PARAMS_CMDID
1272  *  Setting the polltime to 0 would disable polling.
1273  */
1274 
1275 struct wmi_snr_threshold_params_cmd {
1276 	/* polling time as a factor of LI */
1277 	__le32 poll_time;
1278 
1279 	/* "alpha" */
1280 	u8 weight;
1281 
1282 	/* lowest of upper */
1283 	u8 thresh_above1_val;
1284 
1285 	u8 thresh_above2_val;
1286 	u8 thresh_above3_val;
1287 
1288 	/* highest of upper */
1289 	u8 thresh_above4_val;
1290 
1291 	/* lowest of below */
1292 	u8 thresh_below1_val;
1293 
1294 	u8 thresh_below2_val;
1295 	u8 thresh_below3_val;
1296 
1297 	/* highest of below */
1298 	u8 thresh_below4_val;
1299 
1300 	u8 reserved[3];
1301 } __packed;
1302 
1303 /* Don't report BSSs with signal (RSSI) below this threshold */
1304 struct wmi_set_rssi_filter_cmd {
1305 	s8 rssi;
1306 } __packed;
1307 
1308 enum wmi_preamble_policy {
1309 	WMI_IGNORE_BARKER_IN_ERP = 0,
1310 	WMI_FOLLOW_BARKER_IN_ERP,
1311 };
1312 
1313 struct wmi_set_lpreamble_cmd {
1314 	u8 status;
1315 	u8 preamble_policy;
1316 } __packed;
1317 
1318 struct wmi_set_rts_cmd {
1319 	__le16 threshold;
1320 } __packed;
1321 
1322 /* WMI_SET_TX_PWR_CMDID */
1323 struct wmi_set_tx_pwr_cmd {
1324 	/* in dbM units */
1325 	u8 dbM;
1326 } __packed;
1327 
1328 struct wmi_tx_pwr_reply {
1329 	/* in dbM units */
1330 	u8 dbM;
1331 } __packed;
1332 
1333 struct wmi_report_sleep_state_event {
1334 	__le32 sleep_state;
1335 };
1336 
1337 enum wmi_report_sleep_status {
1338 	WMI_REPORT_SLEEP_STATUS_IS_DEEP_SLEEP = 0,
1339 	WMI_REPORT_SLEEP_STATUS_IS_AWAKE
1340 };
1341 enum target_event_report_config {
1342 	/* default */
1343 	DISCONN_EVT_IN_RECONN = 0,
1344 
1345 	NO_DISCONN_EVT_IN_RECONN
1346 };
1347 
1348 struct wmi_mcast_filter_cmd {
1349 	u8 mcast_all_enable;
1350 } __packed;
1351 
1352 #define ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE 6
1353 struct wmi_mcast_filter_add_del_cmd {
1354 	u8 mcast_mac[ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE];
1355 } __packed;
1356 
1357 struct wmi_set_htcap_cmd {
1358 	u8 band;
1359 	u8 ht_enable;
1360 	u8 ht40_supported;
1361 	u8 ht20_sgi;
1362 	u8 ht40_sgi;
1363 	u8 intolerant_40mhz;
1364 	u8 max_ampdu_len_exp;
1365 } __packed;
1366 
1367 /* Command Replies */
1368 
1369 /* WMI_GET_CHANNEL_LIST_CMDID reply */
1370 struct wmi_channel_list_reply {
1371 	u8 reserved;
1372 
1373 	/* number of channels in reply */
1374 	u8 num_ch;
1375 
1376 	/* channel in Mhz */
1377 	__le16 ch_list[];
1378 } __packed;
1379 
1380 /* List of Events (target to host) */
1381 enum wmi_event_id {
1382 	WMI_READY_EVENTID = 0x1001,
1383 	WMI_CONNECT_EVENTID,
1384 	WMI_DISCONNECT_EVENTID,
1385 	WMI_BSSINFO_EVENTID,
1386 	WMI_CMDERROR_EVENTID,
1387 	WMI_REGDOMAIN_EVENTID,
1388 	WMI_PSTREAM_TIMEOUT_EVENTID,
1389 	WMI_NEIGHBOR_REPORT_EVENTID,
1390 	WMI_TKIP_MICERR_EVENTID,
1391 	WMI_SCAN_COMPLETE_EVENTID,	/* 0x100a */
1392 	WMI_REPORT_STATISTICS_EVENTID,
1393 	WMI_RSSI_THRESHOLD_EVENTID,
1394 	WMI_ERROR_REPORT_EVENTID,
1395 	WMI_OPT_RX_FRAME_EVENTID,
1396 	WMI_REPORT_ROAM_TBL_EVENTID,
1397 	WMI_EXTENSION_EVENTID,
1398 	WMI_CAC_EVENTID,
1399 	WMI_SNR_THRESHOLD_EVENTID,
1400 	WMI_LQ_THRESHOLD_EVENTID,
1401 	WMI_TX_RETRY_ERR_EVENTID,	/* 0x1014 */
1402 	WMI_REPORT_ROAM_DATA_EVENTID,
1403 	WMI_TEST_EVENTID,
1404 	WMI_APLIST_EVENTID,
1405 	WMI_GET_WOW_LIST_EVENTID,
1406 	WMI_GET_PMKID_LIST_EVENTID,
1407 	WMI_CHANNEL_CHANGE_EVENTID,
1408 	WMI_PEER_NODE_EVENTID,
1409 	WMI_PSPOLL_EVENTID,
1410 	WMI_DTIMEXPIRY_EVENTID,
1411 	WMI_WLAN_VERSION_EVENTID,
1412 	WMI_SET_PARAMS_REPLY_EVENTID,
1413 	WMI_ADDBA_REQ_EVENTID,		/*0x1020 */
1414 	WMI_ADDBA_RESP_EVENTID,
1415 	WMI_DELBA_REQ_EVENTID,
1416 	WMI_TX_COMPLETE_EVENTID,
1417 	WMI_HCI_EVENT_EVENTID,
1418 	WMI_ACL_DATA_EVENTID,
1419 	WMI_REPORT_SLEEP_STATE_EVENTID,
1420 	WMI_REPORT_BTCOEX_STATS_EVENTID,
1421 	WMI_REPORT_BTCOEX_CONFIG_EVENTID,
1422 	WMI_GET_PMK_EVENTID,
1423 
1424 	/* DFS Events */
1425 	WMI_DFS_HOST_ATTACH_EVENTID,
1426 	WMI_DFS_HOST_INIT_EVENTID,
1427 	WMI_DFS_RESET_DELAYLINES_EVENTID,
1428 	WMI_DFS_RESET_RADARQ_EVENTID,
1429 	WMI_DFS_RESET_AR_EVENTID,
1430 	WMI_DFS_RESET_ARQ_EVENTID,
1431 	WMI_DFS_SET_DUR_MULTIPLIER_EVENTID,
1432 	WMI_DFS_SET_BANGRADAR_EVENTID,
1433 	WMI_DFS_SET_DEBUGLEVEL_EVENTID,
1434 	WMI_DFS_PHYERR_EVENTID,
1435 
1436 	/* CCX Evants */
1437 	WMI_CCX_RM_STATUS_EVENTID,
1438 
1439 	/* P2P Events */
1440 	WMI_P2P_GO_NEG_RESULT_EVENTID,
1441 
1442 	WMI_WAC_SCAN_DONE_EVENTID,
1443 	WMI_WAC_REPORT_BSS_EVENTID,
1444 	WMI_WAC_START_WPS_EVENTID,
1445 	WMI_WAC_CTRL_REQ_REPLY_EVENTID,
1446 
1447 	WMI_REPORT_WMM_PARAMS_EVENTID,
1448 	WMI_WAC_REJECT_WPS_EVENTID,
1449 
1450 	/* More P2P Events */
1451 	WMI_P2P_GO_NEG_REQ_EVENTID,
1452 	WMI_P2P_INVITE_REQ_EVENTID,
1453 	WMI_P2P_INVITE_RCVD_RESULT_EVENTID,
1454 	WMI_P2P_INVITE_SENT_RESULT_EVENTID,
1455 	WMI_P2P_PROV_DISC_RESP_EVENTID,
1456 	WMI_P2P_PROV_DISC_REQ_EVENTID,
1457 
1458 	/* RFKILL Events */
1459 	WMI_RFKILL_STATE_CHANGE_EVENTID,
1460 	WMI_RFKILL_GET_MODE_CMD_EVENTID,
1461 
1462 	WMI_P2P_START_SDPD_EVENTID,
1463 	WMI_P2P_SDPD_RX_EVENTID,
1464 
1465 	WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID = 0x1047,
1466 
1467 	WMI_THIN_RESERVED_START_EVENTID = 0x8000,
1468 	/* Events in this range are reserved for thinmode */
1469 	WMI_THIN_RESERVED_END_EVENTID = 0x8fff,
1470 
1471 	WMI_SET_CHANNEL_EVENTID,
1472 	WMI_ASSOC_REQ_EVENTID,
1473 
1474 	/* Generic ACS event */
1475 	WMI_ACS_EVENTID,
1476 	WMI_STORERECALL_STORE_EVENTID,
1477 	WMI_WOW_EXT_WAKE_EVENTID,
1478 	WMI_GTK_OFFLOAD_STATUS_EVENTID,
1479 	WMI_NETWORK_LIST_OFFLOAD_EVENTID,
1480 	WMI_REMAIN_ON_CHNL_EVENTID,
1481 	WMI_CANCEL_REMAIN_ON_CHNL_EVENTID,
1482 	WMI_TX_STATUS_EVENTID,
1483 	WMI_RX_PROBE_REQ_EVENTID,
1484 	WMI_P2P_CAPABILITIES_EVENTID,
1485 	WMI_RX_ACTION_EVENTID,
1486 	WMI_P2P_INFO_EVENTID,
1487 
1488 	/* WPS Events */
1489 	WMI_WPS_GET_STATUS_EVENTID,
1490 	WMI_WPS_PROFILE_EVENTID,
1491 
1492 	/* more P2P events */
1493 	WMI_NOA_INFO_EVENTID,
1494 	WMI_OPPPS_INFO_EVENTID,
1495 	WMI_PORT_STATUS_EVENTID,
1496 
1497 	/* 802.11w */
1498 	WMI_GET_RSN_CAP_EVENTID,
1499 
1500 	WMI_TXE_NOTIFY_EVENTID,
1501 };
1502 
1503 struct wmi_ready_event_2 {
1504 	__le32 sw_version;
1505 	__le32 abi_version;
1506 	u8 mac_addr[ETH_ALEN];
1507 	u8 phy_cap;
1508 } __packed;
1509 
1510 /* WMI_PHY_CAPABILITY */
1511 enum wmi_phy_cap {
1512 	WMI_11A_CAP = 0x01,
1513 	WMI_11G_CAP = 0x02,
1514 	WMI_11AG_CAP = 0x03,
1515 	WMI_11AN_CAP = 0x04,
1516 	WMI_11GN_CAP = 0x05,
1517 	WMI_11AGN_CAP = 0x06,
1518 };
1519 
1520 /* Connect Event */
1521 struct wmi_connect_event {
1522 	union {
1523 		struct {
1524 			__le16 ch;
1525 			u8 bssid[ETH_ALEN];
1526 			__le16 listen_intvl;
1527 			__le16 beacon_intvl;
1528 			__le32 nw_type;
1529 		} sta;
1530 		struct {
1531 			u8 aid;
1532 			u8 phymode;
1533 			u8 mac_addr[ETH_ALEN];
1534 			u8 auth;
1535 			u8 keymgmt;
1536 			__le16 cipher;
1537 			u8 apsd_info;
1538 			u8 unused[3];
1539 		} ap_sta;
1540 		struct {
1541 			__le16 ch;
1542 			u8 bssid[ETH_ALEN];
1543 			u8 unused[8];
1544 		} ap_bss;
1545 	} u;
1546 	u8 beacon_ie_len;
1547 	u8 assoc_req_len;
1548 	u8 assoc_resp_len;
1549 	u8 assoc_info[];
1550 } __packed;
1551 
1552 /* Disconnect Event */
1553 enum wmi_disconnect_reason {
1554 	NO_NETWORK_AVAIL = 0x01,
1555 
1556 	/* bmiss */
1557 	LOST_LINK = 0x02,
1558 
1559 	DISCONNECT_CMD = 0x03,
1560 	BSS_DISCONNECTED = 0x04,
1561 	AUTH_FAILED = 0x05,
1562 	ASSOC_FAILED = 0x06,
1563 	NO_RESOURCES_AVAIL = 0x07,
1564 	CSERV_DISCONNECT = 0x08,
1565 	INVALID_PROFILE = 0x0a,
1566 	DOT11H_CHANNEL_SWITCH = 0x0b,
1567 	PROFILE_MISMATCH = 0x0c,
1568 	CONNECTION_EVICTED = 0x0d,
1569 	IBSS_MERGE = 0xe,
1570 };
1571 
1572 /* AP mode disconnect proto_reasons */
1573 enum ap_disconnect_reason {
1574 	WMI_AP_REASON_STA_LEFT		= 101,
1575 	WMI_AP_REASON_FROM_HOST		= 102,
1576 	WMI_AP_REASON_COMM_TIMEOUT	= 103,
1577 	WMI_AP_REASON_MAX_STA		= 104,
1578 	WMI_AP_REASON_ACL		= 105,
1579 	WMI_AP_REASON_STA_ROAM		= 106,
1580 	WMI_AP_REASON_DFS_CHANNEL	= 107,
1581 };
1582 
1583 #define ATH6KL_COUNTRY_RD_SHIFT        16
1584 
1585 struct ath6kl_wmi_regdomain {
1586 	__le32 reg_code;
1587 };
1588 
1589 struct wmi_disconnect_event {
1590 	/* reason code, see 802.11 spec. */
1591 	__le16 proto_reason_status;
1592 
1593 	/* set if known */
1594 	u8 bssid[ETH_ALEN];
1595 
1596 	/* see WMI_DISCONNECT_REASON */
1597 	u8 disconn_reason;
1598 
1599 	u8 assoc_resp_len;
1600 	u8 assoc_info[];
1601 } __packed;
1602 
1603 /*
1604  * BSS Info Event.
1605  * Mechanism used to inform host of the presence and characteristic of
1606  * wireless networks present.  Consists of bss info header followed by
1607  * the beacon or probe-response frame body.  The 802.11 header is no included.
1608  */
1609 enum wmi_bi_ftype {
1610 	BEACON_FTYPE = 0x1,
1611 	PROBERESP_FTYPE,
1612 	ACTION_MGMT_FTYPE,
1613 	PROBEREQ_FTYPE,
1614 };
1615 
1616 #define DEF_LRSSI_SCAN_PERIOD		 5
1617 #define DEF_LRSSI_ROAM_THRESHOLD	20
1618 #define DEF_LRSSI_ROAM_FLOOR		60
1619 #define DEF_SCAN_FOR_ROAM_INTVL		 2
1620 
1621 enum wmi_roam_ctrl {
1622 	WMI_FORCE_ROAM = 1,
1623 	WMI_SET_ROAM_MODE,
1624 	WMI_SET_HOST_BIAS,
1625 	WMI_SET_LRSSI_SCAN_PARAMS,
1626 };
1627 
1628 enum wmi_roam_mode {
1629 	WMI_DEFAULT_ROAM_MODE = 1, /* RSSI based roam */
1630 	WMI_HOST_BIAS_ROAM_MODE = 2, /* Host bias based roam */
1631 	WMI_LOCK_BSS_MODE = 3, /* Lock to the current BSS */
1632 };
1633 
1634 struct low_rssi_scan_params {
1635 	__le16 lrssi_scan_period;
1636 	a_sle16 lrssi_scan_threshold;
1637 	a_sle16 lrssi_roam_threshold;
1638 	u8 roam_rssi_floor;
1639 	u8 reserved[1];
1640 } __packed;
1641 
1642 struct roam_ctrl_cmd {
1643 	union {
1644 		u8 bssid[ETH_ALEN]; /* WMI_FORCE_ROAM */
1645 		u8 roam_mode; /* WMI_SET_ROAM_MODE */
1646 		struct low_rssi_scan_params params; /* WMI_SET_LRSSI_SCAN_PARAMS
1647 						     */
1648 	} __packed info;
1649 	u8 roam_ctrl;
1650 } __packed;
1651 
1652 struct set_beacon_int_cmd {
1653 	__le32 beacon_intvl;
1654 } __packed;
1655 
1656 struct set_dtim_cmd {
1657 	__le32 dtim_period;
1658 } __packed;
1659 
1660 /* BSS INFO HDR version 2.0 */
1661 struct wmi_bss_info_hdr2 {
1662 	__le16 ch; /* frequency in MHz */
1663 
1664 	/* see, enum wmi_bi_ftype */
1665 	u8 frame_type;
1666 
1667 	u8 snr; /* note: rssi = snr - 95 dBm */
1668 	u8 bssid[ETH_ALEN];
1669 	__le16 ie_mask;
1670 } __packed;
1671 
1672 /* Command Error Event */
1673 enum wmi_error_code {
1674 	INVALID_PARAM = 0x01,
1675 	ILLEGAL_STATE = 0x02,
1676 	INTERNAL_ERROR = 0x03,
1677 };
1678 
1679 struct wmi_cmd_error_event {
1680 	__le16 cmd_id;
1681 	u8 err_code;
1682 } __packed;
1683 
1684 struct wmi_pstream_timeout_event {
1685 	u8 tx_queue_num;
1686 	u8 rx_queue_num;
1687 	u8 traffic_direc;
1688 	u8 traffic_class;
1689 } __packed;
1690 
1691 /*
1692  * The WMI_NEIGHBOR_REPORT Event is generated by the target to inform
1693  * the host of BSS's it has found that matches the current profile.
1694  * It can be used by the host to cache PMKs and/to initiate pre-authentication
1695  * if the BSS supports it.  The first bssid is always the current associated
1696  * BSS.
1697  * The bssid and bssFlags information repeats according to the number
1698  * or APs reported.
1699  */
1700 enum wmi_bss_flags {
1701 	WMI_DEFAULT_BSS_FLAGS = 0x00,
1702 	WMI_PREAUTH_CAPABLE_BSS = 0x01,
1703 	WMI_PMKID_VALID_BSS = 0x02,
1704 };
1705 
1706 struct wmi_neighbor_info {
1707 	u8 bssid[ETH_ALEN];
1708 	u8 bss_flags; /* enum wmi_bss_flags */
1709 } __packed;
1710 
1711 struct wmi_neighbor_report_event {
1712 	u8 num_neighbors;
1713 	struct wmi_neighbor_info neighbor[];
1714 } __packed;
1715 
1716 /* TKIP MIC Error Event */
1717 struct wmi_tkip_micerr_event {
1718 	u8 key_id;
1719 	u8 is_mcast;
1720 } __packed;
1721 
1722 enum wmi_scan_status {
1723 	WMI_SCAN_STATUS_SUCCESS = 0,
1724 };
1725 
1726 /* WMI_SCAN_COMPLETE_EVENTID */
1727 struct wmi_scan_complete_event {
1728 	a_sle32 status;
1729 } __packed;
1730 
1731 #define MAX_OPT_DATA_LEN 1400
1732 
1733 /*
1734  * Special frame receive Event.
1735  * Mechanism used to inform host of the reception of the special frames.
1736  * Consists of special frame info header followed by special frame body.
1737  * The 802.11 header is not included.
1738  */
1739 struct wmi_opt_rx_info_hdr {
1740 	__le16 ch;
1741 	u8 frame_type;
1742 	s8 snr;
1743 	u8 src_addr[ETH_ALEN];
1744 	u8 bssid[ETH_ALEN];
1745 } __packed;
1746 
1747 /* Reporting statistic */
1748 struct tx_stats {
1749 	__le32 pkt;
1750 	__le32 byte;
1751 	__le32 ucast_pkt;
1752 	__le32 ucast_byte;
1753 	__le32 mcast_pkt;
1754 	__le32 mcast_byte;
1755 	__le32 bcast_pkt;
1756 	__le32 bcast_byte;
1757 	__le32 rts_success_cnt;
1758 	__le32 pkt_per_ac[4];
1759 	__le32 err_per_ac[4];
1760 
1761 	__le32 err;
1762 	__le32 fail_cnt;
1763 	__le32 retry_cnt;
1764 	__le32 mult_retry_cnt;
1765 	__le32 rts_fail_cnt;
1766 	a_sle32 ucast_rate;
1767 } __packed;
1768 
1769 struct rx_stats {
1770 	__le32 pkt;
1771 	__le32 byte;
1772 	__le32 ucast_pkt;
1773 	__le32 ucast_byte;
1774 	__le32 mcast_pkt;
1775 	__le32 mcast_byte;
1776 	__le32 bcast_pkt;
1777 	__le32 bcast_byte;
1778 	__le32 frgment_pkt;
1779 
1780 	__le32 err;
1781 	__le32 crc_err;
1782 	__le32 key_cache_miss;
1783 	__le32 decrypt_err;
1784 	__le32 dupl_frame;
1785 	a_sle32 ucast_rate;
1786 } __packed;
1787 
1788 #define RATE_INDEX_WITHOUT_SGI_MASK     0x7f
1789 #define RATE_INDEX_MSB     0x80
1790 
1791 struct tkip_ccmp_stats {
1792 	__le32 tkip_local_mic_fail;
1793 	__le32 tkip_cnter_measures_invoked;
1794 	__le32 tkip_replays;
1795 	__le32 tkip_fmt_err;
1796 	__le32 ccmp_fmt_err;
1797 	__le32 ccmp_replays;
1798 } __packed;
1799 
1800 struct pm_stats {
1801 	__le32 pwr_save_failure_cnt;
1802 	__le16 stop_tx_failure_cnt;
1803 	__le16 atim_tx_failure_cnt;
1804 	__le16 atim_rx_failure_cnt;
1805 	__le16 bcn_rx_failure_cnt;
1806 } __packed;
1807 
1808 struct cserv_stats {
1809 	__le32 cs_bmiss_cnt;
1810 	__le32 cs_low_rssi_cnt;
1811 	__le16 cs_connect_cnt;
1812 	__le16 cs_discon_cnt;
1813 	a_sle16 cs_ave_beacon_rssi;
1814 	__le16 cs_roam_count;
1815 	a_sle16 cs_rssi;
1816 	u8 cs_snr;
1817 	u8 cs_ave_beacon_snr;
1818 	u8 cs_last_roam_msec;
1819 } __packed;
1820 
1821 struct wlan_net_stats {
1822 	struct tx_stats tx;
1823 	struct rx_stats rx;
1824 	struct tkip_ccmp_stats tkip_ccmp_stats;
1825 } __packed;
1826 
1827 struct arp_stats {
1828 	__le32 arp_received;
1829 	__le32 arp_matched;
1830 	__le32 arp_replied;
1831 } __packed;
1832 
1833 struct wlan_wow_stats {
1834 	__le32 wow_pkt_dropped;
1835 	__le16 wow_evt_discarded;
1836 	u8 wow_host_pkt_wakeups;
1837 	u8 wow_host_evt_wakeups;
1838 } __packed;
1839 
1840 struct wmi_target_stats {
1841 	__le32 lq_val;
1842 	a_sle32 noise_floor_calib;
1843 	struct pm_stats pm_stats;
1844 	struct wlan_net_stats stats;
1845 	struct wlan_wow_stats wow_stats;
1846 	struct arp_stats arp_stats;
1847 	struct cserv_stats cserv_stats;
1848 } __packed;
1849 
1850 /*
1851  * WMI_RSSI_THRESHOLD_EVENTID.
1852  * Indicate the RSSI events to host. Events are indicated when we breach a
1853  * threshold value.
1854  */
1855 enum wmi_rssi_threshold_val {
1856 	WMI_RSSI_THRESHOLD1_ABOVE = 0,
1857 	WMI_RSSI_THRESHOLD2_ABOVE,
1858 	WMI_RSSI_THRESHOLD3_ABOVE,
1859 	WMI_RSSI_THRESHOLD4_ABOVE,
1860 	WMI_RSSI_THRESHOLD5_ABOVE,
1861 	WMI_RSSI_THRESHOLD6_ABOVE,
1862 	WMI_RSSI_THRESHOLD1_BELOW,
1863 	WMI_RSSI_THRESHOLD2_BELOW,
1864 	WMI_RSSI_THRESHOLD3_BELOW,
1865 	WMI_RSSI_THRESHOLD4_BELOW,
1866 	WMI_RSSI_THRESHOLD5_BELOW,
1867 	WMI_RSSI_THRESHOLD6_BELOW
1868 };
1869 
1870 struct wmi_rssi_threshold_event {
1871 	a_sle16 rssi;
1872 	u8 range;
1873 } __packed;
1874 
1875 enum wmi_snr_threshold_val {
1876 	WMI_SNR_THRESHOLD1_ABOVE = 1,
1877 	WMI_SNR_THRESHOLD1_BELOW,
1878 	WMI_SNR_THRESHOLD2_ABOVE,
1879 	WMI_SNR_THRESHOLD2_BELOW,
1880 	WMI_SNR_THRESHOLD3_ABOVE,
1881 	WMI_SNR_THRESHOLD3_BELOW,
1882 	WMI_SNR_THRESHOLD4_ABOVE,
1883 	WMI_SNR_THRESHOLD4_BELOW
1884 };
1885 
1886 struct wmi_snr_threshold_event {
1887 	/* see, enum wmi_snr_threshold_val */
1888 	u8 range;
1889 
1890 	u8 snr;
1891 } __packed;
1892 
1893 /* WMI_REPORT_ROAM_TBL_EVENTID */
1894 #define MAX_ROAM_TBL_CAND   5
1895 
1896 struct wmi_bss_roam_info {
1897 	a_sle32 roam_util;
1898 	u8 bssid[ETH_ALEN];
1899 	s8 rssi;
1900 	s8 rssidt;
1901 	s8 last_rssi;
1902 	s8 util;
1903 	s8 bias;
1904 
1905 	/* for alignment */
1906 	u8 reserved;
1907 } __packed;
1908 
1909 struct wmi_target_roam_tbl {
1910 	__le16 roam_mode;
1911 	__le16 num_entries;
1912 	struct wmi_bss_roam_info info[];
1913 } __packed;
1914 
1915 /* WMI_CAC_EVENTID */
1916 enum cac_indication {
1917 	CAC_INDICATION_ADMISSION = 0x00,
1918 	CAC_INDICATION_ADMISSION_RESP = 0x01,
1919 	CAC_INDICATION_DELETE = 0x02,
1920 	CAC_INDICATION_NO_RESP = 0x03,
1921 };
1922 
1923 #define WMM_TSPEC_IE_LEN   63
1924 
1925 struct wmi_cac_event {
1926 	u8 ac;
1927 	u8 cac_indication;
1928 	u8 status_code;
1929 	u8 tspec_suggestion[WMM_TSPEC_IE_LEN];
1930 } __packed;
1931 
1932 /* WMI_APLIST_EVENTID */
1933 
1934 enum aplist_ver {
1935 	APLIST_VER1 = 1,
1936 };
1937 
1938 struct wmi_ap_info_v1 {
1939 	u8 bssid[ETH_ALEN];
1940 	__le16 channel;
1941 } __packed;
1942 
1943 union wmi_ap_info {
1944 	struct wmi_ap_info_v1 ap_info_v1;
1945 } __packed;
1946 
1947 struct wmi_aplist_event {
1948 	u8 ap_list_ver;
1949 	u8 num_ap;
1950 	union wmi_ap_info ap_list[];
1951 } __packed;
1952 
1953 /* Developer Commands */
1954 
1955 /*
1956  * WMI_SET_BITRATE_CMDID
1957  *
1958  * Get bit rate cmd uses same definition as set bit rate cmd
1959  */
1960 enum wmi_bit_rate {
1961 	RATE_AUTO = -1,
1962 	RATE_1Mb = 0,
1963 	RATE_2Mb = 1,
1964 	RATE_5_5Mb = 2,
1965 	RATE_11Mb = 3,
1966 	RATE_6Mb = 4,
1967 	RATE_9Mb = 5,
1968 	RATE_12Mb = 6,
1969 	RATE_18Mb = 7,
1970 	RATE_24Mb = 8,
1971 	RATE_36Mb = 9,
1972 	RATE_48Mb = 10,
1973 	RATE_54Mb = 11,
1974 	RATE_MCS_0_20 = 12,
1975 	RATE_MCS_1_20 = 13,
1976 	RATE_MCS_2_20 = 14,
1977 	RATE_MCS_3_20 = 15,
1978 	RATE_MCS_4_20 = 16,
1979 	RATE_MCS_5_20 = 17,
1980 	RATE_MCS_6_20 = 18,
1981 	RATE_MCS_7_20 = 19,
1982 	RATE_MCS_0_40 = 20,
1983 	RATE_MCS_1_40 = 21,
1984 	RATE_MCS_2_40 = 22,
1985 	RATE_MCS_3_40 = 23,
1986 	RATE_MCS_4_40 = 24,
1987 	RATE_MCS_5_40 = 25,
1988 	RATE_MCS_6_40 = 26,
1989 	RATE_MCS_7_40 = 27,
1990 };
1991 
1992 struct wmi_bit_rate_reply {
1993 	/* see, enum wmi_bit_rate */
1994 	s8 rate_index;
1995 } __packed;
1996 
1997 /*
1998  * WMI_SET_FIXRATES_CMDID
1999  *
2000  * Get fix rates cmd uses same definition as set fix rates cmd
2001  */
2002 struct wmi_fix_rates_reply {
2003 	/* see wmi_bit_rate */
2004 	__le32 fix_rate_mask;
2005 } __packed;
2006 
2007 enum roam_data_type {
2008 	/* get the roam time data */
2009 	ROAM_DATA_TIME = 1,
2010 };
2011 
2012 struct wmi_target_roam_time {
2013 	__le32 disassoc_time;
2014 	__le32 no_txrx_time;
2015 	__le32 assoc_time;
2016 	__le32 allow_txrx_time;
2017 	u8 disassoc_bssid[ETH_ALEN];
2018 	s8 disassoc_bss_rssi;
2019 	u8 assoc_bssid[ETH_ALEN];
2020 	s8 assoc_bss_rssi;
2021 } __packed;
2022 
2023 enum wmi_txop_cfg {
2024 	WMI_TXOP_DISABLED = 0,
2025 	WMI_TXOP_ENABLED
2026 };
2027 
2028 struct wmi_set_wmm_txop_cmd {
2029 	u8 txop_enable;
2030 } __packed;
2031 
2032 struct wmi_set_keepalive_cmd {
2033 	u8 keep_alive_intvl;
2034 } __packed;
2035 
2036 struct wmi_get_keepalive_cmd {
2037 	__le32 configured;
2038 	u8 keep_alive_intvl;
2039 } __packed;
2040 
2041 struct wmi_set_appie_cmd {
2042 	u8 mgmt_frm_type; /* enum wmi_mgmt_frame_type */
2043 	u8 ie_len;
2044 	u8 ie_info[];
2045 } __packed;
2046 
2047 struct wmi_set_ie_cmd {
2048 	u8 ie_id;
2049 	u8 ie_field;	/* enum wmi_ie_field_type */
2050 	u8 ie_len;
2051 	u8 reserved;
2052 	u8 ie_info[];
2053 } __packed;
2054 
2055 /* Notify the WSC registration status to the target */
2056 #define WSC_REG_ACTIVE     1
2057 #define WSC_REG_INACTIVE   0
2058 
2059 #define WOW_MAX_FILTERS_PER_LIST 4
2060 #define WOW_PATTERN_SIZE	 64
2061 
2062 #define MAC_MAX_FILTERS_PER_LIST 4
2063 
2064 struct wow_filter {
2065 	u8 wow_valid_filter;
2066 	u8 wow_filter_id;
2067 	u8 wow_filter_size;
2068 	u8 wow_filter_offset;
2069 	u8 wow_filter_mask[WOW_PATTERN_SIZE];
2070 	u8 wow_filter_pattern[WOW_PATTERN_SIZE];
2071 } __packed;
2072 
2073 #define MAX_IP_ADDRS  2
2074 
2075 struct wmi_set_ip_cmd {
2076 	/* IP in network byte order */
2077 	__be32 ips[MAX_IP_ADDRS];
2078 } __packed;
2079 
2080 enum ath6kl_wow_filters {
2081 	WOW_FILTER_SSID			= BIT(1),
2082 	WOW_FILTER_OPTION_MAGIC_PACKET  = BIT(2),
2083 	WOW_FILTER_OPTION_EAP_REQ	= BIT(3),
2084 	WOW_FILTER_OPTION_PATTERNS	= BIT(4),
2085 	WOW_FILTER_OPTION_OFFLOAD_ARP	= BIT(5),
2086 	WOW_FILTER_OPTION_OFFLOAD_NS	= BIT(6),
2087 	WOW_FILTER_OPTION_OFFLOAD_GTK	= BIT(7),
2088 	WOW_FILTER_OPTION_8021X_4WAYHS	= BIT(8),
2089 	WOW_FILTER_OPTION_NLO_DISCVRY	= BIT(9),
2090 	WOW_FILTER_OPTION_NWK_DISASSOC	= BIT(10),
2091 	WOW_FILTER_OPTION_GTK_ERROR	= BIT(11),
2092 	WOW_FILTER_OPTION_TEST_MODE	= BIT(15),
2093 };
2094 
2095 enum ath6kl_host_mode {
2096 	ATH6KL_HOST_MODE_AWAKE,
2097 	ATH6KL_HOST_MODE_ASLEEP,
2098 };
2099 
2100 struct wmi_set_host_sleep_mode_cmd {
2101 	__le32 awake;
2102 	__le32 asleep;
2103 } __packed;
2104 
2105 enum ath6kl_wow_mode {
2106 	ATH6KL_WOW_MODE_DISABLE,
2107 	ATH6KL_WOW_MODE_ENABLE,
2108 };
2109 
2110 struct wmi_set_wow_mode_cmd {
2111 	__le32 enable_wow;
2112 	__le32 filter;
2113 	__le16 host_req_delay;
2114 } __packed;
2115 
2116 struct wmi_add_wow_pattern_cmd {
2117 	u8 filter_list_id;
2118 	u8 filter_size;
2119 	u8 filter_offset;
2120 	u8 filter[];
2121 } __packed;
2122 
2123 struct wmi_del_wow_pattern_cmd {
2124 	__le16 filter_list_id;
2125 	__le16 filter_id;
2126 } __packed;
2127 
2128 /* WMI_SET_TXE_NOTIFY_CMDID */
2129 struct wmi_txe_notify_cmd {
2130 	__le32 rate;
2131 	__le32 pkts;
2132 	__le32 intvl;
2133 } __packed;
2134 
2135 /* WMI_TXE_NOTIFY_EVENTID */
2136 struct wmi_txe_notify_event {
2137 	__le32 rate;
2138 	__le32 pkts;
2139 } __packed;
2140 
2141 /* WMI_SET_AKMP_PARAMS_CMD */
2142 
2143 struct wmi_pmkid {
2144 	u8 pmkid[WMI_PMKID_LEN];
2145 } __packed;
2146 
2147 /* WMI_GET_PMKID_LIST_CMD  Reply */
2148 struct wmi_pmkid_list_reply {
2149 	__le32 num_pmkid;
2150 	u8 bssid_list[ETH_ALEN][1];
2151 	struct wmi_pmkid pmkid_list[1];
2152 } __packed;
2153 
2154 /* WMI_ADDBA_REQ_EVENTID */
2155 struct wmi_addba_req_event {
2156 	u8 tid;
2157 	u8 win_sz;
2158 	__le16 st_seq_no;
2159 
2160 	/* f/w response for ADDBA Req; OK (0) or failure (!=0) */
2161 	u8 status;
2162 } __packed;
2163 
2164 /* WMI_ADDBA_RESP_EVENTID */
2165 struct wmi_addba_resp_event {
2166 	u8 tid;
2167 
2168 	/* OK (0), failure (!=0) */
2169 	u8 status;
2170 
2171 	/* three values: not supported(0), 3839, 8k */
2172 	__le16 amsdu_sz;
2173 } __packed;
2174 
2175 /* WMI_DELBA_EVENTID
2176  * f/w received a DELBA for peer and processed it.
2177  * Host is notified of this
2178  */
2179 struct wmi_delba_event {
2180 	u8 tid;
2181 	u8 is_peer_initiator;
2182 	__le16 reason_code;
2183 } __packed;
2184 
2185 #define PEER_NODE_JOIN_EVENT		0x00
2186 #define PEER_NODE_LEAVE_EVENT		0x01
2187 #define PEER_FIRST_NODE_JOIN_EVENT	0x10
2188 #define PEER_LAST_NODE_LEAVE_EVENT	0x11
2189 
2190 struct wmi_peer_node_event {
2191 	u8 event_code;
2192 	u8 peer_mac_addr[ETH_ALEN];
2193 } __packed;
2194 
2195 /* Transmit complete event data structure(s) */
2196 
2197 /* version 1 of tx complete msg */
2198 struct tx_complete_msg_v1 {
2199 #define TX_COMPLETE_STATUS_SUCCESS 0
2200 #define TX_COMPLETE_STATUS_RETRIES 1
2201 #define TX_COMPLETE_STATUS_NOLINK  2
2202 #define TX_COMPLETE_STATUS_TIMEOUT 3
2203 #define TX_COMPLETE_STATUS_OTHER   4
2204 
2205 	u8 status;
2206 
2207 	/* packet ID to identify parent packet */
2208 	u8 pkt_id;
2209 
2210 	/* rate index on successful transmission */
2211 	u8 rate_idx;
2212 
2213 	/* number of ACK failures in tx attempt */
2214 	u8 ack_failures;
2215 } __packed;
2216 
2217 struct wmi_tx_complete_event {
2218 	/* no of tx comp msgs following this struct */
2219 	u8 num_msg;
2220 
2221 	/* length in bytes for each individual msg following this struct */
2222 	u8 msg_len;
2223 
2224 	/* version of tx complete msg data following this struct */
2225 	u8 msg_type;
2226 
2227 	/* individual messages follow this header */
2228 	u8 reserved;
2229 } __packed;
2230 
2231 /*
2232  * ------- AP Mode definitions --------------
2233  */
2234 
2235 /*
2236  * !!! Warning !!!
2237  * -Changing the following values needs compilation of both driver and firmware
2238  */
2239 #define AP_MAX_NUM_STA          10
2240 
2241 /* Spl. AID used to set DTIM flag in the beacons */
2242 #define MCAST_AID               0xFF
2243 
2244 #define DEF_AP_COUNTRY_CODE     "US "
2245 
2246 /* Used with WMI_AP_SET_NUM_STA_CMDID */
2247 
2248 /*
2249  * Used with WMI_AP_SET_MLME_CMDID
2250  */
2251 
2252 /* MLME Commands */
2253 #define WMI_AP_MLME_ASSOC       1   /* associate station */
2254 #define WMI_AP_DISASSOC         2   /* disassociate station */
2255 #define WMI_AP_DEAUTH           3   /* deauthenticate station */
2256 #define WMI_AP_MLME_AUTHORIZE   4   /* authorize station */
2257 #define WMI_AP_MLME_UNAUTHORIZE 5   /* unauthorize station */
2258 
2259 struct wmi_ap_set_mlme_cmd {
2260 	u8 mac[ETH_ALEN];
2261 	__le16 reason;		/* 802.11 reason code */
2262 	u8 cmd;			/* operation to perform (WMI_AP_*) */
2263 } __packed;
2264 
2265 struct wmi_ap_set_pvb_cmd {
2266 	__le32 flag;
2267 	__le16 rsvd;
2268 	__le16 aid;
2269 } __packed;
2270 
2271 struct wmi_rx_frame_format_cmd {
2272 	/* version of meta data for rx packets <0 = default> (0-7 = valid) */
2273 	u8 meta_ver;
2274 
2275 	/*
2276 	 * 1 == leave .11 header intact,
2277 	 * 0 == replace .11 header with .3 <default>
2278 	 */
2279 	u8 dot11_hdr;
2280 
2281 	/*
2282 	 * 1 == defragmentation is performed by host,
2283 	 * 0 == performed by target <default>
2284 	 */
2285 	u8 defrag_on_host;
2286 
2287 	/* for alignment */
2288 	u8 reserved[1];
2289 } __packed;
2290 
2291 struct wmi_ap_hidden_ssid_cmd {
2292 	u8 hidden_ssid;
2293 } __packed;
2294 
2295 struct wmi_set_inact_period_cmd {
2296 	__le32 inact_period;
2297 	u8 num_null_func;
2298 } __packed;
2299 
2300 /* AP mode events */
2301 struct wmi_ap_set_apsd_cmd {
2302 	u8 enable;
2303 } __packed;
2304 
2305 enum wmi_ap_apsd_buffered_traffic_flags {
2306 	WMI_AP_APSD_NO_DELIVERY_FRAMES =  0x1,
2307 };
2308 
2309 struct wmi_ap_apsd_buffered_traffic_cmd {
2310 	__le16 aid;
2311 	__le16 bitmap;
2312 	__le32 flags;
2313 } __packed;
2314 
2315 /* WMI_PS_POLL_EVENT */
2316 struct wmi_pspoll_event {
2317 	__le16 aid;
2318 } __packed;
2319 
2320 struct wmi_per_sta_stat {
2321 	__le32 tx_bytes;
2322 	__le32 tx_pkts;
2323 	__le32 tx_error;
2324 	__le32 tx_discard;
2325 	__le32 rx_bytes;
2326 	__le32 rx_pkts;
2327 	__le32 rx_error;
2328 	__le32 rx_discard;
2329 	__le32 aid;
2330 } __packed;
2331 
2332 struct wmi_ap_mode_stat {
2333 	__le32 action;
2334 	struct wmi_per_sta_stat sta[AP_MAX_NUM_STA + 1];
2335 } __packed;
2336 
2337 /* End of AP mode definitions */
2338 
2339 struct wmi_remain_on_chnl_cmd {
2340 	__le32 freq;
2341 	__le32 duration;
2342 } __packed;
2343 
2344 /* wmi_send_action_cmd is to be deprecated. Use
2345  * wmi_send_mgmt_cmd instead. The new structure supports P2P mgmt
2346  * operations using station interface.
2347  */
2348 struct wmi_send_action_cmd {
2349 	__le32 id;
2350 	__le32 freq;
2351 	__le32 wait;
2352 	__le16 len;
2353 	u8 data[];
2354 } __packed;
2355 
2356 struct wmi_send_mgmt_cmd {
2357 	__le32 id;
2358 	__le32 freq;
2359 	__le32 wait;
2360 	__le32 no_cck;
2361 	__le16 len;
2362 	u8 data[];
2363 } __packed;
2364 
2365 struct wmi_tx_status_event {
2366 	__le32 id;
2367 	u8 ack_status;
2368 } __packed;
2369 
2370 struct wmi_probe_req_report_cmd {
2371 	u8 enable;
2372 } __packed;
2373 
2374 struct wmi_disable_11b_rates_cmd {
2375 	u8 disable;
2376 } __packed;
2377 
2378 struct wmi_set_appie_extended_cmd {
2379 	u8 role_id;
2380 	u8 mgmt_frm_type;
2381 	u8 ie_len;
2382 	u8 ie_info[];
2383 } __packed;
2384 
2385 struct wmi_remain_on_chnl_event {
2386 	__le32 freq;
2387 	__le32 duration;
2388 } __packed;
2389 
2390 struct wmi_cancel_remain_on_chnl_event {
2391 	__le32 freq;
2392 	__le32 duration;
2393 	u8 status;
2394 } __packed;
2395 
2396 struct wmi_rx_action_event {
2397 	__le32 freq;
2398 	__le16 len;
2399 	u8 data[];
2400 } __packed;
2401 
2402 struct wmi_p2p_capabilities_event {
2403 	__le16 len;
2404 	u8 data[];
2405 } __packed;
2406 
2407 struct wmi_p2p_rx_probe_req_event {
2408 	__le32 freq;
2409 	__le16 len;
2410 	u8 data[];
2411 } __packed;
2412 
2413 #define P2P_FLAG_CAPABILITIES_REQ   (0x00000001)
2414 #define P2P_FLAG_MACADDR_REQ        (0x00000002)
2415 #define P2P_FLAG_HMODEL_REQ         (0x00000002)
2416 
2417 struct wmi_get_p2p_info {
2418 	__le32 info_req_flags;
2419 } __packed;
2420 
2421 struct wmi_p2p_info_event {
2422 	__le32 info_req_flags;
2423 	__le16 len;
2424 	u8 data[];
2425 } __packed;
2426 
2427 struct wmi_p2p_capabilities {
2428 	u8 go_power_save;
2429 } __packed;
2430 
2431 struct wmi_p2p_macaddr {
2432 	u8 mac_addr[ETH_ALEN];
2433 } __packed;
2434 
2435 struct wmi_p2p_hmodel {
2436 	u8 p2p_model;
2437 } __packed;
2438 
2439 struct wmi_p2p_probe_response_cmd {
2440 	__le32 freq;
2441 	u8 destination_addr[ETH_ALEN];
2442 	__le16 len;
2443 	u8 data[];
2444 } __packed;
2445 
2446 /* Extended WMI (WMIX)
2447  *
2448  * Extended WMIX commands are encapsulated in a WMI message with
2449  * cmd=WMI_EXTENSION_CMD.
2450  *
2451  * Extended WMI commands are those that are needed during wireless
2452  * operation, but which are not really wireless commands.  This allows,
2453  * for instance, platform-specific commands.  Extended WMI commands are
2454  * embedded in a WMI command message with WMI_COMMAND_ID=WMI_EXTENSION_CMDID.
2455  * Extended WMI events are similarly embedded in a WMI event message with
2456  * WMI_EVENT_ID=WMI_EXTENSION_EVENTID.
2457  */
2458 struct wmix_cmd_hdr {
2459 	__le32 cmd_id;
2460 } __packed;
2461 
2462 enum wmix_command_id {
2463 	WMIX_DSETOPEN_REPLY_CMDID = 0x2001,
2464 	WMIX_DSETDATA_REPLY_CMDID,
2465 	WMIX_GPIO_OUTPUT_SET_CMDID,
2466 	WMIX_GPIO_INPUT_GET_CMDID,
2467 	WMIX_GPIO_REGISTER_SET_CMDID,
2468 	WMIX_GPIO_REGISTER_GET_CMDID,
2469 	WMIX_GPIO_INTR_ACK_CMDID,
2470 	WMIX_HB_CHALLENGE_RESP_CMDID,
2471 	WMIX_DBGLOG_CFG_MODULE_CMDID,
2472 	WMIX_PROF_CFG_CMDID,	/* 0x200a */
2473 	WMIX_PROF_ADDR_SET_CMDID,
2474 	WMIX_PROF_START_CMDID,
2475 	WMIX_PROF_STOP_CMDID,
2476 	WMIX_PROF_COUNT_GET_CMDID,
2477 };
2478 
2479 enum wmix_event_id {
2480 	WMIX_DSETOPENREQ_EVENTID = 0x3001,
2481 	WMIX_DSETCLOSE_EVENTID,
2482 	WMIX_DSETDATAREQ_EVENTID,
2483 	WMIX_GPIO_INTR_EVENTID,
2484 	WMIX_GPIO_DATA_EVENTID,
2485 	WMIX_GPIO_ACK_EVENTID,
2486 	WMIX_HB_CHALLENGE_RESP_EVENTID,
2487 	WMIX_DBGLOG_EVENTID,
2488 	WMIX_PROF_COUNT_EVENTID,
2489 };
2490 
2491 /*
2492  * ------Error Detection support-------
2493  */
2494 
2495 /*
2496  * WMIX_HB_CHALLENGE_RESP_CMDID
2497  * Heartbeat Challenge Response command
2498  */
2499 struct wmix_hb_challenge_resp_cmd {
2500 	__le32 cookie;
2501 	__le32 source;
2502 } __packed;
2503 
2504 struct ath6kl_wmix_dbglog_cfg_module_cmd {
2505 	__le32 valid;
2506 	__le32 config;
2507 } __packed;
2508 
2509 /* End of Extended WMI (WMIX) */
2510 
2511 enum wmi_sync_flag {
2512 	NO_SYNC_WMIFLAG = 0,
2513 
2514 	/* transmit all queued data before cmd */
2515 	SYNC_BEFORE_WMIFLAG,
2516 
2517 	/* any new data waits until cmd execs */
2518 	SYNC_AFTER_WMIFLAG,
2519 
2520 	SYNC_BOTH_WMIFLAG,
2521 
2522 	/* end marker */
2523 	END_WMIFLAG
2524 };
2525 
2526 enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi);
2527 void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id);
2528 int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb);
2529 int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb,
2530 			    u8 msg_type, u32 flags,
2531 			    enum wmi_data_hdr_data_type data_type,
2532 			    u8 meta_ver, void *tx_meta_info, u8 if_idx);
2533 
2534 int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb);
2535 int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb);
2536 int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, u8 if_idx,
2537 				       struct sk_buff *skb, u32 layer2_priority,
2538 				       bool wmm_enabled, u8 *ac);
2539 
2540 int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb);
2541 
2542 int ath6kl_wmi_cmd_send(struct wmi *wmi, u8 if_idx, struct sk_buff *skb,
2543 			enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag);
2544 
2545 int ath6kl_wmi_connect_cmd(struct wmi *wmi, u8 if_idx,
2546 			   enum network_type nw_type,
2547 			   enum dot11_auth_mode dot11_auth_mode,
2548 			   enum auth_mode auth_mode,
2549 			   enum ath6kl_crypto_type pairwise_crypto,
2550 			   u8 pairwise_crypto_len,
2551 			   enum ath6kl_crypto_type group_crypto,
2552 			   u8 group_crypto_len, int ssid_len, u8 *ssid,
2553 			   u8 *bssid, u16 channel, u32 ctrl_flags,
2554 			   u8 nw_subtype);
2555 
2556 int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 if_idx, u8 *bssid,
2557 			     u16 channel);
2558 int ath6kl_wmi_disconnect_cmd(struct wmi *wmi, u8 if_idx);
2559 
2560 int ath6kl_wmi_beginscan_cmd(struct wmi *wmi, u8 if_idx,
2561 			     enum wmi_scan_type scan_type,
2562 			     u32 force_fgscan, u32 is_legacy,
2563 			     u32 home_dwell_time, u32 force_scan_interval,
2564 			     s8 num_chan, u16 *ch_list, u32 no_cck,
2565 			     u32 *rates);
2566 int ath6kl_wmi_enable_sched_scan_cmd(struct wmi *wmi, u8 if_idx, bool enable);
2567 
2568 int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u8 if_idx, u16 fg_start_sec,
2569 			      u16 fg_end_sec, u16 bg_sec,
2570 			      u16 minact_chdw_msec, u16 maxact_chdw_msec,
2571 			      u16 pas_chdw_msec, u8 short_scan_ratio,
2572 			      u8 scan_ctrl_flag, u32 max_dfsch_act_time,
2573 			      u16 maxact_scan_per_ssid);
2574 int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 if_idx, u8 filter,
2575 			     u32 ie_mask);
2576 int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 if_idx, u8 index, u8 flag,
2577 			      u8 ssid_len, u8 *ssid);
2578 int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u8 if_idx,
2579 				  u16 listen_interval,
2580 				  u16 listen_beacons);
2581 int ath6kl_wmi_bmisstime_cmd(struct wmi *wmi, u8 if_idx,
2582 			     u16 bmiss_time, u16 num_beacons);
2583 int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 if_idx, u8 pwr_mode);
2584 int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u8 if_idx, u16 idle_period,
2585 			    u16 ps_poll_num, u16 dtim_policy,
2586 			    u16 tx_wakup_policy, u16 num_tx_to_wakeup,
2587 			    u16 ps_fail_event_policy);
2588 int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi, u8 if_idx,
2589 				  struct wmi_create_pstream_cmd *pstream);
2590 int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 if_idx, u8 traffic_class,
2591 				  u8 tsid);
2592 int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 if_idx, u8 timeout);
2593 
2594 int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold);
2595 int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 if_idx, u8 status,
2596 				 u8 preamble_policy);
2597 
2598 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source);
2599 int ath6kl_wmi_config_debug_module_cmd(struct wmi *wmi, u32 valid, u32 config);
2600 
2601 int ath6kl_wmi_get_stats_cmd(struct wmi *wmi, u8 if_idx);
2602 int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index,
2603 			  enum ath6kl_crypto_type key_type,
2604 			  u8 key_usage, u8 key_len,
2605 			  u8 *key_rsc, unsigned int key_rsc_len,
2606 			  u8 *key_material,
2607 			  u8 key_op_ctrl, u8 *mac_addr,
2608 			  enum wmi_sync_flag sync_flag);
2609 int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 if_idx, const u8 *krk);
2610 int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 if_idx, u8 key_index);
2611 int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, u8 if_idx, const u8 *bssid,
2612 			    const u8 *pmkid, bool set);
2613 int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 if_idx, u8 dbM);
2614 int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi, u8 if_idx);
2615 int ath6kl_wmi_get_roam_tbl_cmd(struct wmi *wmi);
2616 
2617 int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, u8 if_idx, enum wmi_txop_cfg cfg);
2618 int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 if_idx,
2619 				 u8 keep_alive_intvl);
2620 int ath6kl_wmi_set_htcap_cmd(struct wmi *wmi, u8 if_idx,
2621 			     enum nl80211_band band,
2622 			     struct ath6kl_htcap *htcap);
2623 int ath6kl_wmi_test_cmd(struct wmi *wmi, void *buf, size_t len);
2624 
2625 s32 ath6kl_wmi_get_rate(struct wmi *wmi, s8 rate_index);
2626 
2627 int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, u8 if_idx,
2628 			  __be32 ips0, __be32 ips1);
2629 int ath6kl_wmi_set_host_sleep_mode_cmd(struct wmi *wmi, u8 if_idx,
2630 				       enum ath6kl_host_mode host_mode);
2631 int ath6kl_wmi_set_bitrate_mask(struct wmi *wmi, u8 if_idx,
2632 				const struct cfg80211_bitrate_mask *mask);
2633 int ath6kl_wmi_set_wow_mode_cmd(struct wmi *wmi, u8 if_idx,
2634 				enum ath6kl_wow_mode wow_mode,
2635 				u32 filter, u16 host_req_delay);
2636 int ath6kl_wmi_add_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
2637 				   u8 list_id, u8 filter_size,
2638 				   u8 filter_offset, const u8 *filter,
2639 				   const u8 *mask);
2640 int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
2641 				   u16 list_id, u16 filter_id);
2642 int ath6kl_wmi_set_rssi_filter_cmd(struct wmi *wmi, u8 if_idx, s8 rssi);
2643 int ath6kl_wmi_set_roam_lrssi_cmd(struct wmi *wmi, u8 lrssi);
2644 int ath6kl_wmi_ap_set_dtim_cmd(struct wmi *wmi, u8 if_idx, u32 dtim_period);
2645 int ath6kl_wmi_ap_set_beacon_intvl_cmd(struct wmi *wmi, u8 if_idx,
2646 				       u32 beacon_interval);
2647 int ath6kl_wmi_force_roam_cmd(struct wmi *wmi, const u8 *bssid);
2648 int ath6kl_wmi_set_roam_mode_cmd(struct wmi *wmi, enum wmi_roam_mode mode);
2649 int ath6kl_wmi_mcast_filter_cmd(struct wmi *wmi, u8 if_idx, bool mc_all_on);
2650 int ath6kl_wmi_add_del_mcast_filter_cmd(struct wmi *wmi, u8 if_idx,
2651 					u8 *filter, bool add_filter);
2652 int ath6kl_wmi_sta_bmiss_enhance_cmd(struct wmi *wmi, u8 if_idx, bool enable);
2653 int ath6kl_wmi_set_txe_notify(struct wmi *wmi, u8 idx,
2654 			      u32 rate, u32 pkts, u32 intvl);
2655 int ath6kl_wmi_set_regdomain_cmd(struct wmi *wmi, const char *alpha2);
2656 
2657 /* AP mode uAPSD */
2658 int ath6kl_wmi_ap_set_apsd(struct wmi *wmi, u8 if_idx, u8 enable);
2659 
2660 int ath6kl_wmi_set_apsd_bfrd_traf(struct wmi *wmi,
2661 						u8 if_idx, u16 aid,
2662 						u16 bitmap, u32 flags);
2663 
2664 u8 ath6kl_wmi_get_traffic_class(u8 user_priority);
2665 
2666 u8 ath6kl_wmi_determine_user_priority(u8 *pkt, u32 layer2_pri);
2667 /* AP mode */
2668 int ath6kl_wmi_ap_hidden_ssid(struct wmi *wmi, u8 if_idx, bool enable);
2669 int ath6kl_wmi_ap_profile_commit(struct wmi *wmip, u8 if_idx,
2670 				 struct wmi_connect_cmd *p);
2671 
2672 int ath6kl_wmi_ap_set_mlme(struct wmi *wmip, u8 if_idx, u8 cmd,
2673 			   const u8 *mac, u16 reason);
2674 
2675 int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u8 if_idx, u16 aid, bool flag);
2676 
2677 int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 if_idx,
2678 				       u8 rx_meta_version,
2679 				       bool rx_dot11_hdr, bool defrag_on_host);
2680 
2681 int ath6kl_wmi_set_appie_cmd(struct wmi *wmi, u8 if_idx, u8 mgmt_frm_type,
2682 			     const u8 *ie, u8 ie_len);
2683 
2684 int ath6kl_wmi_set_ie_cmd(struct wmi *wmi, u8 if_idx, u8 ie_id, u8 ie_field,
2685 			  const u8 *ie_info, u8 ie_len);
2686 
2687 /* P2P */
2688 int ath6kl_wmi_disable_11b_rates_cmd(struct wmi *wmi, bool disable);
2689 
2690 int ath6kl_wmi_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx, u32 freq,
2691 				  u32 dur);
2692 
2693 int ath6kl_wmi_send_mgmt_cmd(struct wmi *wmi, u8 if_idx, u32 id, u32 freq,
2694 			       u32 wait, const u8 *data, u16 data_len,
2695 			       u32 no_cck);
2696 
2697 int ath6kl_wmi_send_probe_response_cmd(struct wmi *wmi, u8 if_idx, u32 freq,
2698 				       const u8 *dst, const u8 *data,
2699 				       u16 data_len);
2700 
2701 int ath6kl_wmi_probe_report_req_cmd(struct wmi *wmi, u8 if_idx, bool enable);
2702 
2703 int ath6kl_wmi_info_req_cmd(struct wmi *wmi, u8 if_idx, u32 info_req_flags);
2704 
2705 int ath6kl_wmi_cancel_remain_on_chnl_cmd(struct wmi *wmi, u8 if_idx);
2706 
2707 int ath6kl_wmi_set_appie_cmd(struct wmi *wmi, u8 if_idx, u8 mgmt_frm_type,
2708 			     const u8 *ie, u8 ie_len);
2709 
2710 int ath6kl_wmi_set_inact_period(struct wmi *wmi, u8 if_idx, int inact_timeout);
2711 
2712 void ath6kl_wmi_sscan_timer(struct timer_list *t);
2713 
2714 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source);
2715 
2716 struct ath6kl_vif *ath6kl_get_vif_by_index(struct ath6kl *ar, u8 if_idx);
2717 void *ath6kl_wmi_init(struct ath6kl *devt);
2718 void ath6kl_wmi_shutdown(struct wmi *wmi);
2719 void ath6kl_wmi_reset(struct wmi *wmi);
2720 
2721 #endif /* WMI_H */
2722