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