xref: /openbmc/linux/drivers/net/wireless/ath/ath6kl/wmi.h (revision 7c3075e9)
1 /*
2  * Copyright (c) 2010-2011 Atheros Communications Inc.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 /*
18  * This file contains the definitions of the WMI protocol specified in the
19  * Wireless Module Interface (WMI).  It includes definitions of all the
20  * commands and events. Commands are messages from the host to the WM.
21  * Events and Replies are messages from the WM to the host.
22  */
23 
24 #ifndef WMI_H
25 #define WMI_H
26 
27 #include <linux/ieee80211.h>
28 
29 #include "htc.h"
30 
31 #define HTC_PROTOCOL_VERSION		0x0002
32 #define WMI_PROTOCOL_VERSION		0x0002
33 #define WMI_CONTROL_MSG_MAX_LEN		256
34 #define is_ethertype(type_or_len)	((type_or_len) >= 0x0600)
35 
36 #define IP_ETHERTYPE		0x0800
37 
38 #define WMI_IMPLICIT_PSTREAM	0xFF
39 #define WMI_MAX_THINSTREAM	15
40 
41 #define SSID_IE_LEN_INDEX	13
42 
43 /* Host side link management data structures */
44 #define SIG_QUALITY_THRESH_LVLS		6
45 #define SIG_QUALITY_UPPER_THRESH_LVLS	SIG_QUALITY_THRESH_LVLS
46 #define SIG_QUALITY_LOWER_THRESH_LVLS	SIG_QUALITY_THRESH_LVLS
47 
48 #define A_BAND_24GHZ           0
49 #define A_BAND_5GHZ            1
50 #define A_NUM_BANDS            2
51 
52 /* in ms */
53 #define WMI_IMPLICIT_PSTREAM_INACTIVITY_INT 5000
54 
55 /*
56  * There are no signed versions of __le16 and __le32, so for a temporary
57  * solution come up with our own version. The idea is from fs/ntfs/types.h.
58  *
59  * Use a_ prefix so that it doesn't conflict if we get proper support to
60  * linux/types.h.
61  */
62 typedef __s16 __bitwise a_sle16;
63 typedef __s32 __bitwise a_sle32;
64 
65 static inline a_sle32 a_cpu_to_sle32(s32 val)
66 {
67 	return (__force a_sle32) cpu_to_le32(val);
68 }
69 
70 static inline s32 a_sle32_to_cpu(a_sle32 val)
71 {
72 	return le32_to_cpu((__force __le32) val);
73 }
74 
75 static inline a_sle16 a_cpu_to_sle16(s16 val)
76 {
77 	return (__force a_sle16) cpu_to_le16(val);
78 }
79 
80 static inline s16 a_sle16_to_cpu(a_sle16 val)
81 {
82 	return le16_to_cpu((__force __le16) val);
83 }
84 
85 struct sq_threshold_params {
86 	s16 upper_threshold[SIG_QUALITY_UPPER_THRESH_LVLS];
87 	s16 lower_threshold[SIG_QUALITY_LOWER_THRESH_LVLS];
88 	u32 upper_threshold_valid_count;
89 	u32 lower_threshold_valid_count;
90 	u32 polling_interval;
91 	u8 weight;
92 	u8 last_rssi;
93 	u8 last_rssi_poll_event;
94 };
95 
96 struct wmi_stats {
97 	u32 cmd_len_err;
98 	u32 cmd_id_err;
99 };
100 
101 struct wmi_data_sync_bufs {
102 	u8 traffic_class;
103 	struct sk_buff *skb;
104 };
105 
106 /* WMM stream classes */
107 #define WMM_NUM_AC  4
108 #define WMM_AC_BE   0		/* best effort */
109 #define WMM_AC_BK   1		/* background */
110 #define WMM_AC_VI   2		/* video */
111 #define WMM_AC_VO   3		/* voice */
112 
113 struct wmi {
114 	bool ready;
115 	u16 stream_exist_for_ac[WMM_NUM_AC];
116 	u8 fat_pipe_exist;
117 	struct ath6kl *parent_dev;
118 	struct wmi_stats stat;
119 	u8 bssid[ETH_ALEN];
120 	u8 pwr_mode;
121 	u8 phy_mode;
122 	u8 keep_alive_intvl;
123 	spinlock_t lock;
124 	enum htc_endpoint_id ep_id;
125 	struct sq_threshold_params
126 	    sq_threshld[SIGNAL_QUALITY_METRICS_NUM_MAX];
127 	enum crypto_type pair_crypto_type;
128 	enum crypto_type grp_crypto_type;
129 	bool is_wmm_enabled;
130 	u8 ht_allowed[A_NUM_BANDS];
131 	u8 traffic_class;
132 	bool is_probe_ssid;
133 };
134 
135 struct host_app_area {
136 	u32 wmi_protocol_ver;
137 };
138 
139 enum wmi_msg_type {
140 	DATA_MSGTYPE = 0x0,
141 	CNTL_MSGTYPE,
142 	SYNC_MSGTYPE,
143 	OPT_MSGTYPE,
144 };
145 
146 /*
147  * Macros for operating on WMI_DATA_HDR (info) field
148  */
149 
150 #define WMI_DATA_HDR_MSG_TYPE_MASK  0x03
151 #define WMI_DATA_HDR_MSG_TYPE_SHIFT 0
152 #define WMI_DATA_HDR_UP_MASK        0x07
153 #define WMI_DATA_HDR_UP_SHIFT       2
154 
155 /* In AP mode, the same bit (b5) is used to indicate Power save state in
156  * the Rx dir and More data bit state in the tx direction.
157  */
158 #define WMI_DATA_HDR_PS_MASK        0x1
159 #define WMI_DATA_HDR_PS_SHIFT       5
160 
161 #define WMI_DATA_HDR_MORE_MASK      0x1
162 #define WMI_DATA_HDR_MORE_SHIFT     5
163 
164 enum wmi_data_hdr_data_type {
165 	WMI_DATA_HDR_DATA_TYPE_802_3 = 0,
166 	WMI_DATA_HDR_DATA_TYPE_802_11,
167 
168 	/* used to be used for the PAL */
169 	WMI_DATA_HDR_DATA_TYPE_ACL,
170 };
171 
172 #define WMI_DATA_HDR_DATA_TYPE_MASK     0x3
173 #define WMI_DATA_HDR_DATA_TYPE_SHIFT    6
174 
175 /* Macros for operating on WMI_DATA_HDR (info2) field */
176 #define WMI_DATA_HDR_SEQNO_MASK     0xFFF
177 #define WMI_DATA_HDR_SEQNO_SHIFT    0
178 
179 #define WMI_DATA_HDR_AMSDU_MASK     0x1
180 #define WMI_DATA_HDR_AMSDU_SHIFT    12
181 
182 #define WMI_DATA_HDR_META_MASK      0x7
183 #define WMI_DATA_HDR_META_SHIFT     13
184 
185 struct wmi_data_hdr {
186 	s8 rssi;
187 
188 	/*
189 	 * usage of 'info' field(8-bit):
190 	 *
191 	 *  b1:b0       - WMI_MSG_TYPE
192 	 *  b4:b3:b2    - UP(tid)
193 	 *  b5          - Used in AP mode.
194 	 *  More-data in tx dir, PS in rx.
195 	 *  b7:b6       - Dot3 header(0),
196 	 *                Dot11 Header(1),
197 	 *                ACL data(2)
198 	 */
199 	u8 info;
200 
201 	/*
202 	 * usage of 'info2' field(16-bit):
203 	 *
204 	 * b11:b0       - seq_no
205 	 * b12          - A-MSDU?
206 	 * b15:b13      - META_DATA_VERSION 0 - 7
207 	 */
208 	__le16 info2;
209 	__le16 info3;
210 } __packed;
211 
212 static inline u8 wmi_data_hdr_get_up(struct wmi_data_hdr *dhdr)
213 {
214 	return (dhdr->info >> WMI_DATA_HDR_UP_SHIFT) & WMI_DATA_HDR_UP_MASK;
215 }
216 
217 static inline void wmi_data_hdr_set_up(struct wmi_data_hdr *dhdr,
218 				       u8 usr_pri)
219 {
220 	dhdr->info &= ~(WMI_DATA_HDR_UP_MASK << WMI_DATA_HDR_UP_SHIFT);
221 	dhdr->info |= usr_pri << WMI_DATA_HDR_UP_SHIFT;
222 }
223 
224 static inline u8 wmi_data_hdr_get_dot11(struct wmi_data_hdr *dhdr)
225 {
226 	u8 data_type;
227 
228 	data_type = (dhdr->info >> WMI_DATA_HDR_DATA_TYPE_SHIFT) &
229 				   WMI_DATA_HDR_DATA_TYPE_MASK;
230 	return (data_type == WMI_DATA_HDR_DATA_TYPE_802_11);
231 }
232 
233 static inline u16 wmi_data_hdr_get_seqno(struct wmi_data_hdr *dhdr)
234 {
235 	return (le16_to_cpu(dhdr->info2) >> WMI_DATA_HDR_SEQNO_SHIFT) &
236 				WMI_DATA_HDR_SEQNO_MASK;
237 }
238 
239 static inline u8 wmi_data_hdr_is_amsdu(struct wmi_data_hdr *dhdr)
240 {
241 	return (le16_to_cpu(dhdr->info2) >> WMI_DATA_HDR_AMSDU_SHIFT) &
242 			       WMI_DATA_HDR_AMSDU_MASK;
243 }
244 
245 static inline u8 wmi_data_hdr_get_meta(struct wmi_data_hdr *dhdr)
246 {
247 	return (le16_to_cpu(dhdr->info2) >> WMI_DATA_HDR_META_SHIFT) &
248 			       WMI_DATA_HDR_META_MASK;
249 }
250 
251 /* Tx meta version definitions */
252 #define WMI_MAX_TX_META_SZ	12
253 #define WMI_META_VERSION_1	0x01
254 #define WMI_META_VERSION_2	0x02
255 
256 struct wmi_tx_meta_v1 {
257 	/* packet ID to identify the tx request */
258 	u8 pkt_id;
259 
260 	/* rate policy to be used for the tx of this frame */
261 	u8 rate_plcy_id;
262 } __packed;
263 
264 struct wmi_tx_meta_v2 {
265 	/*
266 	 * Offset from start of the WMI header for csum calculation to
267 	 * begin.
268 	 */
269 	u8 csum_start;
270 
271 	/* offset from start of WMI header where final csum goes */
272 	u8 csum_dest;
273 
274 	/* no of bytes over which csum is calculated */
275 	u8 csum_flags;
276 } __packed;
277 
278 struct wmi_rx_meta_v1 {
279 	u8 status;
280 
281 	/* rate index mapped to rate at which this packet was received. */
282 	u8 rix;
283 
284 	/* rssi of packet */
285 	u8 rssi;
286 
287 	/* rf channel during packet reception */
288 	u8 channel;
289 
290 	__le16 flags;
291 } __packed;
292 
293 struct wmi_rx_meta_v2 {
294 	__le16 csum;
295 
296 	/* bit 0 set -partial csum valid bit 1 set -test mode */
297 	u8 csum_flags;
298 } __packed;
299 
300 /* Control Path */
301 struct wmi_cmd_hdr {
302 	__le16 cmd_id;
303 
304 	/* info1 - 16 bits
305 	 * b03:b00 - id
306 	 * b15:b04 - unused */
307 	__le16 info1;
308 
309 	/* for alignment */
310 	__le16 reserved;
311 } __packed;
312 
313 /* List of WMI commands */
314 enum wmi_cmd_id {
315 	WMI_CONNECT_CMDID = 0x0001,
316 	WMI_RECONNECT_CMDID,
317 	WMI_DISCONNECT_CMDID,
318 	WMI_SYNCHRONIZE_CMDID,
319 	WMI_CREATE_PSTREAM_CMDID,
320 	WMI_DELETE_PSTREAM_CMDID,
321 	WMI_START_SCAN_CMDID,
322 	WMI_SET_SCAN_PARAMS_CMDID,
323 	WMI_SET_BSS_FILTER_CMDID,
324 	WMI_SET_PROBED_SSID_CMDID,	/* 10 */
325 	WMI_SET_LISTEN_INT_CMDID,
326 	WMI_SET_BMISS_TIME_CMDID,
327 	WMI_SET_DISC_TIMEOUT_CMDID,
328 	WMI_GET_CHANNEL_LIST_CMDID,
329 	WMI_SET_BEACON_INT_CMDID,
330 	WMI_GET_STATISTICS_CMDID,
331 	WMI_SET_CHANNEL_PARAMS_CMDID,
332 	WMI_SET_POWER_MODE_CMDID,
333 	WMI_SET_IBSS_PM_CAPS_CMDID,
334 	WMI_SET_POWER_PARAMS_CMDID,	/* 20 */
335 	WMI_SET_POWERSAVE_TIMERS_POLICY_CMDID,
336 	WMI_ADD_CIPHER_KEY_CMDID,
337 	WMI_DELETE_CIPHER_KEY_CMDID,
338 	WMI_ADD_KRK_CMDID,
339 	WMI_DELETE_KRK_CMDID,
340 	WMI_SET_PMKID_CMDID,
341 	WMI_SET_TX_PWR_CMDID,
342 	WMI_GET_TX_PWR_CMDID,
343 	WMI_SET_ASSOC_INFO_CMDID,
344 	WMI_ADD_BAD_AP_CMDID,		/* 30 */
345 	WMI_DELETE_BAD_AP_CMDID,
346 	WMI_SET_TKIP_COUNTERMEASURES_CMDID,
347 	WMI_RSSI_THRESHOLD_PARAMS_CMDID,
348 	WMI_TARGET_ERROR_REPORT_BITMASK_CMDID,
349 	WMI_SET_ACCESS_PARAMS_CMDID,
350 	WMI_SET_RETRY_LIMITS_CMDID,
351 	WMI_SET_OPT_MODE_CMDID,
352 	WMI_OPT_TX_FRAME_CMDID,
353 	WMI_SET_VOICE_PKT_SIZE_CMDID,
354 	WMI_SET_MAX_SP_LEN_CMDID,	/* 40 */
355 	WMI_SET_ROAM_CTRL_CMDID,
356 	WMI_GET_ROAM_TBL_CMDID,
357 	WMI_GET_ROAM_DATA_CMDID,
358 	WMI_ENABLE_RM_CMDID,
359 	WMI_SET_MAX_OFFHOME_DURATION_CMDID,
360 	WMI_EXTENSION_CMDID,	/* Non-wireless extensions */
361 	WMI_SNR_THRESHOLD_PARAMS_CMDID,
362 	WMI_LQ_THRESHOLD_PARAMS_CMDID,
363 	WMI_SET_LPREAMBLE_CMDID,
364 	WMI_SET_RTS_CMDID,		/* 50 */
365 	WMI_CLR_RSSI_SNR_CMDID,
366 	WMI_SET_FIXRATES_CMDID,
367 	WMI_GET_FIXRATES_CMDID,
368 	WMI_SET_AUTH_MODE_CMDID,
369 	WMI_SET_REASSOC_MODE_CMDID,
370 	WMI_SET_WMM_CMDID,
371 	WMI_SET_WMM_TXOP_CMDID,
372 	WMI_TEST_CMDID,
373 
374 	/* COEX AR6002 only */
375 	WMI_SET_BT_STATUS_CMDID,
376 	WMI_SET_BT_PARAMS_CMDID,	/* 60 */
377 
378 	WMI_SET_KEEPALIVE_CMDID,
379 	WMI_GET_KEEPALIVE_CMDID,
380 	WMI_SET_APPIE_CMDID,
381 	WMI_GET_APPIE_CMDID,
382 	WMI_SET_WSC_STATUS_CMDID,
383 
384 	/* Wake on Wireless */
385 	WMI_SET_HOST_SLEEP_MODE_CMDID,
386 	WMI_SET_WOW_MODE_CMDID,
387 	WMI_GET_WOW_LIST_CMDID,
388 	WMI_ADD_WOW_PATTERN_CMDID,
389 	WMI_DEL_WOW_PATTERN_CMDID,	/* 70 */
390 
391 	WMI_SET_FRAMERATES_CMDID,
392 	WMI_SET_AP_PS_CMDID,
393 	WMI_SET_QOS_SUPP_CMDID,
394 
395 	/* WMI_THIN_RESERVED_... mark the start and end
396 	 * values for WMI_THIN_RESERVED command IDs. These
397 	 * command IDs can be found in wmi_thin.h */
398 	WMI_THIN_RESERVED_START = 0x8000,
399 	WMI_THIN_RESERVED_END = 0x8fff,
400 
401 	/* Developer commands starts at 0xF000 */
402 	WMI_SET_BITRATE_CMDID = 0xF000,
403 	WMI_GET_BITRATE_CMDID,
404 	WMI_SET_WHALPARAM_CMDID,
405 	WMI_SET_MAC_ADDRESS_CMDID,
406 	WMI_SET_AKMP_PARAMS_CMDID,
407 	WMI_SET_PMKID_LIST_CMDID,
408 	WMI_GET_PMKID_LIST_CMDID,
409 	WMI_ABORT_SCAN_CMDID,
410 	WMI_SET_TARGET_EVENT_REPORT_CMDID,
411 
412 	/* Unused */
413 	WMI_UNUSED1,
414 	WMI_UNUSED2,
415 
416 	/* AP mode commands */
417 	WMI_AP_HIDDEN_SSID_CMDID,
418 	WMI_AP_SET_NUM_STA_CMDID,
419 	WMI_AP_ACL_POLICY_CMDID,
420 	WMI_AP_ACL_MAC_LIST_CMDID,
421 	WMI_AP_CONFIG_COMMIT_CMDID,
422 	WMI_AP_SET_MLME_CMDID,
423 	WMI_AP_SET_PVB_CMDID,
424 	WMI_AP_CONN_INACT_CMDID,
425 	WMI_AP_PROT_SCAN_TIME_CMDID,
426 	WMI_AP_SET_COUNTRY_CMDID,
427 	WMI_AP_SET_DTIM_CMDID,
428 	WMI_AP_MODE_STAT_CMDID,
429 
430 	WMI_SET_IP_CMDID,
431 	WMI_SET_PARAMS_CMDID,
432 	WMI_SET_MCAST_FILTER_CMDID,
433 	WMI_DEL_MCAST_FILTER_CMDID,
434 
435 	WMI_ALLOW_AGGR_CMDID,
436 	WMI_ADDBA_REQ_CMDID,
437 	WMI_DELBA_REQ_CMDID,
438 	WMI_SET_HT_CAP_CMDID,
439 	WMI_SET_HT_OP_CMDID,
440 	WMI_SET_TX_SELECT_RATES_CMDID,
441 	WMI_SET_TX_SGI_PARAM_CMDID,
442 	WMI_SET_RATE_POLICY_CMDID,
443 
444 	WMI_HCI_CMD_CMDID,
445 	WMI_RX_FRAME_FORMAT_CMDID,
446 	WMI_SET_THIN_MODE_CMDID,
447 	WMI_SET_BT_WLAN_CONN_PRECEDENCE_CMDID,
448 
449 	WMI_AP_SET_11BG_RATESET_CMDID,
450 	WMI_SET_PMK_CMDID,
451 	WMI_MCAST_FILTER_CMDID,
452 
453 	/* COEX CMDID AR6003 */
454 	WMI_SET_BTCOEX_FE_ANT_CMDID,
455 	WMI_SET_BTCOEX_COLOCATED_BT_DEV_CMDID,
456 	WMI_SET_BTCOEX_SCO_CONFIG_CMDID,
457 	WMI_SET_BTCOEX_A2DP_CONFIG_CMDID,
458 	WMI_SET_BTCOEX_ACLCOEX_CONFIG_CMDID,
459 	WMI_SET_BTCOEX_BTINQUIRY_PAGE_CONFIG_CMDID,
460 	WMI_SET_BTCOEX_DEBUG_CMDID,
461 	WMI_SET_BTCOEX_BT_OPERATING_STATUS_CMDID,
462 	WMI_GET_BTCOEX_STATS_CMDID,
463 	WMI_GET_BTCOEX_CONFIG_CMDID,
464 
465 	WMI_SET_DFS_ENABLE_CMDID,	/* F034 */
466 	WMI_SET_DFS_MINRSSITHRESH_CMDID,
467 	WMI_SET_DFS_MAXPULSEDUR_CMDID,
468 	WMI_DFS_RADAR_DETECTED_CMDID,
469 
470 	/* P2P commands */
471 	WMI_P2P_SET_CONFIG_CMDID,	/* F038 */
472 	WMI_WPS_SET_CONFIG_CMDID,
473 	WMI_SET_REQ_DEV_ATTR_CMDID,
474 	WMI_P2P_FIND_CMDID,
475 	WMI_P2P_STOP_FIND_CMDID,
476 	WMI_P2P_GO_NEG_START_CMDID,
477 	WMI_P2P_LISTEN_CMDID,
478 
479 	WMI_CONFIG_TX_MAC_RULES_CMDID,	/* F040 */
480 	WMI_SET_PROMISCUOUS_MODE_CMDID,
481 	WMI_RX_FRAME_FILTER_CMDID,
482 	WMI_SET_CHANNEL_CMDID,
483 
484 	/* WAC commands */
485 	WMI_ENABLE_WAC_CMDID,
486 	WMI_WAC_SCAN_REPLY_CMDID,
487 	WMI_WAC_CTRL_REQ_CMDID,
488 	WMI_SET_DIV_PARAMS_CMDID,
489 
490 	WMI_GET_PMK_CMDID,
491 	WMI_SET_PASSPHRASE_CMDID,
492 	WMI_SEND_ASSOC_RES_CMDID,
493 	WMI_SET_ASSOC_REQ_RELAY_CMDID,
494 	WMI_GET_RFKILL_MODE_CMDID,
495 
496 	/* ACS command, consists of sub-commands */
497 	WMI_ACS_CTRL_CMDID,
498 
499 	/* Ultra low power store / recall commands */
500 	WMI_STORERECALL_CONFIGURE_CMDID,
501 	WMI_STORERECALL_RECALL_CMDID,
502 	WMI_STORERECALL_HOST_READY_CMDID,
503 	WMI_FORCE_TARGET_ASSERT_CMDID,
504 	WMI_SET_EXCESS_TX_RETRY_THRES_CMDID,
505 };
506 
507 /* WMI_CONNECT_CMDID  */
508 enum network_type {
509 	INFRA_NETWORK = 0x01,
510 	ADHOC_NETWORK = 0x02,
511 	ADHOC_CREATOR = 0x04,
512 	AP_NETWORK = 0x10,
513 };
514 
515 enum dot11_auth_mode {
516 	OPEN_AUTH = 0x01,
517 	SHARED_AUTH = 0x02,
518 
519 	/* different from IEEE_AUTH_MODE definitions */
520 	LEAP_AUTH = 0x04,
521 };
522 
523 enum {
524 	AUTH_IDLE,
525 	AUTH_OPEN_IN_PROGRESS,
526 };
527 
528 enum auth_mode {
529 	NONE_AUTH = 0x01,
530 	WPA_AUTH = 0x02,
531 	WPA2_AUTH = 0x04,
532 	WPA_PSK_AUTH = 0x08,
533 	WPA2_PSK_AUTH = 0x10,
534 	WPA_AUTH_CCKM = 0x20,
535 	WPA2_AUTH_CCKM = 0x40,
536 };
537 
538 #define WMI_MIN_CRYPTO_TYPE NONE_CRYPT
539 #define WMI_MAX_CRYPTO_TYPE (AES_CRYPT + 1)
540 
541 #define WMI_MIN_KEY_INDEX   0
542 #define WMI_MAX_KEY_INDEX   3
543 
544 #define WMI_MAX_KEY_LEN     32
545 
546 /*
547  * NB: these values are ordered carefully; there are lots of
548  * of implications in any reordering.  In particular beware
549  * that 4 is not used to avoid conflicting with IEEE80211_F_PRIVACY.
550  */
551 #define ATH6KL_CIPHER_WEP            0
552 #define ATH6KL_CIPHER_TKIP           1
553 #define ATH6KL_CIPHER_AES_OCB        2
554 #define ATH6KL_CIPHER_AES_CCM        3
555 #define ATH6KL_CIPHER_CKIP           5
556 #define ATH6KL_CIPHER_CCKM_KRK       6
557 #define ATH6KL_CIPHER_NONE           7 /* pseudo value */
558 
559 /*
560  * 802.11 rate set.
561  */
562 #define ATH6KL_RATE_MAXSIZE  15	/* max rates we'll handle */
563 
564 #define ATH_OUI_TYPE            0x01
565 #define WPA_OUI_TYPE            0x01
566 #define WMM_PARAM_OUI_SUBTYPE   0x01
567 #define WMM_OUI_TYPE            0x02
568 #define WSC_OUT_TYPE            0x04
569 
570 enum wmi_connect_ctrl_flags_bits {
571 	CONNECT_ASSOC_POLICY_USER = 0x0001,
572 	CONNECT_SEND_REASSOC = 0x0002,
573 	CONNECT_IGNORE_WPAx_GROUP_CIPHER = 0x0004,
574 	CONNECT_PROFILE_MATCH_DONE = 0x0008,
575 	CONNECT_IGNORE_AAC_BEACON = 0x0010,
576 	CONNECT_CSA_FOLLOW_BSS = 0x0020,
577 	CONNECT_DO_WPA_OFFLOAD = 0x0040,
578 	CONNECT_DO_NOT_DEAUTH = 0x0080,
579 };
580 
581 struct wmi_connect_cmd {
582 	u8 nw_type;
583 	u8 dot11_auth_mode;
584 	u8 auth_mode;
585 	u8 prwise_crypto_type;
586 	u8 prwise_crypto_len;
587 	u8 grp_crypto_type;
588 	u8 grp_crypto_len;
589 	u8 ssid_len;
590 	u8 ssid[IEEE80211_MAX_SSID_LEN];
591 	__le16 ch;
592 	u8 bssid[ETH_ALEN];
593 	__le32 ctrl_flags;
594 } __packed;
595 
596 /* WMI_RECONNECT_CMDID */
597 struct wmi_reconnect_cmd {
598 	/* channel hint */
599 	__le16 channel;
600 
601 	/* mandatory if set */
602 	u8 bssid[ETH_ALEN];
603 } __packed;
604 
605 /* WMI_ADD_CIPHER_KEY_CMDID */
606 enum key_usage {
607 	PAIRWISE_USAGE = 0x00,
608 	GROUP_USAGE = 0x01,
609 
610 	/* default Tx Key - static WEP only */
611 	TX_USAGE = 0x02,
612 };
613 
614 /*
615  * Bit Flag
616  * Bit 0 - Initialise TSC - default is Initialize
617  */
618 #define KEY_OP_INIT_TSC     0x01
619 #define KEY_OP_INIT_RSC     0x02
620 
621 /* default initialise the TSC & RSC */
622 #define KEY_OP_INIT_VAL     0x03
623 #define KEY_OP_VALID_MASK   0x03
624 
625 struct wmi_add_cipher_key_cmd {
626 	u8 key_index;
627 	u8 key_type;
628 
629 	/* enum key_usage */
630 	u8 key_usage;
631 
632 	u8 key_len;
633 
634 	/* key replay sequence counter */
635 	u8 key_rsc[8];
636 
637 	u8 key[WLAN_MAX_KEY_LEN];
638 
639 	/* additional key control info */
640 	u8 key_op_ctrl;
641 
642 	u8 key_mac_addr[ETH_ALEN];
643 } __packed;
644 
645 /* WMI_DELETE_CIPHER_KEY_CMDID */
646 struct wmi_delete_cipher_key_cmd {
647 	u8 key_index;
648 } __packed;
649 
650 #define WMI_KRK_LEN     16
651 
652 /* WMI_ADD_KRK_CMDID */
653 struct wmi_add_krk_cmd {
654 	u8 krk[WMI_KRK_LEN];
655 } __packed;
656 
657 /* WMI_SETPMKID_CMDID */
658 
659 #define WMI_PMKID_LEN 16
660 
661 enum pmkid_enable_flg {
662 	PMKID_DISABLE = 0,
663 	PMKID_ENABLE = 1,
664 };
665 
666 struct wmi_setpmkid_cmd {
667 	u8 bssid[ETH_ALEN];
668 
669 	/* enum pmkid_enable_flg */
670 	u8 enable;
671 
672 	u8 pmkid[WMI_PMKID_LEN];
673 } __packed;
674 
675 /* WMI_START_SCAN_CMD */
676 enum wmi_scan_type {
677 	WMI_LONG_SCAN = 0,
678 	WMI_SHORT_SCAN = 1,
679 };
680 
681 struct wmi_start_scan_cmd {
682 	__le32 force_fg_scan;
683 
684 	/* for legacy cisco AP compatibility */
685 	__le32 is_legacy;
686 
687 	/* max duration in the home channel(msec) */
688 	__le32 home_dwell_time;
689 
690 	/* time interval between scans (msec) */
691 	__le32 force_scan_intvl;
692 
693 	/* enum wmi_scan_type */
694 	u8 scan_type;
695 
696 	/* how many channels follow */
697 	u8 num_ch;
698 
699 	/* channels in Mhz */
700 	__le16 ch_list[1];
701 } __packed;
702 
703 /* WMI_SET_SCAN_PARAMS_CMDID */
704 #define WMI_SHORTSCANRATIO_DEFAULT      3
705 
706 /*
707  *  Warning: scan control flag value of 0xFF is used to disable
708  *  all flags in WMI_SCAN_PARAMS_CMD. Do not add any more
709  *  flags here
710  */
711 enum wmi_scan_ctrl_flags_bits {
712 
713 	/* set if can scan in the connect cmd */
714 	CONNECT_SCAN_CTRL_FLAGS = 0x01,
715 
716 	/* set if scan for the SSID it is already connected to */
717 	SCAN_CONNECTED_CTRL_FLAGS = 0x02,
718 
719 	/* set if enable active scan */
720 	ACTIVE_SCAN_CTRL_FLAGS = 0x04,
721 
722 	/* set if enable roam scan when bmiss and lowrssi */
723 	ROAM_SCAN_CTRL_FLAGS = 0x08,
724 
725 	/* set if follows customer BSSINFO reporting rule */
726 	REPORT_BSSINFO_CTRL_FLAGS = 0x10,
727 
728 	/* if disabled, target doesn't scan after a disconnect event  */
729 	ENABLE_AUTO_CTRL_FLAGS = 0x20,
730 
731 	/*
732 	 * Scan complete event with canceled status will be generated when
733 	 * a scan is prempted before it gets completed.
734 	 */
735 	ENABLE_SCAN_ABORT_EVENT = 0x40
736 };
737 
738 #define DEFAULT_SCAN_CTRL_FLAGS			\
739 	(CONNECT_SCAN_CTRL_FLAGS |		\
740 	 SCAN_CONNECTED_CTRL_FLAGS |		\
741 	 ACTIVE_SCAN_CTRL_FLAGS |		\
742 	 ROAM_SCAN_CTRL_FLAGS |			\
743 	 ENABLE_AUTO_CTRL_FLAGS)
744 
745 struct wmi_scan_params_cmd {
746 	  /* sec */
747 	__le16 fg_start_period;
748 
749 	/* sec */
750 	__le16 fg_end_period;
751 
752 	/* sec */
753 	__le16 bg_period;
754 
755 	/* msec */
756 	__le16 maxact_chdwell_time;
757 
758 	/* msec */
759 	__le16 pas_chdwell_time;
760 
761 	  /* how many shorts scan for one long */
762 	u8 short_scan_ratio;
763 
764 	u8 scan_ctrl_flags;
765 
766 	/* msec */
767 	__le16 minact_chdwell_time;
768 
769 	/* max active scans per ssid */
770 	__le16 maxact_scan_per_ssid;
771 
772 	/* msecs */
773 	__le32 max_dfsch_act_time;
774 } __packed;
775 
776 /* WMI_SET_BSS_FILTER_CMDID */
777 enum wmi_bss_filter {
778 	/* no beacons forwarded */
779 	NONE_BSS_FILTER = 0x0,
780 
781 	/* all beacons forwarded */
782 	ALL_BSS_FILTER,
783 
784 	/* only beacons matching profile */
785 	PROFILE_FILTER,
786 
787 	/* all but beacons matching profile */
788 	ALL_BUT_PROFILE_FILTER,
789 
790 	/* only beacons matching current BSS */
791 	CURRENT_BSS_FILTER,
792 
793 	/* all but beacons matching BSS */
794 	ALL_BUT_BSS_FILTER,
795 
796 	/* beacons matching probed ssid */
797 	PROBED_SSID_FILTER,
798 
799 	/* marker only */
800 	LAST_BSS_FILTER,
801 };
802 
803 struct wmi_bss_filter_cmd {
804 	/* see, enum wmi_bss_filter */
805 	u8 bss_filter;
806 
807 	/* for alignment */
808 	u8 reserved1;
809 
810 	/* for alignment */
811 	__le16 reserved2;
812 
813 	__le32 ie_mask;
814 } __packed;
815 
816 /* WMI_SET_PROBED_SSID_CMDID */
817 #define MAX_PROBED_SSID_INDEX   9
818 
819 enum wmi_ssid_flag {
820 	/* disables entry */
821 	DISABLE_SSID_FLAG = 0,
822 
823 	/* probes specified ssid */
824 	SPECIFIC_SSID_FLAG = 0x01,
825 
826 	/* probes for any ssid */
827 	ANY_SSID_FLAG = 0x02,
828 };
829 
830 struct wmi_probed_ssid_cmd {
831 	/* 0 to MAX_PROBED_SSID_INDEX */
832 	u8 entry_index;
833 
834 	/* see, enum wmi_ssid_flg */
835 	u8 flag;
836 
837 	u8 ssid_len;
838 	u8 ssid[IEEE80211_MAX_SSID_LEN];
839 } __packed;
840 
841 /*
842  * WMI_SET_LISTEN_INT_CMDID
843  * The Listen interval is between 15 and 3000 TUs
844  */
845 struct wmi_listen_int_cmd {
846 	__le16 listen_intvl;
847 	__le16 num_beacons;
848 } __packed;
849 
850 /* WMI_SET_POWER_MODE_CMDID */
851 enum wmi_power_mode {
852 	REC_POWER = 0x01,
853 	MAX_PERF_POWER,
854 };
855 
856 struct wmi_power_mode_cmd {
857 	/* see, enum wmi_power_mode */
858 	u8 pwr_mode;
859 } __packed;
860 
861 /*
862  * Policy to determnine whether power save failure event should be sent to
863  * host during scanning
864  */
865 enum power_save_fail_event_policy {
866 	SEND_POWER_SAVE_FAIL_EVENT_ALWAYS = 1,
867 	IGNORE_POWER_SAVE_FAIL_EVENT_DURING_SCAN = 2,
868 };
869 
870 struct wmi_power_params_cmd {
871 	/* msec */
872 	__le16 idle_period;
873 
874 	__le16 pspoll_number;
875 	__le16 dtim_policy;
876 	__le16 tx_wakeup_policy;
877 	__le16 num_tx_to_wakeup;
878 	__le16 ps_fail_event_policy;
879 } __packed;
880 
881 /* WMI_SET_DISC_TIMEOUT_CMDID */
882 struct wmi_disc_timeout_cmd {
883 	/* seconds */
884 	u8 discon_timeout;
885 } __packed;
886 
887 enum dir_type {
888 	UPLINK_TRAFFIC = 0,
889 	DNLINK_TRAFFIC = 1,
890 	BIDIR_TRAFFIC = 2,
891 };
892 
893 enum voiceps_cap_type {
894 	DISABLE_FOR_THIS_AC = 0,
895 	ENABLE_FOR_THIS_AC = 1,
896 	ENABLE_FOR_ALL_AC = 2,
897 };
898 
899 enum traffic_type {
900 	TRAFFIC_TYPE_APERIODIC = 0,
901 	TRAFFIC_TYPE_PERIODIC = 1,
902 };
903 
904 /* WMI_SYNCHRONIZE_CMDID */
905 struct wmi_sync_cmd {
906 	u8 data_sync_map;
907 } __packed;
908 
909 /* WMI_CREATE_PSTREAM_CMDID */
910 struct wmi_create_pstream_cmd {
911 	/* msec */
912 	__le32 min_service_int;
913 
914 	/* msec */
915 	__le32 max_service_int;
916 
917 	/* msec */
918 	__le32 inactivity_int;
919 
920 	/* msec */
921 	__le32 suspension_int;
922 
923 	__le32 service_start_time;
924 
925 	/* in bps */
926 	__le32 min_data_rate;
927 
928 	/* in bps */
929 	__le32 mean_data_rate;
930 
931 	/* in bps */
932 	__le32 peak_data_rate;
933 
934 	__le32 max_burst_size;
935 	__le32 delay_bound;
936 
937 	/* in bps */
938 	__le32 min_phy_rate;
939 
940 	__le32 sba;
941 	__le32 medium_time;
942 
943 	/* in octects */
944 	__le16 nominal_msdu;
945 
946 	/* in octects */
947 	__le16 max_msdu;
948 
949 	u8 traffic_class;
950 
951 	/* see, enum dir_type */
952 	u8 traffic_direc;
953 
954 	u8 rx_queue_num;
955 
956 	/* see, enum traffic_type */
957 	u8 traffic_type;
958 
959 	/* see, enum voiceps_cap_type */
960 	u8 voice_psc_cap;
961 	u8 tsid;
962 
963 	/* 802.1D user priority */
964 	u8 user_pri;
965 
966 	/* nominal phy rate */
967 	u8 nominal_phy;
968 } __packed;
969 
970 /* WMI_DELETE_PSTREAM_CMDID */
971 struct wmi_delete_pstream_cmd {
972 	u8 tx_queue_num;
973 	u8 rx_queue_num;
974 	u8 traffic_direc;
975 	u8 traffic_class;
976 	u8 tsid;
977 } __packed;
978 
979 /* WMI_SET_CHANNEL_PARAMS_CMDID */
980 enum wmi_phy_mode {
981 	WMI_11A_MODE = 0x1,
982 	WMI_11G_MODE = 0x2,
983 	WMI_11AG_MODE = 0x3,
984 	WMI_11B_MODE = 0x4,
985 	WMI_11GONLY_MODE = 0x5,
986 };
987 
988 #define WMI_MAX_CHANNELS        32
989 
990 /*
991  *  WMI_RSSI_THRESHOLD_PARAMS_CMDID
992  *  Setting the polltime to 0 would disable polling. Threshold values are
993  *  in the ascending order, and should agree to:
994  *  (lowThreshold_lowerVal < lowThreshold_upperVal < highThreshold_lowerVal
995  *   < highThreshold_upperVal)
996  */
997 
998 struct wmi_rssi_threshold_params_cmd {
999 	/* polling time as a factor of LI */
1000 	__le32 poll_time;
1001 
1002 	/* lowest of upper */
1003 	a_sle16 thresh_above1_val;
1004 
1005 	a_sle16 thresh_above2_val;
1006 	a_sle16 thresh_above3_val;
1007 	a_sle16 thresh_above4_val;
1008 	a_sle16 thresh_above5_val;
1009 
1010 	/* highest of upper */
1011 	a_sle16 thresh_above6_val;
1012 
1013 	/* lowest of bellow */
1014 	a_sle16 thresh_below1_val;
1015 
1016 	a_sle16 thresh_below2_val;
1017 	a_sle16 thresh_below3_val;
1018 	a_sle16 thresh_below4_val;
1019 	a_sle16 thresh_below5_val;
1020 
1021 	/* highest of bellow */
1022 	a_sle16 thresh_below6_val;
1023 
1024 	/* "alpha" */
1025 	u8 weight;
1026 
1027 	u8 reserved[3];
1028 } __packed;
1029 
1030 /*
1031  *  WMI_SNR_THRESHOLD_PARAMS_CMDID
1032  *  Setting the polltime to 0 would disable polling.
1033  */
1034 
1035 struct wmi_snr_threshold_params_cmd {
1036 	/* polling time as a factor of LI */
1037 	__le32 poll_time;
1038 
1039 	/* "alpha" */
1040 	u8 weight;
1041 
1042 	/* lowest of uppper */
1043 	u8 thresh_above1_val;
1044 
1045 	u8 thresh_above2_val;
1046 	u8 thresh_above3_val;
1047 
1048 	/* highest of upper */
1049 	u8 thresh_above4_val;
1050 
1051 	/* lowest of bellow */
1052 	u8 thresh_below1_val;
1053 
1054 	u8 thresh_below2_val;
1055 	u8 thresh_below3_val;
1056 
1057 	/* highest of bellow */
1058 	u8 thresh_below4_val;
1059 
1060 	u8 reserved[3];
1061 } __packed;
1062 
1063 enum wmi_preamble_policy {
1064 	WMI_IGNORE_BARKER_IN_ERP = 0,
1065 	WMI_DONOT_IGNORE_BARKER_IN_ERP
1066 };
1067 
1068 struct wmi_set_lpreamble_cmd {
1069 	u8 status;
1070 	u8 preamble_policy;
1071 } __packed;
1072 
1073 struct wmi_set_rts_cmd {
1074 	__le16 threshold;
1075 } __packed;
1076 
1077 /* WMI_SET_TX_PWR_CMDID */
1078 struct wmi_set_tx_pwr_cmd {
1079 	/* in dbM units */
1080 	u8 dbM;
1081 } __packed;
1082 
1083 struct wmi_tx_pwr_reply {
1084 	/* in dbM units */
1085 	u8 dbM;
1086 } __packed;
1087 
1088 struct wmi_report_sleep_state_event {
1089 	__le32 sleep_state;
1090 };
1091 
1092 enum wmi_report_sleep_status {
1093 	WMI_REPORT_SLEEP_STATUS_IS_DEEP_SLEEP = 0,
1094 	WMI_REPORT_SLEEP_STATUS_IS_AWAKE
1095 };
1096 enum target_event_report_config {
1097 	/* default */
1098 	DISCONN_EVT_IN_RECONN = 0,
1099 
1100 	NO_DISCONN_EVT_IN_RECONN
1101 };
1102 
1103 /* Command Replies */
1104 
1105 /* WMI_GET_CHANNEL_LIST_CMDID reply */
1106 struct wmi_channel_list_reply {
1107 	u8 reserved;
1108 
1109 	/* number of channels in reply */
1110 	u8 num_ch;
1111 
1112 	/* channel in Mhz */
1113 	__le16 ch_list[1];
1114 } __packed;
1115 
1116 /* List of Events (target to host) */
1117 enum wmi_event_id {
1118 	WMI_READY_EVENTID = 0x1001,
1119 	WMI_CONNECT_EVENTID,
1120 	WMI_DISCONNECT_EVENTID,
1121 	WMI_BSSINFO_EVENTID,
1122 	WMI_CMDERROR_EVENTID,
1123 	WMI_REGDOMAIN_EVENTID,
1124 	WMI_PSTREAM_TIMEOUT_EVENTID,
1125 	WMI_NEIGHBOR_REPORT_EVENTID,
1126 	WMI_TKIP_MICERR_EVENTID,
1127 	WMI_SCAN_COMPLETE_EVENTID,	/* 0x100a */
1128 	WMI_REPORT_STATISTICS_EVENTID,
1129 	WMI_RSSI_THRESHOLD_EVENTID,
1130 	WMI_ERROR_REPORT_EVENTID,
1131 	WMI_OPT_RX_FRAME_EVENTID,
1132 	WMI_REPORT_ROAM_TBL_EVENTID,
1133 	WMI_EXTENSION_EVENTID,
1134 	WMI_CAC_EVENTID,
1135 	WMI_SNR_THRESHOLD_EVENTID,
1136 	WMI_LQ_THRESHOLD_EVENTID,
1137 	WMI_TX_RETRY_ERR_EVENTID,	/* 0x1014 */
1138 	WMI_REPORT_ROAM_DATA_EVENTID,
1139 	WMI_TEST_EVENTID,
1140 	WMI_APLIST_EVENTID,
1141 	WMI_GET_WOW_LIST_EVENTID,
1142 	WMI_GET_PMKID_LIST_EVENTID,
1143 	WMI_CHANNEL_CHANGE_EVENTID,
1144 	WMI_PEER_NODE_EVENTID,
1145 	WMI_PSPOLL_EVENTID,
1146 	WMI_DTIMEXPIRY_EVENTID,
1147 	WMI_WLAN_VERSION_EVENTID,
1148 	WMI_SET_PARAMS_REPLY_EVENTID,
1149 	WMI_ADDBA_REQ_EVENTID,		/*0x1020 */
1150 	WMI_ADDBA_RESP_EVENTID,
1151 	WMI_DELBA_REQ_EVENTID,
1152 	WMI_TX_COMPLETE_EVENTID,
1153 	WMI_HCI_EVENT_EVENTID,
1154 	WMI_ACL_DATA_EVENTID,
1155 	WMI_REPORT_SLEEP_STATE_EVENTID,
1156 	WMI_REPORT_BTCOEX_STATS_EVENTID,
1157 	WMI_REPORT_BTCOEX_CONFIG_EVENTID,
1158 	WMI_GET_PMK_EVENTID,
1159 
1160 	/* DFS Events */
1161 	WMI_DFS_HOST_ATTACH_EVENTID,
1162 	WMI_DFS_HOST_INIT_EVENTID,
1163 	WMI_DFS_RESET_DELAYLINES_EVENTID,
1164 	WMI_DFS_RESET_RADARQ_EVENTID,
1165 	WMI_DFS_RESET_AR_EVENTID,
1166 	WMI_DFS_RESET_ARQ_EVENTID,
1167 	WMI_DFS_SET_DUR_MULTIPLIER_EVENTID,
1168 	WMI_DFS_SET_BANGRADAR_EVENTID,
1169 	WMI_DFS_SET_DEBUGLEVEL_EVENTID,
1170 	WMI_DFS_PHYERR_EVENTID,
1171 
1172 	/* CCX Evants */
1173 	WMI_CCX_RM_STATUS_EVENTID,
1174 
1175 	/* P2P Events */
1176 	WMI_P2P_GO_NEG_RESULT_EVENTID,
1177 
1178 	WMI_WAC_SCAN_DONE_EVENTID,
1179 	WMI_WAC_REPORT_BSS_EVENTID,
1180 	WMI_WAC_START_WPS_EVENTID,
1181 	WMI_WAC_CTRL_REQ_REPLY_EVENTID,
1182 
1183 	/* RFKILL Events */
1184 	WMI_RFKILL_STATE_CHANGE_EVENTID,
1185 	WMI_RFKILL_GET_MODE_CMD_EVENTID,
1186 	WMI_THIN_RESERVED_START_EVENTID = 0x8000,
1187 
1188 	/*
1189 	 * Events in this range are reserved for thinmode
1190 	 * See wmi_thin.h for actual definitions
1191 	 */
1192 	WMI_THIN_RESERVED_END_EVENTID = 0x8fff,
1193 
1194 	WMI_SET_CHANNEL_EVENTID,
1195 	WMI_ASSOC_REQ_EVENTID,
1196 
1197 	/* Generic ACS event */
1198 	WMI_ACS_EVENTID,
1199 	WMI_REPORT_WMM_PARAMS_EVENTID
1200 };
1201 
1202 struct wmi_ready_event_2 {
1203 	__le32 sw_version;
1204 	__le32 abi_version;
1205 	u8 mac_addr[ETH_ALEN];
1206 	u8 phy_cap;
1207 } __packed;
1208 
1209 /* Connect Event */
1210 struct wmi_connect_event {
1211 	__le16 ch;
1212 	u8 bssid[ETH_ALEN];
1213 	__le16 listen_intvl;
1214 	__le16 beacon_intvl;
1215 	__le32 nw_type;
1216 	u8 beacon_ie_len;
1217 	u8 assoc_req_len;
1218 	u8 assoc_resp_len;
1219 	u8 assoc_info[1];
1220 } __packed;
1221 
1222 /* Disconnect Event */
1223 enum wmi_disconnect_reason {
1224 	NO_NETWORK_AVAIL = 0x01,
1225 
1226 	/* bmiss */
1227 	LOST_LINK = 0x02,
1228 
1229 	DISCONNECT_CMD = 0x03,
1230 	BSS_DISCONNECTED = 0x04,
1231 	AUTH_FAILED = 0x05,
1232 	ASSOC_FAILED = 0x06,
1233 	NO_RESOURCES_AVAIL = 0x07,
1234 	CSERV_DISCONNECT = 0x08,
1235 	INVALID_PROFILE = 0x0a,
1236 	DOT11H_CHANNEL_SWITCH = 0x0b,
1237 	PROFILE_MISMATCH = 0x0c,
1238 	CONNECTION_EVICTED = 0x0d,
1239 	IBSS_MERGE = 0xe,
1240 };
1241 
1242 struct wmi_disconnect_event {
1243 	/* reason code, see 802.11 spec. */
1244 	__le16 proto_reason_status;
1245 
1246 	/* set if known */
1247 	u8 bssid[ETH_ALEN];
1248 
1249 	/* see WMI_DISCONNECT_REASON */
1250 	u8 disconn_reason;
1251 
1252 	u8 assoc_resp_len;
1253 	u8 assoc_info[1];
1254 } __packed;
1255 
1256 /*
1257  * BSS Info Event.
1258  * Mechanism used to inform host of the presence and characteristic of
1259  * wireless networks present.  Consists of bss info header followed by
1260  * the beacon or probe-response frame body.  The 802.11 header is no included.
1261  */
1262 enum wmi_bi_ftype {
1263 	BEACON_FTYPE = 0x1,
1264 	PROBERESP_FTYPE,
1265 	ACTION_MGMT_FTYPE,
1266 	PROBEREQ_FTYPE,
1267 };
1268 
1269 struct wmi_bss_info_hdr {
1270 	__le16 ch;
1271 
1272 	/* see, enum wmi_bi_ftype */
1273 	u8 frame_type;
1274 
1275 	u8 snr;
1276 	a_sle16 rssi;
1277 	u8 bssid[ETH_ALEN];
1278 	__le32 ie_mask;
1279 } __packed;
1280 
1281 /*
1282  * BSS INFO HDR version 2.0
1283  * With 6 bytes HTC header and 6 bytes of WMI header
1284  * WMI_BSS_INFO_HDR cannot be accommodated in the removed 802.11 management
1285  * header space.
1286  * - Reduce the ie_mask to 2 bytes as only two bit flags are used
1287  * - Remove rssi and compute it on the host. rssi = snr - 95
1288  */
1289 struct wmi_bss_info_hdr2 {
1290 	__le16 ch;
1291 
1292 	/* see, enum wmi_bi_ftype */
1293 	u8 frame_type;
1294 
1295 	u8 snr;
1296 	u8 bssid[ETH_ALEN];
1297 	__le16 ie_mask;
1298 } __packed;
1299 
1300 /* Command Error Event */
1301 enum wmi_error_code {
1302 	INVALID_PARAM = 0x01,
1303 	ILLEGAL_STATE = 0x02,
1304 	INTERNAL_ERROR = 0x03,
1305 };
1306 
1307 struct wmi_cmd_error_event {
1308 	__le16 cmd_id;
1309 	u8 err_code;
1310 } __packed;
1311 
1312 struct wmi_pstream_timeout_event {
1313 	u8 tx_queue_num;
1314 	u8 rx_queue_num;
1315 	u8 traffic_direc;
1316 	u8 traffic_class;
1317 } __packed;
1318 
1319 /*
1320  * The WMI_NEIGHBOR_REPORT Event is generated by the target to inform
1321  * the host of BSS's it has found that matches the current profile.
1322  * It can be used by the host to cache PMKs and/to initiate pre-authentication
1323  * if the BSS supports it.  The first bssid is always the current associated
1324  * BSS.
1325  * The bssid and bssFlags information repeats according to the number
1326  * or APs reported.
1327  */
1328 enum wmi_bss_flags {
1329 	WMI_DEFAULT_BSS_FLAGS = 0x00,
1330 	WMI_PREAUTH_CAPABLE_BSS = 0x01,
1331 	WMI_PMKID_VALID_BSS = 0x02,
1332 };
1333 
1334 /* TKIP MIC Error Event */
1335 struct wmi_tkip_micerr_event {
1336 	u8 key_id;
1337 	u8 is_mcast;
1338 } __packed;
1339 
1340 /* WMI_SCAN_COMPLETE_EVENTID */
1341 struct wmi_scan_complete_event {
1342 	a_sle32 status;
1343 } __packed;
1344 
1345 #define MAX_OPT_DATA_LEN 1400
1346 
1347 /*
1348  * Special frame receive Event.
1349  * Mechanism used to inform host of the receiption of the special frames.
1350  * Consists of special frame info header followed by special frame body.
1351  * The 802.11 header is not included.
1352  */
1353 struct wmi_opt_rx_info_hdr {
1354 	__le16 ch;
1355 	u8 frame_type;
1356 	s8 snr;
1357 	u8 src_addr[ETH_ALEN];
1358 	u8 bssid[ETH_ALEN];
1359 } __packed;
1360 
1361 /* Reporting statistic */
1362 struct tx_stats {
1363 	__le32 pkt;
1364 	__le32 byte;
1365 	__le32 ucast_pkt;
1366 	__le32 ucast_byte;
1367 	__le32 mcast_pkt;
1368 	__le32 mcast_byte;
1369 	__le32 bcast_pkt;
1370 	__le32 bcast_byte;
1371 	__le32 rts_success_cnt;
1372 	__le32 pkt_per_ac[4];
1373 	__le32 err_per_ac[4];
1374 
1375 	__le32 err;
1376 	__le32 fail_cnt;
1377 	__le32 retry_cnt;
1378 	__le32 mult_retry_cnt;
1379 	__le32 rts_fail_cnt;
1380 	a_sle32 ucast_rate;
1381 } __packed;
1382 
1383 struct rx_stats {
1384 	__le32 pkt;
1385 	__le32 byte;
1386 	__le32 ucast_pkt;
1387 	__le32 ucast_byte;
1388 	__le32 mcast_pkt;
1389 	__le32 mcast_byte;
1390 	__le32 bcast_pkt;
1391 	__le32 bcast_byte;
1392 	__le32 frgment_pkt;
1393 
1394 	__le32 err;
1395 	__le32 crc_err;
1396 	__le32 key_cache_miss;
1397 	__le32 decrypt_err;
1398 	__le32 dupl_frame;
1399 	a_sle32 ucast_rate;
1400 } __packed;
1401 
1402 struct tkip_ccmp_stats {
1403 	__le32 tkip_local_mic_fail;
1404 	__le32 tkip_cnter_measures_invoked;
1405 	__le32 tkip_replays;
1406 	__le32 tkip_fmt_err;
1407 	__le32 ccmp_fmt_err;
1408 	__le32 ccmp_replays;
1409 } __packed;
1410 
1411 struct pm_stats {
1412 	__le32 pwr_save_failure_cnt;
1413 	__le16 stop_tx_failure_cnt;
1414 	__le16 atim_tx_failure_cnt;
1415 	__le16 atim_rx_failure_cnt;
1416 	__le16 bcn_rx_failure_cnt;
1417 } __packed;
1418 
1419 struct cserv_stats {
1420 	__le32 cs_bmiss_cnt;
1421 	__le32 cs_low_rssi_cnt;
1422 	__le16 cs_connect_cnt;
1423 	__le16 cs_discon_cnt;
1424 	a_sle16 cs_ave_beacon_rssi;
1425 	__le16 cs_roam_count;
1426 	a_sle16 cs_rssi;
1427 	u8 cs_snr;
1428 	u8 cs_ave_beacon_snr;
1429 	u8 cs_last_roam_msec;
1430 } __packed;
1431 
1432 struct wlan_net_stats {
1433 	struct tx_stats tx;
1434 	struct rx_stats rx;
1435 	struct tkip_ccmp_stats tkip_ccmp_stats;
1436 } __packed;
1437 
1438 struct arp_stats {
1439 	__le32 arp_received;
1440 	__le32 arp_matched;
1441 	__le32 arp_replied;
1442 } __packed;
1443 
1444 struct wlan_wow_stats {
1445 	__le32 wow_pkt_dropped;
1446 	__le16 wow_evt_discarded;
1447 	u8 wow_host_pkt_wakeups;
1448 	u8 wow_host_evt_wakeups;
1449 } __packed;
1450 
1451 struct wmi_target_stats {
1452 	__le32 lq_val;
1453 	a_sle32 noise_floor_calib;
1454 	struct pm_stats pm_stats;
1455 	struct wlan_net_stats stats;
1456 	struct wlan_wow_stats wow_stats;
1457 	struct arp_stats arp_stats;
1458 	struct cserv_stats cserv_stats;
1459 } __packed;
1460 
1461 /*
1462  * WMI_RSSI_THRESHOLD_EVENTID.
1463  * Indicate the RSSI events to host. Events are indicated when we breach a
1464  * thresold value.
1465  */
1466 enum wmi_rssi_threshold_val {
1467 	WMI_RSSI_THRESHOLD1_ABOVE = 0,
1468 	WMI_RSSI_THRESHOLD2_ABOVE,
1469 	WMI_RSSI_THRESHOLD3_ABOVE,
1470 	WMI_RSSI_THRESHOLD4_ABOVE,
1471 	WMI_RSSI_THRESHOLD5_ABOVE,
1472 	WMI_RSSI_THRESHOLD6_ABOVE,
1473 	WMI_RSSI_THRESHOLD1_BELOW,
1474 	WMI_RSSI_THRESHOLD2_BELOW,
1475 	WMI_RSSI_THRESHOLD3_BELOW,
1476 	WMI_RSSI_THRESHOLD4_BELOW,
1477 	WMI_RSSI_THRESHOLD5_BELOW,
1478 	WMI_RSSI_THRESHOLD6_BELOW
1479 };
1480 
1481 struct wmi_rssi_threshold_event {
1482 	a_sle16 rssi;
1483 	u8 range;
1484 } __packed;
1485 
1486 enum wmi_snr_threshold_val {
1487 	WMI_SNR_THRESHOLD1_ABOVE = 1,
1488 	WMI_SNR_THRESHOLD1_BELOW,
1489 	WMI_SNR_THRESHOLD2_ABOVE,
1490 	WMI_SNR_THRESHOLD2_BELOW,
1491 	WMI_SNR_THRESHOLD3_ABOVE,
1492 	WMI_SNR_THRESHOLD3_BELOW,
1493 	WMI_SNR_THRESHOLD4_ABOVE,
1494 	WMI_SNR_THRESHOLD4_BELOW
1495 };
1496 
1497 struct wmi_snr_threshold_event {
1498 	/* see, enum wmi_snr_threshold_val */
1499 	u8 range;
1500 
1501 	u8 snr;
1502 } __packed;
1503 
1504 /* WMI_REPORT_ROAM_TBL_EVENTID */
1505 #define MAX_ROAM_TBL_CAND   5
1506 
1507 struct wmi_bss_roam_info {
1508 	a_sle32 roam_util;
1509 	u8 bssid[ETH_ALEN];
1510 	s8 rssi;
1511 	s8 rssidt;
1512 	s8 last_rssi;
1513 	s8 util;
1514 	s8 bias;
1515 
1516 	/* for alignment */
1517 	u8 reserved;
1518 } __packed;
1519 
1520 /* WMI_CAC_EVENTID */
1521 enum cac_indication {
1522 	CAC_INDICATION_ADMISSION = 0x00,
1523 	CAC_INDICATION_ADMISSION_RESP = 0x01,
1524 	CAC_INDICATION_DELETE = 0x02,
1525 	CAC_INDICATION_NO_RESP = 0x03,
1526 };
1527 
1528 #define WMM_TSPEC_IE_LEN   63
1529 
1530 struct wmi_cac_event {
1531 	u8 ac;
1532 	u8 cac_indication;
1533 	u8 status_code;
1534 	u8 tspec_suggestion[WMM_TSPEC_IE_LEN];
1535 } __packed;
1536 
1537 /* WMI_APLIST_EVENTID */
1538 
1539 enum aplist_ver {
1540 	APLIST_VER1 = 1,
1541 };
1542 
1543 struct wmi_ap_info_v1 {
1544 	u8 bssid[ETH_ALEN];
1545 	__le16 channel;
1546 } __packed;
1547 
1548 union wmi_ap_info {
1549 	struct wmi_ap_info_v1 ap_info_v1;
1550 } __packed;
1551 
1552 struct wmi_aplist_event {
1553 	u8 ap_list_ver;
1554 	u8 num_ap;
1555 	union wmi_ap_info ap_list[1];
1556 } __packed;
1557 
1558 /* Developer Commands */
1559 
1560 /*
1561  * WMI_SET_BITRATE_CMDID
1562  *
1563  * Get bit rate cmd uses same definition as set bit rate cmd
1564  */
1565 enum wmi_bit_rate {
1566 	RATE_AUTO = -1,
1567 	RATE_1Mb = 0,
1568 	RATE_2Mb = 1,
1569 	RATE_5_5Mb = 2,
1570 	RATE_11Mb = 3,
1571 	RATE_6Mb = 4,
1572 	RATE_9Mb = 5,
1573 	RATE_12Mb = 6,
1574 	RATE_18Mb = 7,
1575 	RATE_24Mb = 8,
1576 	RATE_36Mb = 9,
1577 	RATE_48Mb = 10,
1578 	RATE_54Mb = 11,
1579 	RATE_MCS_0_20 = 12,
1580 	RATE_MCS_1_20 = 13,
1581 	RATE_MCS_2_20 = 14,
1582 	RATE_MCS_3_20 = 15,
1583 	RATE_MCS_4_20 = 16,
1584 	RATE_MCS_5_20 = 17,
1585 	RATE_MCS_6_20 = 18,
1586 	RATE_MCS_7_20 = 19,
1587 	RATE_MCS_0_40 = 20,
1588 	RATE_MCS_1_40 = 21,
1589 	RATE_MCS_2_40 = 22,
1590 	RATE_MCS_3_40 = 23,
1591 	RATE_MCS_4_40 = 24,
1592 	RATE_MCS_5_40 = 25,
1593 	RATE_MCS_6_40 = 26,
1594 	RATE_MCS_7_40 = 27,
1595 };
1596 
1597 struct wmi_bit_rate_reply {
1598 	/* see, enum wmi_bit_rate */
1599 	s8 rate_index;
1600 } __packed;
1601 
1602 /*
1603  * WMI_SET_FIXRATES_CMDID
1604  *
1605  * Get fix rates cmd uses same definition as set fix rates cmd
1606  */
1607 struct wmi_fix_rates_reply {
1608 	/* see wmi_bit_rate */
1609 	__le32 fix_rate_mask;
1610 } __packed;
1611 
1612 enum roam_data_type {
1613 	/* get the roam time data */
1614 	ROAM_DATA_TIME = 1,
1615 };
1616 
1617 struct wmi_target_roam_time {
1618 	__le32 disassoc_time;
1619 	__le32 no_txrx_time;
1620 	__le32 assoc_time;
1621 	__le32 allow_txrx_time;
1622 	u8 disassoc_bssid[ETH_ALEN];
1623 	s8 disassoc_bss_rssi;
1624 	u8 assoc_bssid[ETH_ALEN];
1625 	s8 assoc_bss_rssi;
1626 } __packed;
1627 
1628 enum wmi_txop_cfg {
1629 	WMI_TXOP_DISABLED = 0,
1630 	WMI_TXOP_ENABLED
1631 };
1632 
1633 struct wmi_set_wmm_txop_cmd {
1634 	u8 txop_enable;
1635 } __packed;
1636 
1637 struct wmi_set_keepalive_cmd {
1638 	u8 keep_alive_intvl;
1639 } __packed;
1640 
1641 struct wmi_get_keepalive_cmd {
1642 	__le32 configured;
1643 	u8 keep_alive_intvl;
1644 } __packed;
1645 
1646 /* Notify the WSC registration status to the target */
1647 #define WSC_REG_ACTIVE     1
1648 #define WSC_REG_INACTIVE   0
1649 
1650 #define WOW_MAX_FILTER_LISTS	 1
1651 #define WOW_MAX_FILTERS_PER_LIST 4
1652 #define WOW_PATTERN_SIZE	 64
1653 #define WOW_MASK_SIZE		 64
1654 
1655 #define MAC_MAX_FILTERS_PER_LIST 4
1656 
1657 struct wow_filter {
1658 	u8 wow_valid_filter;
1659 	u8 wow_filter_id;
1660 	u8 wow_filter_size;
1661 	u8 wow_filter_offset;
1662 	u8 wow_filter_mask[WOW_MASK_SIZE];
1663 	u8 wow_filter_pattern[WOW_PATTERN_SIZE];
1664 } __packed;
1665 
1666 #define MAX_IP_ADDRS  2
1667 
1668 struct wmi_set_ip_cmd {
1669 	/* IP in network byte order */
1670 	__le32 ips[MAX_IP_ADDRS];
1671 } __packed;
1672 
1673 /* WMI_GET_WOW_LIST_CMD reply  */
1674 struct wmi_get_wow_list_reply {
1675 	/* number of patterns in reply */
1676 	u8 num_filters;
1677 
1678 	/* this is filter # x of total num_filters */
1679 	u8 this_filter_num;
1680 
1681 	u8 wow_mode;
1682 	u8 host_mode;
1683 	struct wow_filter wow_filters[1];
1684 } __packed;
1685 
1686 /* WMI_SET_AKMP_PARAMS_CMD */
1687 
1688 struct wmi_pmkid {
1689 	u8 pmkid[WMI_PMKID_LEN];
1690 } __packed;
1691 
1692 /* WMI_GET_PMKID_LIST_CMD  Reply */
1693 struct wmi_pmkid_list_reply {
1694 	__le32 num_pmkid;
1695 	u8 bssid_list[ETH_ALEN][1];
1696 	struct wmi_pmkid pmkid_list[1];
1697 } __packed;
1698 
1699 /* WMI_ADDBA_REQ_EVENTID */
1700 struct wmi_addba_req_event {
1701 	u8 tid;
1702 	u8 win_sz;
1703 	__le16 st_seq_no;
1704 
1705 	/* f/w response for ADDBA Req; OK (0) or failure (!=0) */
1706 	u8 status;
1707 } __packed;
1708 
1709 /* WMI_ADDBA_RESP_EVENTID */
1710 struct wmi_addba_resp_event {
1711 	u8 tid;
1712 
1713 	/* OK (0), failure (!=0) */
1714 	u8 status;
1715 
1716 	/* three values: not supported(0), 3839, 8k */
1717 	__le16 amsdu_sz;
1718 } __packed;
1719 
1720 /* WMI_DELBA_EVENTID
1721  * f/w received a DELBA for peer and processed it.
1722  * Host is notified of this
1723  */
1724 struct wmi_delba_event {
1725 	u8 tid;
1726 	u8 is_peer_initiator;
1727 	__le16 reason_code;
1728 } __packed;
1729 
1730 #define PEER_NODE_JOIN_EVENT		0x00
1731 #define PEER_NODE_LEAVE_EVENT		0x01
1732 #define PEER_FIRST_NODE_JOIN_EVENT	0x10
1733 #define PEER_LAST_NODE_LEAVE_EVENT	0x11
1734 
1735 struct wmi_peer_node_event {
1736 	u8 event_code;
1737 	u8 peer_mac_addr[ETH_ALEN];
1738 } __packed;
1739 
1740 /* Transmit complete event data structure(s) */
1741 
1742 /* version 1 of tx complete msg */
1743 struct tx_complete_msg_v1 {
1744 #define TX_COMPLETE_STATUS_SUCCESS 0
1745 #define TX_COMPLETE_STATUS_RETRIES 1
1746 #define TX_COMPLETE_STATUS_NOLINK  2
1747 #define TX_COMPLETE_STATUS_TIMEOUT 3
1748 #define TX_COMPLETE_STATUS_OTHER   4
1749 
1750 	u8 status;
1751 
1752 	/* packet ID to identify parent packet */
1753 	u8 pkt_id;
1754 
1755 	/* rate index on successful transmission */
1756 	u8 rate_idx;
1757 
1758 	/* number of ACK failures in tx attempt */
1759 	u8 ack_failures;
1760 } __packed;
1761 
1762 struct wmi_tx_complete_event {
1763 	/* no of tx comp msgs following this struct */
1764 	u8 num_msg;
1765 
1766 	/* length in bytes for each individual msg following this struct */
1767 	u8 msg_len;
1768 
1769 	/* version of tx complete msg data following this struct */
1770 	u8 msg_type;
1771 
1772 	/* individual messages follow this header */
1773 	u8 reserved;
1774 } __packed;
1775 
1776 /*
1777  * ------- AP Mode definitions --------------
1778  */
1779 
1780 /*
1781  * !!! Warning !!!
1782  * -Changing the following values needs compilation of both driver and firmware
1783  */
1784 #define AP_MAX_NUM_STA          8
1785 
1786 /* Spl. AID used to set DTIM flag in the beacons */
1787 #define MCAST_AID               0xFF
1788 
1789 #define DEF_AP_COUNTRY_CODE     "US "
1790 
1791 /* Used with WMI_AP_SET_NUM_STA_CMDID */
1792 
1793 struct wmi_ap_set_pvb_cmd {
1794 	__le32 flag;
1795 	__le16 aid;
1796 } __packed;
1797 
1798 struct wmi_rx_frame_format_cmd {
1799 	/* version of meta data for rx packets <0 = default> (0-7 = valid) */
1800 	u8 meta_ver;
1801 
1802 	/*
1803 	 * 1 == leave .11 header intact,
1804 	 * 0 == replace .11 header with .3 <default>
1805 	 */
1806 	u8 dot11_hdr;
1807 
1808 	/*
1809 	 * 1 == defragmentation is performed by host,
1810 	 * 0 == performed by target <default>
1811 	 */
1812 	u8 defrag_on_host;
1813 
1814 	/* for alignment */
1815 	u8 reserved[1];
1816 } __packed;
1817 
1818 /* AP mode events */
1819 
1820 /* WMI_PS_POLL_EVENT */
1821 struct wmi_pspoll_event {
1822 	__le16 aid;
1823 } __packed;
1824 
1825 struct wmi_per_sta_stat {
1826 	__le32 tx_bytes;
1827 	__le32 tx_pkts;
1828 	__le32 tx_error;
1829 	__le32 tx_discard;
1830 	__le32 rx_bytes;
1831 	__le32 rx_pkts;
1832 	__le32 rx_error;
1833 	__le32 rx_discard;
1834 	__le32 aid;
1835 } __packed;
1836 
1837 struct wmi_ap_mode_stat {
1838 	__le32 action;
1839 	struct wmi_per_sta_stat sta[AP_MAX_NUM_STA + 1];
1840 } __packed;
1841 
1842 /* End of AP mode definitions */
1843 
1844 /* Extended WMI (WMIX)
1845  *
1846  * Extended WMIX commands are encapsulated in a WMI message with
1847  * cmd=WMI_EXTENSION_CMD.
1848  *
1849  * Extended WMI commands are those that are needed during wireless
1850  * operation, but which are not really wireless commands.  This allows,
1851  * for instance, platform-specific commands.  Extended WMI commands are
1852  * embedded in a WMI command message with WMI_COMMAND_ID=WMI_EXTENSION_CMDID.
1853  * Extended WMI events are similarly embedded in a WMI event message with
1854  * WMI_EVENT_ID=WMI_EXTENSION_EVENTID.
1855  */
1856 struct wmix_cmd_hdr {
1857 	__le32 cmd_id;
1858 } __packed;
1859 
1860 enum wmix_command_id {
1861 	WMIX_DSETOPEN_REPLY_CMDID = 0x2001,
1862 	WMIX_DSETDATA_REPLY_CMDID,
1863 	WMIX_GPIO_OUTPUT_SET_CMDID,
1864 	WMIX_GPIO_INPUT_GET_CMDID,
1865 	WMIX_GPIO_REGISTER_SET_CMDID,
1866 	WMIX_GPIO_REGISTER_GET_CMDID,
1867 	WMIX_GPIO_INTR_ACK_CMDID,
1868 	WMIX_HB_CHALLENGE_RESP_CMDID,
1869 	WMIX_DBGLOG_CFG_MODULE_CMDID,
1870 	WMIX_PROF_CFG_CMDID,	/* 0x200a */
1871 	WMIX_PROF_ADDR_SET_CMDID,
1872 	WMIX_PROF_START_CMDID,
1873 	WMIX_PROF_STOP_CMDID,
1874 	WMIX_PROF_COUNT_GET_CMDID,
1875 };
1876 
1877 enum wmix_event_id {
1878 	WMIX_DSETOPENREQ_EVENTID = 0x3001,
1879 	WMIX_DSETCLOSE_EVENTID,
1880 	WMIX_DSETDATAREQ_EVENTID,
1881 	WMIX_GPIO_INTR_EVENTID,
1882 	WMIX_GPIO_DATA_EVENTID,
1883 	WMIX_GPIO_ACK_EVENTID,
1884 	WMIX_HB_CHALLENGE_RESP_EVENTID,
1885 	WMIX_DBGLOG_EVENTID,
1886 	WMIX_PROF_COUNT_EVENTID,
1887 };
1888 
1889 /*
1890  * ------Error Detection support-------
1891  */
1892 
1893 /*
1894  * WMIX_HB_CHALLENGE_RESP_CMDID
1895  * Heartbeat Challenge Response command
1896  */
1897 struct wmix_hb_challenge_resp_cmd {
1898 	__le32 cookie;
1899 	__le32 source;
1900 } __packed;
1901 
1902 /* End of Extended WMI (WMIX) */
1903 
1904 enum wmi_sync_flag {
1905 	NO_SYNC_WMIFLAG = 0,
1906 
1907 	/* transmit all queued data before cmd */
1908 	SYNC_BEFORE_WMIFLAG,
1909 
1910 	/* any new data waits until cmd execs */
1911 	SYNC_AFTER_WMIFLAG,
1912 
1913 	SYNC_BOTH_WMIFLAG,
1914 
1915 	/* end marker */
1916 	END_WMIFLAG
1917 };
1918 
1919 enum htc_endpoint_id ath6kl_wmi_get_control_ep(struct wmi *wmi);
1920 void ath6kl_wmi_set_control_ep(struct wmi *wmi, enum htc_endpoint_id ep_id);
1921 int ath6kl_wmi_dix_2_dot3(struct wmi *wmi, struct sk_buff *skb);
1922 int ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb,
1923 			    u8 msg_type, bool more_data,
1924 			    enum wmi_data_hdr_data_type data_type,
1925 			    u8 meta_ver, void *tx_meta_info);
1926 
1927 int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb);
1928 int ath6kl_wmi_dot3_2_dix(struct sk_buff *skb);
1929 int ath6kl_wmi_data_hdr_remove(struct wmi *wmi, struct sk_buff *skb);
1930 int ath6kl_wmi_implicit_create_pstream(struct wmi *wmi, struct sk_buff *skb,
1931 				       u32 layer2_priority, bool wmm_enabled,
1932 				       u8 *ac);
1933 
1934 int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb);
1935 void ath6kl_wmi_iterate_nodes(struct wmi *wmi,
1936 			      void (*f) (void *arg, struct bss *),
1937 			      void *arg);
1938 struct bss *ath6kl_wmi_find_node(struct wmi *wmi, const u8 *mac_addr);
1939 void ath6kl_wmi_node_free(struct wmi *wmi, const u8 *mac_addr);
1940 
1941 int ath6kl_wmi_cmd_send(struct wmi *wmi, struct sk_buff *skb,
1942 			enum wmi_cmd_id cmd_id, enum wmi_sync_flag sync_flag);
1943 
1944 int ath6kl_wmi_connect_cmd(struct wmi *wmi, enum network_type nw_type,
1945 			   enum dot11_auth_mode dot11_auth_mode,
1946 			   enum auth_mode auth_mode,
1947 			   enum crypto_type pairwise_crypto,
1948 			   u8 pairwise_crypto_len,
1949 			   enum crypto_type group_crypto,
1950 			   u8 group_crypto_len, int ssid_len, u8 *ssid,
1951 			   u8 *bssid, u16 channel, u32 ctrl_flags);
1952 
1953 int ath6kl_wmi_reconnect_cmd(struct wmi *wmi, u8 *bssid, u16 channel);
1954 int ath6kl_wmi_disconnect_cmd(struct wmi *wmi);
1955 int ath6kl_wmi_startscan_cmd(struct wmi *wmi, enum wmi_scan_type scan_type,
1956 			     u32 force_fgscan, u32 is_legacy,
1957 			     u32 home_dwell_time, u32 force_scan_interval,
1958 			     s8 num_chan, u16 *ch_list);
1959 int ath6kl_wmi_scanparams_cmd(struct wmi *wmi, u16 fg_start_sec,
1960 			      u16 fg_end_sec, u16 bg_sec,
1961 			      u16 minact_chdw_msec, u16 maxact_chdw_msec,
1962 			      u16 pas_chdw_msec, u8 short_scan_ratio,
1963 			      u8 scan_ctrl_flag, u32 max_dfsch_act_time,
1964 			      u16 maxact_scan_per_ssid);
1965 int ath6kl_wmi_bssfilter_cmd(struct wmi *wmi, u8 filter, u32 ie_mask);
1966 int ath6kl_wmi_probedssid_cmd(struct wmi *wmi, u8 index, u8 flag,
1967 			      u8 ssid_len, u8 *ssid);
1968 int ath6kl_wmi_listeninterval_cmd(struct wmi *wmi, u16 listen_interval,
1969 				  u16 listen_beacons);
1970 int ath6kl_wmi_powermode_cmd(struct wmi *wmi, u8 pwr_mode);
1971 int ath6kl_wmi_pmparams_cmd(struct wmi *wmi, u16 idle_period,
1972 			    u16 ps_poll_num, u16 dtim_policy,
1973 			    u16 tx_wakup_policy, u16 num_tx_to_wakeup,
1974 			    u16 ps_fail_event_policy);
1975 int ath6kl_wmi_disctimeout_cmd(struct wmi *wmi, u8 timeout);
1976 int ath6kl_wmi_create_pstream_cmd(struct wmi *wmi,
1977 				  struct wmi_create_pstream_cmd *pstream);
1978 int ath6kl_wmi_delete_pstream_cmd(struct wmi *wmi, u8 traffic_class, u8 tsid);
1979 
1980 int ath6kl_wmi_set_rts_cmd(struct wmi *wmi, u16 threshold);
1981 int ath6kl_wmi_set_lpreamble_cmd(struct wmi *wmi, u8 status,
1982 				 u8 preamble_policy);
1983 
1984 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi *wmi, u32 cookie, u32 source);
1985 
1986 int ath6kl_wmi_get_stats_cmd(struct wmi *wmi);
1987 int ath6kl_wmi_addkey_cmd(struct wmi *wmi, u8 key_index,
1988 			  enum crypto_type key_type,
1989 			  u8 key_usage, u8 key_len,
1990 			  u8 *key_rsc, u8 *key_material,
1991 			  u8 key_op_ctrl, u8 *mac_addr,
1992 			  enum wmi_sync_flag sync_flag);
1993 int ath6kl_wmi_add_krk_cmd(struct wmi *wmi, u8 *krk);
1994 int ath6kl_wmi_deletekey_cmd(struct wmi *wmi, u8 key_index);
1995 int ath6kl_wmi_setpmkid_cmd(struct wmi *wmi, const u8 *bssid,
1996 			    const u8 *pmkid, bool set);
1997 int ath6kl_wmi_set_tx_pwr_cmd(struct wmi *wmi, u8 dbM);
1998 int ath6kl_wmi_get_tx_pwr_cmd(struct wmi *wmi);
1999 void ath6kl_wmi_get_current_bssid(struct wmi *wmi, u8 *bssid);
2000 
2001 int ath6kl_wmi_set_wmm_txop(struct wmi *wmi, enum wmi_txop_cfg cfg);
2002 int ath6kl_wmi_set_keepalive_cmd(struct wmi *wmi, u8 keep_alive_intvl);
2003 
2004 s32 ath6kl_wmi_get_rate(s8 rate_index);
2005 
2006 int ath6kl_wmi_set_ip_cmd(struct wmi *wmi, struct wmi_set_ip_cmd *ip_cmd);
2007 
2008 struct bss *ath6kl_wmi_find_ssid_node(struct wmi *wmi, u8 *ssid,
2009 				      u32 ssid_len, bool is_wpa2,
2010 				      bool match_ssid);
2011 
2012 void ath6kl_wmi_node_return(struct wmi *wmi, struct bss *bss);
2013 
2014 /* AP mode */
2015 int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u16 aid, bool flag);
2016 
2017 int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi *wmi, u8 rx_meta_version,
2018 				       bool rx_dot11_hdr, bool defrag_on_host);
2019 
2020 void *ath6kl_wmi_init(struct ath6kl *devt);
2021 void ath6kl_wmi_shutdown(struct wmi *wmi);
2022 
2023 #endif /* WMI_H */
2024