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