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