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