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