2 * Copyright (c) 2010-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2012 Qualcomm Atheros, Inc.
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.
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.
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.
28 #include <linux/ieee80211.h>
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)
37 #define IP_ETHERTYPE 0x0800
39 #define WMI_IMPLICIT_PSTREAM 0xFF
40 #define WMI_MAX_THINSTREAM 15
42 #define SSID_IE_LEN_INDEX 13
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
49 #define A_BAND_24GHZ 0
51 #define ATH6KL_NUM_BANDS 2
54 #define WMI_IMPLICIT_PSTREAM_INACTIVITY_INT 5000
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.
60 * Use a_ prefix so that it doesn't conflict if we get proper support to
63 typedef __s16 __bitwise a_sle16
;
64 typedef __s32 __bitwise a_sle32
;
66 static inline a_sle32
a_cpu_to_sle32(s32 val
)
68 return (__force a_sle32
) cpu_to_le32(val
);
71 static inline s32
a_sle32_to_cpu(a_sle32 val
)
73 return le32_to_cpu((__force __le32
) val
);
76 static inline a_sle16
a_cpu_to_sle16(s16 val
)
78 return (__force a_sle16
) cpu_to_le16(val
);
81 static inline s16
a_sle16_to_cpu(a_sle16 val
)
83 return le16_to_cpu((__force __le16
) val
);
86 struct sq_threshold_params
{
87 s16 upper_threshold
[SIG_QUALITY_UPPER_THRESH_LVLS
];
88 s16 lower_threshold
[SIG_QUALITY_LOWER_THRESH_LVLS
];
89 u32 upper_threshold_valid_count
;
90 u32 lower_threshold_valid_count
;
94 u8 last_rssi_poll_event
;
97 struct wmi_data_sync_bufs
{
102 /* WMM stream classes */
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 */
109 #define WMI_VOICE_USER_PRIORITY 0x7
112 u16 stream_exist_for_ac
[WMM_NUM_AC
];
114 struct ath6kl
*parent_dev
;
117 /* protects fat_pipe_exist and stream_exist_for_ac */
119 enum htc_endpoint_id ep_id
;
120 struct sq_threshold_params
121 sq_threshld
[SIGNAL_QUALITY_METRICS_NUM_MAX
];
126 u8
*last_mgmt_tx_frame
;
127 size_t last_mgmt_tx_frame_len
;
131 struct host_app_area
{
132 __le32 wmi_protocol_ver
;
143 * Macros for operating on WMI_DATA_HDR (info) field
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
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.
154 #define WMI_DATA_HDR_PS_MASK 0x1
155 #define WMI_DATA_HDR_PS_SHIFT 5
157 #define WMI_DATA_HDR_MORE 0x20
159 enum wmi_data_hdr_data_type
{
160 WMI_DATA_HDR_DATA_TYPE_802_3
= 0,
161 WMI_DATA_HDR_DATA_TYPE_802_11
,
163 /* used to be used for the PAL */
164 WMI_DATA_HDR_DATA_TYPE_ACL
,
167 /* Bitmap of data header flags */
168 enum 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,
174 #define WMI_DATA_HDR_DATA_TYPE_MASK 0x3
175 #define WMI_DATA_HDR_DATA_TYPE_SHIFT 6
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
181 #define WMI_DATA_HDR_AMSDU_MASK 0x1
182 #define WMI_DATA_HDR_AMSDU_SHIFT 12
184 #define WMI_DATA_HDR_META_MASK 0x7
185 #define WMI_DATA_HDR_META_SHIFT 13
187 #define WMI_DATA_HDR_PAD_BEFORE_DATA_MASK 0xFF
188 #define WMI_DATA_HDR_PAD_BEFORE_DATA_SHIFT 0x8
190 /* Macros for operating on WMI_DATA_HDR (info3) field */
191 #define WMI_DATA_HDR_IF_IDX_MASK 0xF
193 #define WMI_DATA_HDR_TRIG 0x10
194 #define WMI_DATA_HDR_EOSP 0x10
196 struct wmi_data_hdr
{
200 * usage of 'info' field(8-bit):
202 * b1:b0 - WMI_MSG_TYPE
204 * b5 - Used in AP mode.
205 * More-data in tx dir, PS in rx.
206 * b7:b6 - Dot3 header(0),
213 * usage of 'info2' field(16-bit):
217 * b15:b13 - META_DATA_VERSION 0 - 7
222 * usage of info3, 16-bit:
223 * b3:b0 - Interface index
224 * b4 - uAPSD trigger in rx & EOSP in tx
230 static inline u8
wmi_data_hdr_get_up(struct wmi_data_hdr
*dhdr
)
232 return (dhdr
->info
>> WMI_DATA_HDR_UP_SHIFT
) & WMI_DATA_HDR_UP_MASK
;
235 static inline void wmi_data_hdr_set_up(struct wmi_data_hdr
*dhdr
,
238 dhdr
->info
&= ~(WMI_DATA_HDR_UP_MASK
<< WMI_DATA_HDR_UP_SHIFT
);
239 dhdr
->info
|= usr_pri
<< WMI_DATA_HDR_UP_SHIFT
;
242 static inline u8
wmi_data_hdr_get_dot11(struct wmi_data_hdr
*dhdr
)
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
);
251 static inline u16
wmi_data_hdr_get_seqno(struct wmi_data_hdr
*dhdr
)
253 return (le16_to_cpu(dhdr
->info2
) >> WMI_DATA_HDR_SEQNO_SHIFT
) &
254 WMI_DATA_HDR_SEQNO_MASK
;
257 static inline u8
wmi_data_hdr_is_amsdu(struct wmi_data_hdr
*dhdr
)
259 return (le16_to_cpu(dhdr
->info2
) >> WMI_DATA_HDR_AMSDU_SHIFT
) &
260 WMI_DATA_HDR_AMSDU_MASK
;
263 static inline u8
wmi_data_hdr_get_meta(struct wmi_data_hdr
*dhdr
)
265 return (le16_to_cpu(dhdr
->info2
) >> WMI_DATA_HDR_META_SHIFT
) &
266 WMI_DATA_HDR_META_MASK
;
269 static inline u8
wmi_data_hdr_get_if_idx(struct wmi_data_hdr
*dhdr
)
271 return le16_to_cpu(dhdr
->info3
) & WMI_DATA_HDR_IF_IDX_MASK
;
274 /* 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
279 /* Flag to signal to FW to calculate TCP checksum */
280 #define WMI_META_V2_FLAG_CSUM_OFFLOAD 0x01
282 struct wmi_tx_meta_v1
{
283 /* packet ID to identify the tx request */
286 /* rate policy to be used for the tx of this frame */
290 struct wmi_tx_meta_v2
{
292 * Offset from start of the WMI header for csum calculation to
297 /* offset from start of WMI header where final csum goes */
300 /* no of bytes over which csum is calculated */
304 struct wmi_rx_meta_v1
{
307 /* rate index mapped to rate at which this packet was received. */
313 /* rf channel during packet reception */
319 struct wmi_rx_meta_v2
{
322 /* bit 0 set -partial csum valid bit 1 set -test mode */
326 #define WMI_CMD_HDR_IF_ID_MASK 0xF
334 * b15:b04 - unused */
341 static inline u8
wmi_cmd_hdr_get_if_idx(struct wmi_cmd_hdr
*chdr
)
343 return le16_to_cpu(chdr
->info1
) & WMI_CMD_HDR_IF_ID_MASK
;
346 /* List of WMI commands */
348 WMI_CONNECT_CMDID
= 0x0001,
350 WMI_DISCONNECT_CMDID
,
351 WMI_SYNCHRONIZE_CMDID
,
352 WMI_CREATE_PSTREAM_CMDID
,
353 WMI_DELETE_PSTREAM_CMDID
,
354 /* 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.
358 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
,
376 WMI_DELETE_KRK_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
,
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
,
408 WMI_SET_WMM_TXOP_CMDID
,
411 /* COEX AR6002 only */
412 WMI_SET_BT_STATUS_CMDID
,
413 WMI_SET_BT_PARAMS_CMDID
, /* 60 */
415 WMI_SET_KEEPALIVE_CMDID
,
416 WMI_GET_KEEPALIVE_CMDID
,
419 WMI_SET_WSC_STATUS_CMDID
,
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 */
428 WMI_SET_FRAMERATES_CMDID
,
430 WMI_SET_QOS_SUPP_CMDID
,
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,
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
,
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
,
469 WMI_SET_PARAMS_CMDID
,
470 WMI_SET_MCAST_FILTER_CMDID
,
471 WMI_DEL_MCAST_FILTER_CMDID
,
473 WMI_ALLOW_AGGR_CMDID
,
476 WMI_SET_HT_CAP_CMDID
,
478 WMI_SET_TX_SELECT_RATES_CMDID
,
479 WMI_SET_TX_SGI_PARAM_CMDID
,
480 WMI_SET_RATE_POLICY_CMDID
,
483 WMI_RX_FRAME_FORMAT_CMDID
,
484 WMI_SET_THIN_MODE_CMDID
,
485 WMI_SET_BT_WLAN_CONN_PRECEDENCE_CMDID
,
487 WMI_AP_SET_11BG_RATESET_CMDID
,
489 WMI_MCAST_FILTER_CMDID
,
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
,
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
,
509 WMI_P2P_SET_CONFIG_CMDID
, /* F038 */
510 WMI_WPS_SET_CONFIG_CMDID
,
511 WMI_SET_REQ_DEV_ATTR_CMDID
,
513 WMI_P2P_STOP_FIND_CMDID
,
514 WMI_P2P_GO_NEG_START_CMDID
,
515 WMI_P2P_LISTEN_CMDID
,
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
,
523 WMI_ENABLE_WAC_CMDID
,
524 WMI_WAC_SCAN_REPLY_CMDID
,
525 WMI_WAC_CTRL_REQ_CMDID
,
526 WMI_SET_DIV_PARAMS_CMDID
,
529 WMI_SET_PASSPHRASE_CMDID
,
530 WMI_SEND_ASSOC_RES_CMDID
,
531 WMI_SET_ASSOC_REQ_RELAY_CMDID
,
533 /* ACS command, consists of sub-commands */
535 WMI_SET_EXCESS_TX_RETRY_THRES_CMDID
,
536 WMI_SET_TBD_TIME_CMDID
, /*added for wmiconfig command for TBD */
539 WMI_PKTLOG_ENABLE_CMDID
,
540 WMI_PKTLOG_DISABLE_CMDID
,
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
,
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
,
556 WMI_P2P_SDPD_TX_CMDID
, /* F05C */
557 WMI_P2P_STOP_SDPD_CMDID
,
558 WMI_P2P_CANCEL_CMDID
,
559 /* 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
,
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
,
572 /* 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.
576 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
,
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
,
594 WMI_SET_BUNDLE_PARAM_CMDID
,
596 /*GreenTx specific commands*/
598 WMI_GREENTX_PARAMS_CMDID
,
600 WMI_RTT_MEASREQ_CMDID
,
601 WMI_RTT_CAPREQ_CMDID
,
602 WMI_RTT_STATUSREQ_CMDID
,
606 WMI_GET_WPS_STATUS_CMDID
,
608 /* More P2P commands */
617 WMI_SET_RSN_CAP_CMDID
,
618 WMI_GET_RSN_CAP_CMDID
,
621 WMI_RX_FILTER_COALESCE_FILTER_OP_CMDID
,
622 WMI_RX_FILTER_SET_FRAME_TEST_LIST_CMDID
,
625 WMI_BEGIN_SCAN_CMDID
,
630 WMI_STA_BMISS_ENHANCE_CMDID
,
632 WMI_SET_REGDOMAIN_CMDID
,
634 WMI_SET_RSSI_FILTER_CMDID
,
636 WMI_SET_KEEP_ALIVE_EXT
,
638 WMI_VOICE_DETECTION_ENABLE_CMDID
,
640 WMI_SET_TXE_NOTIFY_CMDID
,
642 WMI_SET_RECOVERY_TEST_PARAMETER_CMDID
, /*0xf094*/
644 WMI_ENABLE_SCHED_SCAN_CMDID
,
647 enum wmi_mgmt_frame_type
{
648 WMI_FRAME_BEACON
= 0,
650 WMI_FRAME_PROBE_RESP
,
652 WMI_FRAME_ASSOC_RESP
,
656 enum wmi_ie_field_type
{
657 WMI_RSN_IE_CAPB
= 0x1,
658 WMI_IE_FULL
= 0xFF, /* indicats full IE */
661 /* WMI_CONNECT_CMDID */
663 INFRA_NETWORK
= 0x01,
664 ADHOC_NETWORK
= 0x02,
665 ADHOC_CREATOR
= 0x04,
669 enum network_subtype
{
677 enum dot11_auth_mode
{
681 /* different from IEEE_AUTH_MODE definitions */
690 WPA2_PSK_AUTH
= 0x10,
691 WPA_AUTH_CCKM
= 0x20,
692 WPA2_AUTH_CCKM
= 0x40,
695 #define WMI_MAX_KEY_INDEX 3
697 #define WMI_MAX_KEY_LEN 32
700 * NB: these values are ordered carefully; there are lots of
701 * of implications in any reordering. In particular beware
702 * that 4 is not used to avoid conflicting with IEEE80211_F_PRIVACY.
704 #define ATH6KL_CIPHER_WEP 0
705 #define ATH6KL_CIPHER_TKIP 1
706 #define ATH6KL_CIPHER_AES_OCB 2
707 #define ATH6KL_CIPHER_AES_CCM 3
708 #define ATH6KL_CIPHER_CKIP 5
709 #define ATH6KL_CIPHER_CCKM_KRK 6
710 #define ATH6KL_CIPHER_NONE 7 /* pseudo value */
715 #define ATH6KL_RATE_MAXSIZE 15 /* max rates we'll handle */
717 #define ATH_OUI_TYPE 0x01
718 #define WPA_OUI_TYPE 0x01
719 #define WMM_PARAM_OUI_SUBTYPE 0x01
720 #define WMM_OUI_TYPE 0x02
721 #define WSC_OUT_TYPE 0x04
723 enum wmi_connect_ctrl_flags_bits
{
724 CONNECT_ASSOC_POLICY_USER
= 0x0001,
725 CONNECT_SEND_REASSOC
= 0x0002,
726 CONNECT_IGNORE_WPAx_GROUP_CIPHER
= 0x0004,
727 CONNECT_PROFILE_MATCH_DONE
= 0x0008,
728 CONNECT_IGNORE_AAC_BEACON
= 0x0010,
729 CONNECT_CSA_FOLLOW_BSS
= 0x0020,
730 CONNECT_DO_WPA_OFFLOAD
= 0x0040,
731 CONNECT_DO_NOT_DEAUTH
= 0x0080,
732 CONNECT_WPS_FLAG
= 0x0100,
735 struct wmi_connect_cmd
{
739 u8 prwise_crypto_type
;
740 u8 prwise_crypto_len
;
744 u8 ssid
[IEEE80211_MAX_SSID_LEN
];
751 /* WMI_RECONNECT_CMDID */
752 struct wmi_reconnect_cmd
{
756 /* mandatory if set */
760 /* WMI_ADD_CIPHER_KEY_CMDID */
762 PAIRWISE_USAGE
= 0x00,
765 /* default Tx Key - static WEP only */
771 * Bit 0 - Initialise TSC - default is Initialize
773 #define KEY_OP_INIT_TSC 0x01
774 #define KEY_OP_INIT_RSC 0x02
776 /* default initialise the TSC & RSC */
777 #define KEY_OP_INIT_VAL 0x03
778 #define KEY_OP_VALID_MASK 0x03
780 struct wmi_add_cipher_key_cmd
{
789 /* key replay sequence counter */
792 u8 key
[WLAN_MAX_KEY_LEN
];
794 /* additional key control info */
797 u8 key_mac_addr
[ETH_ALEN
];
800 /* WMI_DELETE_CIPHER_KEY_CMDID */
801 struct wmi_delete_cipher_key_cmd
{
805 #define WMI_KRK_LEN 16
807 /* WMI_ADD_KRK_CMDID */
808 struct wmi_add_krk_cmd
{
812 /* WMI_SETPMKID_CMDID */
814 #define WMI_PMKID_LEN 16
816 enum pmkid_enable_flg
{
821 struct wmi_setpmkid_cmd
{
824 /* enum pmkid_enable_flg */
827 u8 pmkid
[WMI_PMKID_LEN
];
830 /* WMI_START_SCAN_CMD */
836 struct wmi_supp_rates
{
838 u8 rates
[ATH6KL_RATE_MAXSIZE
];
841 struct wmi_begin_scan_cmd
{
842 __le32 force_fg_scan
;
844 /* for legacy cisco AP compatibility */
847 /* max duration in the home channel(msec) */
848 __le32 home_dwell_time
;
850 /* time interval between scans (msec) */
851 __le32 force_scan_intvl
;
856 /* enum wmi_scan_type */
859 /* Supported rates to advertise in the probe request frames */
860 struct wmi_supp_rates supp_rates
[ATH6KL_NUM_BANDS
];
862 /* how many channels follow */
865 /* channels in Mhz */
869 /* wmi_start_scan_cmd is to be deprecated. Use
870 * wmi_begin_scan_cmd instead. The new structure supports P2P mgmt
871 * operations using station interface.
873 struct wmi_start_scan_cmd
{
874 __le32 force_fg_scan
;
876 /* for legacy cisco AP compatibility */
879 /* max duration in the home channel(msec) */
880 __le32 home_dwell_time
;
882 /* time interval between scans (msec) */
883 __le32 force_scan_intvl
;
885 /* enum wmi_scan_type */
888 /* how many channels follow */
891 /* channels in Mhz */
896 * Warning: scan control flag value of 0xFF is used to disable
897 * all flags in WMI_SCAN_PARAMS_CMD. Do not add any more
900 enum wmi_scan_ctrl_flags_bits
{
902 /* set if can scan in the connect cmd */
903 CONNECT_SCAN_CTRL_FLAGS
= 0x01,
905 /* set if scan for the SSID it is already connected to */
906 SCAN_CONNECTED_CTRL_FLAGS
= 0x02,
908 /* set if enable active scan */
909 ACTIVE_SCAN_CTRL_FLAGS
= 0x04,
911 /* set if enable roam scan when bmiss and lowrssi */
912 ROAM_SCAN_CTRL_FLAGS
= 0x08,
914 /* set if follows customer BSSINFO reporting rule */
915 REPORT_BSSINFO_CTRL_FLAGS
= 0x10,
917 /* if disabled, target doesn't scan after a disconnect event */
918 ENABLE_AUTO_CTRL_FLAGS
= 0x20,
921 * Scan complete event with canceled status will be generated when
922 * a scan is prempted before it gets completed.
924 ENABLE_SCAN_ABORT_EVENT
= 0x40
927 struct wmi_scan_params_cmd
{
929 __le16 fg_start_period
;
932 __le16 fg_end_period
;
938 __le16 maxact_chdwell_time
;
941 __le16 pas_chdwell_time
;
943 /* how many shorts scan for one long */
949 __le16 minact_chdwell_time
;
951 /* max active scans per ssid */
952 __le16 maxact_scan_per_ssid
;
955 __le32 max_dfsch_act_time
;
958 /* WMI_ENABLE_SCHED_SCAN_CMDID */
959 struct wmi_enable_sched_scan_cmd
{
963 /* WMI_SET_BSS_FILTER_CMDID */
964 enum wmi_bss_filter
{
965 /* no beacons forwarded */
966 NONE_BSS_FILTER
= 0x0,
968 /* all beacons forwarded */
971 /* only beacons matching profile */
974 /* all but beacons matching profile */
975 ALL_BUT_PROFILE_FILTER
,
977 /* only beacons matching current BSS */
980 /* all but beacons matching BSS */
983 /* beacons matching probed ssid */
986 /* beacons matching matched ssid */
993 struct wmi_bss_filter_cmd
{
994 /* see, enum wmi_bss_filter */
1006 /* WMI_SET_PROBED_SSID_CMDID */
1007 #define MAX_PROBED_SSIDS 16
1009 enum wmi_ssid_flag
{
1010 /* disables entry */
1011 DISABLE_SSID_FLAG
= 0,
1013 /* probes specified ssid */
1014 SPECIFIC_SSID_FLAG
= 0x01,
1016 /* probes for any ssid */
1017 ANY_SSID_FLAG
= 0x02,
1019 /* match for ssid */
1020 MATCH_SSID_FLAG
= 0x08,
1023 struct wmi_probed_ssid_cmd
{
1024 /* 0 to MAX_PROBED_SSIDS - 1 */
1027 /* see, enum wmi_ssid_flg */
1031 u8 ssid
[IEEE80211_MAX_SSID_LEN
];
1035 * WMI_SET_LISTEN_INT_CMDID
1036 * The Listen interval is between 15 and 3000 TUs
1038 struct wmi_listen_int_cmd
{
1039 __le16 listen_intvl
;
1043 /* WMI_SET_BMISS_TIME_CMDID */
1044 struct wmi_bmiss_time_cmd
{
1049 /* WMI_STA_ENHANCE_BMISS_CMDID */
1050 struct wmi_sta_bmiss_enhance_cmd
{
1054 struct wmi_set_regdomain_cmd
{
1059 /* WMI_SET_POWER_MODE_CMDID */
1060 enum wmi_power_mode
{
1065 struct wmi_power_mode_cmd
{
1066 /* see, enum wmi_power_mode */
1071 * Policy to determnine whether power save failure event should be sent to
1072 * host during scanning
1074 enum power_save_fail_event_policy
{
1075 SEND_POWER_SAVE_FAIL_EVENT_ALWAYS
= 1,
1076 IGNORE_PS_FAIL_DURING_SCAN
= 2,
1079 struct wmi_power_params_cmd
{
1083 __le16 pspoll_number
;
1085 __le16 tx_wakeup_policy
;
1086 __le16 num_tx_to_wakeup
;
1087 __le16 ps_fail_event_policy
;
1091 * Ratemask for below modes should be passed
1092 * to WMI_SET_TX_SELECT_RATES_CMDID.
1093 * AR6003 has 32 bit mask for each modes.
1094 * First 12 bits for legacy rates, 13 to 20
1095 * bits for HT 20 rates and 21 to 28 bits for
1099 WMI_RATES_MODE_11A
= 0,
1102 WMI_RATES_MODE_11GONLY
,
1103 WMI_RATES_MODE_11A_HT20
,
1104 WMI_RATES_MODE_11G_HT20
,
1105 WMI_RATES_MODE_11A_HT40
,
1106 WMI_RATES_MODE_11G_HT40
,
1110 /* WMI_SET_TX_SELECT_RATES_CMDID */
1111 struct wmi_set_tx_select_rates32_cmd
{
1112 __le32 ratemask
[WMI_RATES_MODE_MAX
];
1115 /* WMI_SET_TX_SELECT_RATES_CMDID */
1116 struct wmi_set_tx_select_rates64_cmd
{
1117 __le64 ratemask
[WMI_RATES_MODE_MAX
];
1120 /* WMI_SET_DISC_TIMEOUT_CMDID */
1121 struct wmi_disc_timeout_cmd
{
1132 enum voiceps_cap_type
{
1133 DISABLE_FOR_THIS_AC
= 0,
1134 ENABLE_FOR_THIS_AC
= 1,
1135 ENABLE_FOR_ALL_AC
= 2,
1139 TRAFFIC_TYPE_APERIODIC
= 0,
1140 TRAFFIC_TYPE_PERIODIC
= 1,
1143 /* WMI_SYNCHRONIZE_CMDID */
1144 struct wmi_sync_cmd
{
1148 /* WMI_CREATE_PSTREAM_CMDID */
1149 struct wmi_create_pstream_cmd
{
1151 __le32 min_service_int
;
1154 __le32 max_service_int
;
1157 __le32 inactivity_int
;
1160 __le32 suspension_int
;
1162 __le32 service_start_time
;
1165 __le32 min_data_rate
;
1168 __le32 mean_data_rate
;
1171 __le32 peak_data_rate
;
1173 __le32 max_burst_size
;
1177 __le32 min_phy_rate
;
1183 __le16 nominal_msdu
;
1190 /* see, enum dir_type */
1195 /* see, enum traffic_type */
1198 /* see, enum voiceps_cap_type */
1202 /* 802.1D user priority */
1205 /* nominal phy rate */
1209 /* WMI_DELETE_PSTREAM_CMDID */
1210 struct wmi_delete_pstream_cmd
{
1218 /* WMI_SET_CHANNEL_PARAMS_CMDID */
1222 WMI_11AG_MODE
= 0x3,
1224 WMI_11GONLY_MODE
= 0x5,
1228 #define WMI_MAX_CHANNELS 32
1231 * WMI_RSSI_THRESHOLD_PARAMS_CMDID
1232 * Setting the polltime to 0 would disable polling. Threshold values are
1233 * in the ascending order, and should agree to:
1234 * (lowThreshold_lowerVal < lowThreshold_upperVal < highThreshold_lowerVal
1235 * < highThreshold_upperVal)
1238 struct wmi_rssi_threshold_params_cmd
{
1239 /* polling time as a factor of LI */
1242 /* lowest of upper */
1243 a_sle16 thresh_above1_val
;
1245 a_sle16 thresh_above2_val
;
1246 a_sle16 thresh_above3_val
;
1247 a_sle16 thresh_above4_val
;
1248 a_sle16 thresh_above5_val
;
1250 /* highest of upper */
1251 a_sle16 thresh_above6_val
;
1253 /* lowest of bellow */
1254 a_sle16 thresh_below1_val
;
1256 a_sle16 thresh_below2_val
;
1257 a_sle16 thresh_below3_val
;
1258 a_sle16 thresh_below4_val
;
1259 a_sle16 thresh_below5_val
;
1261 /* highest of bellow */
1262 a_sle16 thresh_below6_val
;
1271 * WMI_SNR_THRESHOLD_PARAMS_CMDID
1272 * Setting the polltime to 0 would disable polling.
1275 struct wmi_snr_threshold_params_cmd
{
1276 /* polling time as a factor of LI */
1282 /* lowest of uppper */
1283 u8 thresh_above1_val
;
1285 u8 thresh_above2_val
;
1286 u8 thresh_above3_val
;
1288 /* highest of upper */
1289 u8 thresh_above4_val
;
1291 /* lowest of bellow */
1292 u8 thresh_below1_val
;
1294 u8 thresh_below2_val
;
1295 u8 thresh_below3_val
;
1297 /* highest of bellow */
1298 u8 thresh_below4_val
;
1303 /* Don't report BSSs with signal (RSSI) below this threshold */
1304 struct wmi_set_rssi_filter_cmd
{
1308 enum wmi_preamble_policy
{
1309 WMI_IGNORE_BARKER_IN_ERP
= 0,
1310 WMI_FOLLOW_BARKER_IN_ERP
,
1313 struct wmi_set_lpreamble_cmd
{
1318 struct wmi_set_rts_cmd
{
1322 /* WMI_SET_TX_PWR_CMDID */
1323 struct wmi_set_tx_pwr_cmd
{
1328 struct wmi_tx_pwr_reply
{
1333 struct wmi_report_sleep_state_event
{
1337 enum wmi_report_sleep_status
{
1338 WMI_REPORT_SLEEP_STATUS_IS_DEEP_SLEEP
= 0,
1339 WMI_REPORT_SLEEP_STATUS_IS_AWAKE
1341 enum target_event_report_config
{
1343 DISCONN_EVT_IN_RECONN
= 0,
1345 NO_DISCONN_EVT_IN_RECONN
1348 struct wmi_mcast_filter_cmd
{
1349 u8 mcast_all_enable
;
1352 #define ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE 6
1353 struct wmi_mcast_filter_add_del_cmd
{
1354 u8 mcast_mac
[ATH6KL_MCAST_FILTER_MAC_ADDR_SIZE
];
1357 struct wmi_set_htcap_cmd
{
1363 u8 intolerant_40mhz
;
1364 u8 max_ampdu_len_exp
;
1367 /* Command Replies */
1369 /* WMI_GET_CHANNEL_LIST_CMDID reply */
1370 struct wmi_channel_list_reply
{
1373 /* number of channels in reply */
1376 /* channel in Mhz */
1380 /* List of Events (target to host) */
1382 WMI_READY_EVENTID
= 0x1001,
1383 WMI_CONNECT_EVENTID
,
1384 WMI_DISCONNECT_EVENTID
,
1385 WMI_BSSINFO_EVENTID
,
1386 WMI_CMDERROR_EVENTID
,
1387 WMI_REGDOMAIN_EVENTID
,
1388 WMI_PSTREAM_TIMEOUT_EVENTID
,
1389 WMI_NEIGHBOR_REPORT_EVENTID
,
1390 WMI_TKIP_MICERR_EVENTID
,
1391 WMI_SCAN_COMPLETE_EVENTID
, /* 0x100a */
1392 WMI_REPORT_STATISTICS_EVENTID
,
1393 WMI_RSSI_THRESHOLD_EVENTID
,
1394 WMI_ERROR_REPORT_EVENTID
,
1395 WMI_OPT_RX_FRAME_EVENTID
,
1396 WMI_REPORT_ROAM_TBL_EVENTID
,
1397 WMI_EXTENSION_EVENTID
,
1399 WMI_SNR_THRESHOLD_EVENTID
,
1400 WMI_LQ_THRESHOLD_EVENTID
,
1401 WMI_TX_RETRY_ERR_EVENTID
, /* 0x1014 */
1402 WMI_REPORT_ROAM_DATA_EVENTID
,
1405 WMI_GET_WOW_LIST_EVENTID
,
1406 WMI_GET_PMKID_LIST_EVENTID
,
1407 WMI_CHANNEL_CHANGE_EVENTID
,
1408 WMI_PEER_NODE_EVENTID
,
1410 WMI_DTIMEXPIRY_EVENTID
,
1411 WMI_WLAN_VERSION_EVENTID
,
1412 WMI_SET_PARAMS_REPLY_EVENTID
,
1413 WMI_ADDBA_REQ_EVENTID
, /*0x1020 */
1414 WMI_ADDBA_RESP_EVENTID
,
1415 WMI_DELBA_REQ_EVENTID
,
1416 WMI_TX_COMPLETE_EVENTID
,
1417 WMI_HCI_EVENT_EVENTID
,
1418 WMI_ACL_DATA_EVENTID
,
1419 WMI_REPORT_SLEEP_STATE_EVENTID
,
1420 WMI_REPORT_BTCOEX_STATS_EVENTID
,
1421 WMI_REPORT_BTCOEX_CONFIG_EVENTID
,
1422 WMI_GET_PMK_EVENTID
,
1425 WMI_DFS_HOST_ATTACH_EVENTID
,
1426 WMI_DFS_HOST_INIT_EVENTID
,
1427 WMI_DFS_RESET_DELAYLINES_EVENTID
,
1428 WMI_DFS_RESET_RADARQ_EVENTID
,
1429 WMI_DFS_RESET_AR_EVENTID
,
1430 WMI_DFS_RESET_ARQ_EVENTID
,
1431 WMI_DFS_SET_DUR_MULTIPLIER_EVENTID
,
1432 WMI_DFS_SET_BANGRADAR_EVENTID
,
1433 WMI_DFS_SET_DEBUGLEVEL_EVENTID
,
1434 WMI_DFS_PHYERR_EVENTID
,
1437 WMI_CCX_RM_STATUS_EVENTID
,
1440 WMI_P2P_GO_NEG_RESULT_EVENTID
,
1442 WMI_WAC_SCAN_DONE_EVENTID
,
1443 WMI_WAC_REPORT_BSS_EVENTID
,
1444 WMI_WAC_START_WPS_EVENTID
,
1445 WMI_WAC_CTRL_REQ_REPLY_EVENTID
,
1447 WMI_REPORT_WMM_PARAMS_EVENTID
,
1448 WMI_WAC_REJECT_WPS_EVENTID
,
1450 /* More P2P Events */
1451 WMI_P2P_GO_NEG_REQ_EVENTID
,
1452 WMI_P2P_INVITE_REQ_EVENTID
,
1453 WMI_P2P_INVITE_RCVD_RESULT_EVENTID
,
1454 WMI_P2P_INVITE_SENT_RESULT_EVENTID
,
1455 WMI_P2P_PROV_DISC_RESP_EVENTID
,
1456 WMI_P2P_PROV_DISC_REQ_EVENTID
,
1459 WMI_RFKILL_STATE_CHANGE_EVENTID
,
1460 WMI_RFKILL_GET_MODE_CMD_EVENTID
,
1462 WMI_P2P_START_SDPD_EVENTID
,
1463 WMI_P2P_SDPD_RX_EVENTID
,
1465 WMI_SET_HOST_SLEEP_MODE_CMD_PROCESSED_EVENTID
= 0x1047,
1467 WMI_THIN_RESERVED_START_EVENTID
= 0x8000,
1468 /* Events in this range are reserved for thinmode */
1469 WMI_THIN_RESERVED_END_EVENTID
= 0x8fff,
1471 WMI_SET_CHANNEL_EVENTID
,
1472 WMI_ASSOC_REQ_EVENTID
,
1474 /* Generic ACS event */
1476 WMI_STORERECALL_STORE_EVENTID
,
1477 WMI_WOW_EXT_WAKE_EVENTID
,
1478 WMI_GTK_OFFLOAD_STATUS_EVENTID
,
1479 WMI_NETWORK_LIST_OFFLOAD_EVENTID
,
1480 WMI_REMAIN_ON_CHNL_EVENTID
,
1481 WMI_CANCEL_REMAIN_ON_CHNL_EVENTID
,
1482 WMI_TX_STATUS_EVENTID
,
1483 WMI_RX_PROBE_REQ_EVENTID
,
1484 WMI_P2P_CAPABILITIES_EVENTID
,
1485 WMI_RX_ACTION_EVENTID
,
1486 WMI_P2P_INFO_EVENTID
,
1489 WMI_WPS_GET_STATUS_EVENTID
,
1490 WMI_WPS_PROFILE_EVENTID
,
1492 /* more P2P events */
1493 WMI_NOA_INFO_EVENTID
,
1494 WMI_OPPPS_INFO_EVENTID
,
1495 WMI_PORT_STATUS_EVENTID
,
1498 WMI_GET_RSN_CAP_EVENTID
,
1500 WMI_TXE_NOTIFY_EVENTID
,
1503 struct wmi_ready_event_2
{
1506 u8 mac_addr
[ETH_ALEN
];
1510 /* WMI_PHY_CAPABILITY */
1514 WMI_11AG_CAP
= 0x03,
1515 WMI_11AN_CAP
= 0x04,
1516 WMI_11GN_CAP
= 0x05,
1517 WMI_11AGN_CAP
= 0x06,
1521 struct wmi_connect_event
{
1526 __le16 listen_intvl
;
1527 __le16 beacon_intvl
;
1533 u8 mac_addr
[ETH_ALEN
];
1552 /* Disconnect Event */
1553 enum wmi_disconnect_reason
{
1554 NO_NETWORK_AVAIL
= 0x01,
1559 DISCONNECT_CMD
= 0x03,
1560 BSS_DISCONNECTED
= 0x04,
1562 ASSOC_FAILED
= 0x06,
1563 NO_RESOURCES_AVAIL
= 0x07,
1564 CSERV_DISCONNECT
= 0x08,
1565 INVALID_PROFILE
= 0x0a,
1566 DOT11H_CHANNEL_SWITCH
= 0x0b,
1567 PROFILE_MISMATCH
= 0x0c,
1568 CONNECTION_EVICTED
= 0x0d,
1572 /* AP mode disconnect proto_reasons */
1573 enum ap_disconnect_reason
{
1574 WMI_AP_REASON_STA_LEFT
= 101,
1575 WMI_AP_REASON_FROM_HOST
= 102,
1576 WMI_AP_REASON_COMM_TIMEOUT
= 103,
1577 WMI_AP_REASON_MAX_STA
= 104,
1578 WMI_AP_REASON_ACL
= 105,
1579 WMI_AP_REASON_STA_ROAM
= 106,
1580 WMI_AP_REASON_DFS_CHANNEL
= 107,
1583 #define ATH6KL_COUNTRY_RD_SHIFT 16
1585 struct ath6kl_wmi_regdomain
{
1589 struct wmi_disconnect_event
{
1590 /* reason code, see 802.11 spec. */
1591 __le16 proto_reason_status
;
1596 /* see WMI_DISCONNECT_REASON */
1605 * Mechanism used to inform host of the presence and characteristic of
1606 * wireless networks present. Consists of bss info header followed by
1607 * the beacon or probe-response frame body. The 802.11 header is no included.
1616 #define DEF_LRSSI_SCAN_PERIOD 5
1617 #define DEF_LRSSI_ROAM_THRESHOLD 20
1618 #define DEF_LRSSI_ROAM_FLOOR 60
1619 #define DEF_SCAN_FOR_ROAM_INTVL 2
1621 enum wmi_roam_ctrl
{
1625 WMI_SET_LRSSI_SCAN_PARAMS
,
1628 enum wmi_roam_mode
{
1629 WMI_DEFAULT_ROAM_MODE
= 1, /* RSSI based roam */
1630 WMI_HOST_BIAS_ROAM_MODE
= 2, /* Host bias based roam */
1631 WMI_LOCK_BSS_MODE
= 3, /* Lock to the current BSS */
1639 struct bss_bias_info
{
1641 struct bss_bias bss_bias
[0];
1644 struct low_rssi_scan_params
{
1645 __le16 lrssi_scan_period
;
1646 a_sle16 lrssi_scan_threshold
;
1647 a_sle16 lrssi_roam_threshold
;
1652 struct roam_ctrl_cmd
{
1654 u8 bssid
[ETH_ALEN
]; /* WMI_FORCE_ROAM */
1655 u8 roam_mode
; /* WMI_SET_ROAM_MODE */
1656 struct bss_bias_info bss
; /* WMI_SET_HOST_BIAS */
1657 struct low_rssi_scan_params params
; /* WMI_SET_LRSSI_SCAN_PARAMS
1663 struct set_beacon_int_cmd
{
1664 __le32 beacon_intvl
;
1667 struct set_dtim_cmd
{
1671 /* BSS INFO HDR version 2.0 */
1672 struct wmi_bss_info_hdr2
{
1673 __le16 ch
; /* frequency in MHz */
1675 /* see, enum wmi_bi_ftype */
1678 u8 snr
; /* note: rssi = snr - 95 dBm */
1683 /* Command Error Event */
1684 enum wmi_error_code
{
1685 INVALID_PARAM
= 0x01,
1686 ILLEGAL_STATE
= 0x02,
1687 INTERNAL_ERROR
= 0x03,
1690 struct wmi_cmd_error_event
{
1695 struct wmi_pstream_timeout_event
{
1703 * The WMI_NEIGHBOR_REPORT Event is generated by the target to inform
1704 * the host of BSS's it has found that matches the current profile.
1705 * It can be used by the host to cache PMKs and/to initiate pre-authentication
1706 * if the BSS supports it. The first bssid is always the current associated
1708 * The bssid and bssFlags information repeats according to the number
1711 enum wmi_bss_flags
{
1712 WMI_DEFAULT_BSS_FLAGS
= 0x00,
1713 WMI_PREAUTH_CAPABLE_BSS
= 0x01,
1714 WMI_PMKID_VALID_BSS
= 0x02,
1717 struct wmi_neighbor_info
{
1719 u8 bss_flags
; /* enum wmi_bss_flags */
1722 struct wmi_neighbor_report_event
{
1724 struct wmi_neighbor_info neighbor
[0];
1727 /* TKIP MIC Error Event */
1728 struct wmi_tkip_micerr_event
{
1733 enum wmi_scan_status
{
1734 WMI_SCAN_STATUS_SUCCESS
= 0,
1737 /* WMI_SCAN_COMPLETE_EVENTID */
1738 struct wmi_scan_complete_event
{
1742 #define MAX_OPT_DATA_LEN 1400
1745 * Special frame receive Event.
1746 * Mechanism used to inform host of the receiption of the special frames.
1747 * Consists of special frame info header followed by special frame body.
1748 * The 802.11 header is not included.
1750 struct wmi_opt_rx_info_hdr
{
1754 u8 src_addr
[ETH_ALEN
];
1758 /* Reporting statistic */
1768 __le32 rts_success_cnt
;
1769 __le32 pkt_per_ac
[4];
1770 __le32 err_per_ac
[4];
1775 __le32 mult_retry_cnt
;
1776 __le32 rts_fail_cnt
;
1793 __le32 key_cache_miss
;
1799 #define RATE_INDEX_WITHOUT_SGI_MASK 0x7f
1800 #define RATE_INDEX_MSB 0x80
1802 struct tkip_ccmp_stats
{
1803 __le32 tkip_local_mic_fail
;
1804 __le32 tkip_cnter_measures_invoked
;
1805 __le32 tkip_replays
;
1806 __le32 tkip_fmt_err
;
1807 __le32 ccmp_fmt_err
;
1808 __le32 ccmp_replays
;
1812 __le32 pwr_save_failure_cnt
;
1813 __le16 stop_tx_failure_cnt
;
1814 __le16 atim_tx_failure_cnt
;
1815 __le16 atim_rx_failure_cnt
;
1816 __le16 bcn_rx_failure_cnt
;
1819 struct cserv_stats
{
1820 __le32 cs_bmiss_cnt
;
1821 __le32 cs_low_rssi_cnt
;
1822 __le16 cs_connect_cnt
;
1823 __le16 cs_discon_cnt
;
1824 a_sle16 cs_ave_beacon_rssi
;
1825 __le16 cs_roam_count
;
1828 u8 cs_ave_beacon_snr
;
1829 u8 cs_last_roam_msec
;
1832 struct wlan_net_stats
{
1835 struct tkip_ccmp_stats tkip_ccmp_stats
;
1839 __le32 arp_received
;
1844 struct wlan_wow_stats
{
1845 __le32 wow_pkt_dropped
;
1846 __le16 wow_evt_discarded
;
1847 u8 wow_host_pkt_wakeups
;
1848 u8 wow_host_evt_wakeups
;
1851 struct wmi_target_stats
{
1853 a_sle32 noise_floor_calib
;
1854 struct pm_stats pm_stats
;
1855 struct wlan_net_stats stats
;
1856 struct wlan_wow_stats wow_stats
;
1857 struct arp_stats arp_stats
;
1858 struct cserv_stats cserv_stats
;
1862 * WMI_RSSI_THRESHOLD_EVENTID.
1863 * Indicate the RSSI events to host. Events are indicated when we breach a
1866 enum wmi_rssi_threshold_val
{
1867 WMI_RSSI_THRESHOLD1_ABOVE
= 0,
1868 WMI_RSSI_THRESHOLD2_ABOVE
,
1869 WMI_RSSI_THRESHOLD3_ABOVE
,
1870 WMI_RSSI_THRESHOLD4_ABOVE
,
1871 WMI_RSSI_THRESHOLD5_ABOVE
,
1872 WMI_RSSI_THRESHOLD6_ABOVE
,
1873 WMI_RSSI_THRESHOLD1_BELOW
,
1874 WMI_RSSI_THRESHOLD2_BELOW
,
1875 WMI_RSSI_THRESHOLD3_BELOW
,
1876 WMI_RSSI_THRESHOLD4_BELOW
,
1877 WMI_RSSI_THRESHOLD5_BELOW
,
1878 WMI_RSSI_THRESHOLD6_BELOW
1881 struct wmi_rssi_threshold_event
{
1886 enum wmi_snr_threshold_val
{
1887 WMI_SNR_THRESHOLD1_ABOVE
= 1,
1888 WMI_SNR_THRESHOLD1_BELOW
,
1889 WMI_SNR_THRESHOLD2_ABOVE
,
1890 WMI_SNR_THRESHOLD2_BELOW
,
1891 WMI_SNR_THRESHOLD3_ABOVE
,
1892 WMI_SNR_THRESHOLD3_BELOW
,
1893 WMI_SNR_THRESHOLD4_ABOVE
,
1894 WMI_SNR_THRESHOLD4_BELOW
1897 struct wmi_snr_threshold_event
{
1898 /* see, enum wmi_snr_threshold_val */
1904 /* WMI_REPORT_ROAM_TBL_EVENTID */
1905 #define MAX_ROAM_TBL_CAND 5
1907 struct wmi_bss_roam_info
{
1920 struct wmi_target_roam_tbl
{
1923 struct wmi_bss_roam_info info
[];
1926 /* WMI_CAC_EVENTID */
1927 enum cac_indication
{
1928 CAC_INDICATION_ADMISSION
= 0x00,
1929 CAC_INDICATION_ADMISSION_RESP
= 0x01,
1930 CAC_INDICATION_DELETE
= 0x02,
1931 CAC_INDICATION_NO_RESP
= 0x03,
1934 #define WMM_TSPEC_IE_LEN 63
1936 struct wmi_cac_event
{
1940 u8 tspec_suggestion
[WMM_TSPEC_IE_LEN
];
1943 /* WMI_APLIST_EVENTID */
1949 struct wmi_ap_info_v1
{
1955 struct wmi_ap_info_v1 ap_info_v1
;
1958 struct wmi_aplist_event
{
1961 union wmi_ap_info ap_list
[1];
1964 /* Developer Commands */
1967 * WMI_SET_BITRATE_CMDID
1969 * Get bit rate cmd uses same definition as set bit rate cmd
2003 struct wmi_bit_rate_reply
{
2004 /* see, enum wmi_bit_rate */
2009 * WMI_SET_FIXRATES_CMDID
2011 * Get fix rates cmd uses same definition as set fix rates cmd
2013 struct wmi_fix_rates_reply
{
2014 /* see wmi_bit_rate */
2015 __le32 fix_rate_mask
;
2018 enum roam_data_type
{
2019 /* get the roam time data */
2023 struct wmi_target_roam_time
{
2024 __le32 disassoc_time
;
2025 __le32 no_txrx_time
;
2027 __le32 allow_txrx_time
;
2028 u8 disassoc_bssid
[ETH_ALEN
];
2029 s8 disassoc_bss_rssi
;
2030 u8 assoc_bssid
[ETH_ALEN
];
2035 WMI_TXOP_DISABLED
= 0,
2039 struct wmi_set_wmm_txop_cmd
{
2043 struct wmi_set_keepalive_cmd
{
2044 u8 keep_alive_intvl
;
2047 struct wmi_get_keepalive_cmd
{
2049 u8 keep_alive_intvl
;
2052 struct wmi_set_appie_cmd
{
2053 u8 mgmt_frm_type
; /* enum wmi_mgmt_frame_type */
2058 struct wmi_set_ie_cmd
{
2060 u8 ie_field
; /* enum wmi_ie_field_type */
2066 /* Notify the WSC registration status to the target */
2067 #define WSC_REG_ACTIVE 1
2068 #define WSC_REG_INACTIVE 0
2070 #define WOW_MAX_FILTERS_PER_LIST 4
2071 #define WOW_PATTERN_SIZE 64
2073 #define MAC_MAX_FILTERS_PER_LIST 4
2076 u8 wow_valid_filter
;
2079 u8 wow_filter_offset
;
2080 u8 wow_filter_mask
[WOW_PATTERN_SIZE
];
2081 u8 wow_filter_pattern
[WOW_PATTERN_SIZE
];
2084 #define MAX_IP_ADDRS 2
2086 struct wmi_set_ip_cmd
{
2087 /* IP in network byte order */
2088 __be32 ips
[MAX_IP_ADDRS
];
2091 enum ath6kl_wow_filters
{
2092 WOW_FILTER_SSID
= BIT(1),
2093 WOW_FILTER_OPTION_MAGIC_PACKET
= BIT(2),
2094 WOW_FILTER_OPTION_EAP_REQ
= BIT(3),
2095 WOW_FILTER_OPTION_PATTERNS
= BIT(4),
2096 WOW_FILTER_OPTION_OFFLOAD_ARP
= BIT(5),
2097 WOW_FILTER_OPTION_OFFLOAD_NS
= BIT(6),
2098 WOW_FILTER_OPTION_OFFLOAD_GTK
= BIT(7),
2099 WOW_FILTER_OPTION_8021X_4WAYHS
= BIT(8),
2100 WOW_FILTER_OPTION_NLO_DISCVRY
= BIT(9),
2101 WOW_FILTER_OPTION_NWK_DISASSOC
= BIT(10),
2102 WOW_FILTER_OPTION_GTK_ERROR
= BIT(11),
2103 WOW_FILTER_OPTION_TEST_MODE
= BIT(15),
2106 enum ath6kl_host_mode
{
2107 ATH6KL_HOST_MODE_AWAKE
,
2108 ATH6KL_HOST_MODE_ASLEEP
,
2111 struct wmi_set_host_sleep_mode_cmd
{
2116 enum ath6kl_wow_mode
{
2117 ATH6KL_WOW_MODE_DISABLE
,
2118 ATH6KL_WOW_MODE_ENABLE
,
2121 struct wmi_set_wow_mode_cmd
{
2124 __le16 host_req_delay
;
2127 struct wmi_add_wow_pattern_cmd
{
2134 struct wmi_del_wow_pattern_cmd
{
2135 __le16 filter_list_id
;
2139 /* WMI_SET_TXE_NOTIFY_CMDID */
2140 struct wmi_txe_notify_cmd
{
2146 /* WMI_TXE_NOTIFY_EVENTID */
2147 struct wmi_txe_notify_event
{
2152 /* WMI_SET_AKMP_PARAMS_CMD */
2155 u8 pmkid
[WMI_PMKID_LEN
];
2158 /* WMI_GET_PMKID_LIST_CMD Reply */
2159 struct wmi_pmkid_list_reply
{
2161 u8 bssid_list
[ETH_ALEN
][1];
2162 struct wmi_pmkid pmkid_list
[1];
2165 /* WMI_ADDBA_REQ_EVENTID */
2166 struct wmi_addba_req_event
{
2171 /* f/w response for ADDBA Req; OK (0) or failure (!=0) */
2175 /* WMI_ADDBA_RESP_EVENTID */
2176 struct wmi_addba_resp_event
{
2179 /* OK (0), failure (!=0) */
2182 /* three values: not supported(0), 3839, 8k */
2186 /* WMI_DELBA_EVENTID
2187 * f/w received a DELBA for peer and processed it.
2188 * Host is notified of this
2190 struct wmi_delba_event
{
2192 u8 is_peer_initiator
;
2196 #define PEER_NODE_JOIN_EVENT 0x00
2197 #define PEER_NODE_LEAVE_EVENT 0x01
2198 #define PEER_FIRST_NODE_JOIN_EVENT 0x10
2199 #define PEER_LAST_NODE_LEAVE_EVENT 0x11
2201 struct wmi_peer_node_event
{
2203 u8 peer_mac_addr
[ETH_ALEN
];
2206 /* Transmit complete event data structure(s) */
2208 /* version 1 of tx complete msg */
2209 struct tx_complete_msg_v1
{
2210 #define TX_COMPLETE_STATUS_SUCCESS 0
2211 #define TX_COMPLETE_STATUS_RETRIES 1
2212 #define TX_COMPLETE_STATUS_NOLINK 2
2213 #define TX_COMPLETE_STATUS_TIMEOUT 3
2214 #define TX_COMPLETE_STATUS_OTHER 4
2218 /* packet ID to identify parent packet */
2221 /* rate index on successful transmission */
2224 /* number of ACK failures in tx attempt */
2228 struct wmi_tx_complete_event
{
2229 /* no of tx comp msgs following this struct */
2232 /* length in bytes for each individual msg following this struct */
2235 /* version of tx complete msg data following this struct */
2238 /* individual messages follow this header */
2243 * ------- AP Mode definitions --------------
2248 * -Changing the following values needs compilation of both driver and firmware
2250 #define AP_MAX_NUM_STA 10
2252 /* Spl. AID used to set DTIM flag in the beacons */
2253 #define MCAST_AID 0xFF
2255 #define DEF_AP_COUNTRY_CODE "US "
2257 /* Used with WMI_AP_SET_NUM_STA_CMDID */
2260 * Used with WMI_AP_SET_MLME_CMDID
2264 #define WMI_AP_MLME_ASSOC 1 /* associate station */
2265 #define WMI_AP_DISASSOC 2 /* disassociate station */
2266 #define WMI_AP_DEAUTH 3 /* deauthenticate station */
2267 #define WMI_AP_MLME_AUTHORIZE 4 /* authorize station */
2268 #define WMI_AP_MLME_UNAUTHORIZE 5 /* unauthorize station */
2270 struct wmi_ap_set_mlme_cmd
{
2272 __le16 reason
; /* 802.11 reason code */
2273 u8 cmd
; /* operation to perform (WMI_AP_*) */
2276 struct wmi_ap_set_pvb_cmd
{
2282 struct wmi_rx_frame_format_cmd
{
2283 /* version of meta data for rx packets <0 = default> (0-7 = valid) */
2287 * 1 == leave .11 header intact,
2288 * 0 == replace .11 header with .3 <default>
2293 * 1 == defragmentation is performed by host,
2294 * 0 == performed by target <default>
2302 struct wmi_ap_hidden_ssid_cmd
{
2306 struct wmi_set_inact_period_cmd
{
2307 __le32 inact_period
;
2311 /* AP mode events */
2312 struct wmi_ap_set_apsd_cmd
{
2316 enum wmi_ap_apsd_buffered_traffic_flags
{
2317 WMI_AP_APSD_NO_DELIVERY_FRAMES
= 0x1,
2320 struct wmi_ap_apsd_buffered_traffic_cmd
{
2326 /* WMI_PS_POLL_EVENT */
2327 struct wmi_pspoll_event
{
2331 struct wmi_per_sta_stat
{
2343 struct wmi_ap_mode_stat
{
2345 struct wmi_per_sta_stat sta
[AP_MAX_NUM_STA
+ 1];
2348 /* End of AP mode definitions */
2350 struct wmi_remain_on_chnl_cmd
{
2355 /* wmi_send_action_cmd is to be deprecated. Use
2356 * wmi_send_mgmt_cmd instead. The new structure supports P2P mgmt
2357 * operations using station interface.
2359 struct wmi_send_action_cmd
{
2367 struct wmi_send_mgmt_cmd
{
2376 struct wmi_tx_status_event
{
2381 struct wmi_probe_req_report_cmd
{
2385 struct wmi_disable_11b_rates_cmd
{
2389 struct wmi_set_appie_extended_cmd
{
2396 struct wmi_remain_on_chnl_event
{
2401 struct wmi_cancel_remain_on_chnl_event
{
2407 struct wmi_rx_action_event
{
2413 struct wmi_p2p_capabilities_event
{
2418 struct wmi_p2p_rx_probe_req_event
{
2424 #define P2P_FLAG_CAPABILITIES_REQ (0x00000001)
2425 #define P2P_FLAG_MACADDR_REQ (0x00000002)
2426 #define P2P_FLAG_HMODEL_REQ (0x00000002)
2428 struct wmi_get_p2p_info
{
2429 __le32 info_req_flags
;
2432 struct wmi_p2p_info_event
{
2433 __le32 info_req_flags
;
2438 struct wmi_p2p_capabilities
{
2442 struct wmi_p2p_macaddr
{
2443 u8 mac_addr
[ETH_ALEN
];
2446 struct wmi_p2p_hmodel
{
2450 struct wmi_p2p_probe_response_cmd
{
2452 u8 destination_addr
[ETH_ALEN
];
2457 /* Extended WMI (WMIX)
2459 * Extended WMIX commands are encapsulated in a WMI message with
2460 * cmd=WMI_EXTENSION_CMD.
2462 * Extended WMI commands are those that are needed during wireless
2463 * operation, but which are not really wireless commands. This allows,
2464 * for instance, platform-specific commands. Extended WMI commands are
2465 * embedded in a WMI command message with WMI_COMMAND_ID=WMI_EXTENSION_CMDID.
2466 * Extended WMI events are similarly embedded in a WMI event message with
2467 * WMI_EVENT_ID=WMI_EXTENSION_EVENTID.
2469 struct wmix_cmd_hdr
{
2473 enum wmix_command_id
{
2474 WMIX_DSETOPEN_REPLY_CMDID
= 0x2001,
2475 WMIX_DSETDATA_REPLY_CMDID
,
2476 WMIX_GPIO_OUTPUT_SET_CMDID
,
2477 WMIX_GPIO_INPUT_GET_CMDID
,
2478 WMIX_GPIO_REGISTER_SET_CMDID
,
2479 WMIX_GPIO_REGISTER_GET_CMDID
,
2480 WMIX_GPIO_INTR_ACK_CMDID
,
2481 WMIX_HB_CHALLENGE_RESP_CMDID
,
2482 WMIX_DBGLOG_CFG_MODULE_CMDID
,
2483 WMIX_PROF_CFG_CMDID
, /* 0x200a */
2484 WMIX_PROF_ADDR_SET_CMDID
,
2485 WMIX_PROF_START_CMDID
,
2486 WMIX_PROF_STOP_CMDID
,
2487 WMIX_PROF_COUNT_GET_CMDID
,
2490 enum wmix_event_id
{
2491 WMIX_DSETOPENREQ_EVENTID
= 0x3001,
2492 WMIX_DSETCLOSE_EVENTID
,
2493 WMIX_DSETDATAREQ_EVENTID
,
2494 WMIX_GPIO_INTR_EVENTID
,
2495 WMIX_GPIO_DATA_EVENTID
,
2496 WMIX_GPIO_ACK_EVENTID
,
2497 WMIX_HB_CHALLENGE_RESP_EVENTID
,
2498 WMIX_DBGLOG_EVENTID
,
2499 WMIX_PROF_COUNT_EVENTID
,
2503 * ------Error Detection support-------
2507 * WMIX_HB_CHALLENGE_RESP_CMDID
2508 * Heartbeat Challenge Response command
2510 struct wmix_hb_challenge_resp_cmd
{
2515 struct ath6kl_wmix_dbglog_cfg_module_cmd
{
2520 /* End of Extended WMI (WMIX) */
2522 enum wmi_sync_flag
{
2523 NO_SYNC_WMIFLAG
= 0,
2525 /* transmit all queued data before cmd */
2526 SYNC_BEFORE_WMIFLAG
,
2528 /* any new data waits until cmd execs */
2537 enum htc_endpoint_id
ath6kl_wmi_get_control_ep(struct wmi
*wmi
);
2538 void ath6kl_wmi_set_control_ep(struct wmi
*wmi
, enum htc_endpoint_id ep_id
);
2539 int ath6kl_wmi_dix_2_dot3(struct wmi
*wmi
, struct sk_buff
*skb
);
2540 int ath6kl_wmi_data_hdr_add(struct wmi
*wmi
, struct sk_buff
*skb
,
2541 u8 msg_type
, u32 flags
,
2542 enum wmi_data_hdr_data_type data_type
,
2543 u8 meta_ver
, void *tx_meta_info
, u8 if_idx
);
2545 int ath6kl_wmi_dot11_hdr_remove(struct wmi
*wmi
, struct sk_buff
*skb
);
2546 int ath6kl_wmi_dot3_2_dix(struct sk_buff
*skb
);
2547 int ath6kl_wmi_implicit_create_pstream(struct wmi
*wmi
, u8 if_idx
,
2548 struct sk_buff
*skb
, u32 layer2_priority
,
2549 bool wmm_enabled
, u8
*ac
);
2551 int ath6kl_wmi_control_rx(struct wmi
*wmi
, struct sk_buff
*skb
);
2553 int ath6kl_wmi_cmd_send(struct wmi
*wmi
, u8 if_idx
, struct sk_buff
*skb
,
2554 enum wmi_cmd_id cmd_id
, enum wmi_sync_flag sync_flag
);
2556 int ath6kl_wmi_connect_cmd(struct wmi
*wmi
, u8 if_idx
,
2557 enum network_type nw_type
,
2558 enum dot11_auth_mode dot11_auth_mode
,
2559 enum auth_mode auth_mode
,
2560 enum crypto_type pairwise_crypto
,
2561 u8 pairwise_crypto_len
,
2562 enum crypto_type group_crypto
,
2563 u8 group_crypto_len
, int ssid_len
, u8
*ssid
,
2564 u8
*bssid
, u16 channel
, u32 ctrl_flags
,
2567 int ath6kl_wmi_reconnect_cmd(struct wmi
*wmi
, u8 if_idx
, u8
*bssid
,
2569 int ath6kl_wmi_disconnect_cmd(struct wmi
*wmi
, u8 if_idx
);
2571 int ath6kl_wmi_beginscan_cmd(struct wmi
*wmi
, u8 if_idx
,
2572 enum wmi_scan_type scan_type
,
2573 u32 force_fgscan
, u32 is_legacy
,
2574 u32 home_dwell_time
, u32 force_scan_interval
,
2575 s8 num_chan
, u16
*ch_list
, u32 no_cck
,
2577 int ath6kl_wmi_enable_sched_scan_cmd(struct wmi
*wmi
, u8 if_idx
, bool enable
);
2579 int ath6kl_wmi_scanparams_cmd(struct wmi
*wmi
, u8 if_idx
, u16 fg_start_sec
,
2580 u16 fg_end_sec
, u16 bg_sec
,
2581 u16 minact_chdw_msec
, u16 maxact_chdw_msec
,
2582 u16 pas_chdw_msec
, u8 short_scan_ratio
,
2583 u8 scan_ctrl_flag
, u32 max_dfsch_act_time
,
2584 u16 maxact_scan_per_ssid
);
2585 int ath6kl_wmi_bssfilter_cmd(struct wmi
*wmi
, u8 if_idx
, u8 filter
,
2587 int ath6kl_wmi_probedssid_cmd(struct wmi
*wmi
, u8 if_idx
, u8 index
, u8 flag
,
2588 u8 ssid_len
, u8
*ssid
);
2589 int ath6kl_wmi_listeninterval_cmd(struct wmi
*wmi
, u8 if_idx
,
2590 u16 listen_interval
,
2591 u16 listen_beacons
);
2592 int ath6kl_wmi_bmisstime_cmd(struct wmi
*wmi
, u8 if_idx
,
2593 u16 bmiss_time
, u16 num_beacons
);
2594 int ath6kl_wmi_powermode_cmd(struct wmi
*wmi
, u8 if_idx
, u8 pwr_mode
);
2595 int ath6kl_wmi_pmparams_cmd(struct wmi
*wmi
, u8 if_idx
, u16 idle_period
,
2596 u16 ps_poll_num
, u16 dtim_policy
,
2597 u16 tx_wakup_policy
, u16 num_tx_to_wakeup
,
2598 u16 ps_fail_event_policy
);
2599 int ath6kl_wmi_create_pstream_cmd(struct wmi
*wmi
, u8 if_idx
,
2600 struct wmi_create_pstream_cmd
*pstream
);
2601 int ath6kl_wmi_delete_pstream_cmd(struct wmi
*wmi
, u8 if_idx
, u8 traffic_class
,
2603 int ath6kl_wmi_disctimeout_cmd(struct wmi
*wmi
, u8 if_idx
, u8 timeout
);
2605 int ath6kl_wmi_set_rts_cmd(struct wmi
*wmi
, u16 threshold
);
2606 int ath6kl_wmi_set_lpreamble_cmd(struct wmi
*wmi
, u8 if_idx
, u8 status
,
2607 u8 preamble_policy
);
2609 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi
*wmi
, u32 cookie
, u32 source
);
2610 int ath6kl_wmi_config_debug_module_cmd(struct wmi
*wmi
, u32 valid
, u32 config
);
2612 int ath6kl_wmi_get_stats_cmd(struct wmi
*wmi
, u8 if_idx
);
2613 int ath6kl_wmi_addkey_cmd(struct wmi
*wmi
, u8 if_idx
, u8 key_index
,
2614 enum crypto_type key_type
,
2615 u8 key_usage
, u8 key_len
,
2616 u8
*key_rsc
, unsigned int key_rsc_len
,
2618 u8 key_op_ctrl
, u8
*mac_addr
,
2619 enum wmi_sync_flag sync_flag
);
2620 int ath6kl_wmi_add_krk_cmd(struct wmi
*wmi
, u8 if_idx
, u8
*krk
);
2621 int ath6kl_wmi_deletekey_cmd(struct wmi
*wmi
, u8 if_idx
, u8 key_index
);
2622 int ath6kl_wmi_setpmkid_cmd(struct wmi
*wmi
, u8 if_idx
, const u8
*bssid
,
2623 const u8
*pmkid
, bool set
);
2624 int ath6kl_wmi_set_tx_pwr_cmd(struct wmi
*wmi
, u8 if_idx
, u8 dbM
);
2625 int ath6kl_wmi_get_tx_pwr_cmd(struct wmi
*wmi
, u8 if_idx
);
2626 int ath6kl_wmi_get_roam_tbl_cmd(struct wmi
*wmi
);
2628 int ath6kl_wmi_set_wmm_txop(struct wmi
*wmi
, u8 if_idx
, enum wmi_txop_cfg cfg
);
2629 int ath6kl_wmi_set_keepalive_cmd(struct wmi
*wmi
, u8 if_idx
,
2630 u8 keep_alive_intvl
);
2631 int ath6kl_wmi_set_htcap_cmd(struct wmi
*wmi
, u8 if_idx
,
2632 enum ieee80211_band band
,
2633 struct ath6kl_htcap
*htcap
);
2634 int ath6kl_wmi_test_cmd(struct wmi
*wmi
, void *buf
, size_t len
);
2636 s32
ath6kl_wmi_get_rate(s8 rate_index
);
2638 int ath6kl_wmi_set_ip_cmd(struct wmi
*wmi
, u8 if_idx
,
2639 __be32 ips0
, __be32 ips1
);
2640 int ath6kl_wmi_set_host_sleep_mode_cmd(struct wmi
*wmi
, u8 if_idx
,
2641 enum ath6kl_host_mode host_mode
);
2642 int ath6kl_wmi_set_bitrate_mask(struct wmi
*wmi
, u8 if_idx
,
2643 const struct cfg80211_bitrate_mask
*mask
);
2644 int ath6kl_wmi_set_wow_mode_cmd(struct wmi
*wmi
, u8 if_idx
,
2645 enum ath6kl_wow_mode wow_mode
,
2646 u32 filter
, u16 host_req_delay
);
2647 int ath6kl_wmi_add_wow_pattern_cmd(struct wmi
*wmi
, u8 if_idx
,
2648 u8 list_id
, u8 filter_size
,
2649 u8 filter_offset
, const u8
*filter
,
2651 int ath6kl_wmi_del_wow_pattern_cmd(struct wmi
*wmi
, u8 if_idx
,
2652 u16 list_id
, u16 filter_id
);
2653 int ath6kl_wmi_set_rssi_filter_cmd(struct wmi
*wmi
, u8 if_idx
, s8 rssi
);
2654 int ath6kl_wmi_set_roam_lrssi_cmd(struct wmi
*wmi
, u8 lrssi
);
2655 int ath6kl_wmi_ap_set_dtim_cmd(struct wmi
*wmi
, u8 if_idx
, u32 dtim_period
);
2656 int ath6kl_wmi_ap_set_beacon_intvl_cmd(struct wmi
*wmi
, u8 if_idx
,
2657 u32 beacon_interval
);
2658 int ath6kl_wmi_force_roam_cmd(struct wmi
*wmi
, const u8
*bssid
);
2659 int ath6kl_wmi_set_roam_mode_cmd(struct wmi
*wmi
, enum wmi_roam_mode mode
);
2660 int ath6kl_wmi_mcast_filter_cmd(struct wmi
*wmi
, u8 if_idx
, bool mc_all_on
);
2661 int ath6kl_wmi_add_del_mcast_filter_cmd(struct wmi
*wmi
, u8 if_idx
,
2662 u8
*filter
, bool add_filter
);
2663 int ath6kl_wmi_sta_bmiss_enhance_cmd(struct wmi
*wmi
, u8 if_idx
, bool enable
);
2664 int ath6kl_wmi_set_txe_notify(struct wmi
*wmi
, u8 idx
,
2665 u32 rate
, u32 pkts
, u32 intvl
);
2666 int ath6kl_wmi_set_regdomain_cmd(struct wmi
*wmi
, const char *alpha2
);
2669 int ath6kl_wmi_ap_set_apsd(struct wmi
*wmi
, u8 if_idx
, u8 enable
);
2671 int ath6kl_wmi_set_apsd_bfrd_traf(struct wmi
*wmi
,
2673 u16 bitmap
, u32 flags
);
2675 u8
ath6kl_wmi_get_traffic_class(u8 user_priority
);
2677 u8
ath6kl_wmi_determine_user_priority(u8
*pkt
, u32 layer2_pri
);
2679 int ath6kl_wmi_ap_hidden_ssid(struct wmi
*wmi
, u8 if_idx
, bool enable
);
2680 int ath6kl_wmi_ap_profile_commit(struct wmi
*wmip
, u8 if_idx
,
2681 struct wmi_connect_cmd
*p
);
2683 int ath6kl_wmi_ap_set_mlme(struct wmi
*wmip
, u8 if_idx
, u8 cmd
,
2684 const u8
*mac
, u16 reason
);
2686 int ath6kl_wmi_set_pvb_cmd(struct wmi
*wmi
, u8 if_idx
, u16 aid
, bool flag
);
2688 int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi
*wmi
, u8 if_idx
,
2690 bool rx_dot11_hdr
, bool defrag_on_host
);
2692 int ath6kl_wmi_set_appie_cmd(struct wmi
*wmi
, u8 if_idx
, u8 mgmt_frm_type
,
2693 const u8
*ie
, u8 ie_len
);
2695 int ath6kl_wmi_set_ie_cmd(struct wmi
*wmi
, u8 if_idx
, u8 ie_id
, u8 ie_field
,
2696 const u8
*ie_info
, u8 ie_len
);
2699 int ath6kl_wmi_disable_11b_rates_cmd(struct wmi
*wmi
, bool disable
);
2701 int ath6kl_wmi_remain_on_chnl_cmd(struct wmi
*wmi
, u8 if_idx
, u32 freq
,
2704 int ath6kl_wmi_send_mgmt_cmd(struct wmi
*wmi
, u8 if_idx
, u32 id
, u32 freq
,
2705 u32 wait
, const u8
*data
, u16 data_len
,
2708 int ath6kl_wmi_send_probe_response_cmd(struct wmi
*wmi
, u8 if_idx
, u32 freq
,
2709 const u8
*dst
, const u8
*data
,
2712 int ath6kl_wmi_probe_report_req_cmd(struct wmi
*wmi
, u8 if_idx
, bool enable
);
2714 int ath6kl_wmi_info_req_cmd(struct wmi
*wmi
, u8 if_idx
, u32 info_req_flags
);
2716 int ath6kl_wmi_cancel_remain_on_chnl_cmd(struct wmi
*wmi
, u8 if_idx
);
2718 int ath6kl_wmi_set_appie_cmd(struct wmi
*wmi
, u8 if_idx
, u8 mgmt_frm_type
,
2719 const u8
*ie
, u8 ie_len
);
2721 int ath6kl_wmi_set_inact_period(struct wmi
*wmi
, u8 if_idx
, int inact_timeout
);
2723 void ath6kl_wmi_sscan_timer(unsigned long ptr
);
2725 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi
*wmi
, u32 cookie
, u32 source
);
2727 struct ath6kl_vif
*ath6kl_get_vif_by_index(struct ath6kl
*ar
, u8 if_idx
);
2728 void *ath6kl_wmi_init(struct ath6kl
*devt
);
2729 void ath6kl_wmi_shutdown(struct wmi
*wmi
);
2730 void ath6kl_wmi_reset(struct wmi
*wmi
);