2 * Copyright (c) 2010-2011 Atheros Communications Inc.
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.
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.
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.
27 #include <linux/ieee80211.h>
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)
36 #define IP_ETHERTYPE 0x0800
38 #define WMI_IMPLICIT_PSTREAM 0xFF
39 #define WMI_MAX_THINSTREAM 15
41 #define SSID_IE_LEN_INDEX 13
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
48 #define A_BAND_24GHZ 0
53 #define WMI_IMPLICIT_PSTREAM_INACTIVITY_INT 5000
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.
59 * Use a_ prefix so that it doesn't conflict if we get proper support to
62 typedef __s16 __bitwise a_sle16
;
63 typedef __s32 __bitwise a_sle32
;
65 static inline a_sle32
a_cpu_to_sle32(s32 val
)
67 return (__force a_sle32
) cpu_to_le32(val
);
70 static inline s32
a_sle32_to_cpu(a_sle32 val
)
72 return le32_to_cpu((__force __le32
) val
);
75 static inline a_sle16
a_cpu_to_sle16(s16 val
)
77 return (__force a_sle16
) cpu_to_le16(val
);
80 static inline s16
a_sle16_to_cpu(a_sle16 val
)
82 return le16_to_cpu((__force __le16
) val
);
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
;
93 u8 last_rssi_poll_event
;
101 struct wmi_data_sync_bufs
{
106 /* WMM stream classes */
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 */
115 u16 stream_exist_for_ac
[WMM_NUM_AC
];
117 struct ath6kl
*parent_dev
;
118 struct wmi_stats stat
;
123 enum htc_endpoint_id ep_id
;
124 struct sq_threshold_params
125 sq_threshld
[SIGNAL_QUALITY_METRICS_NUM_MAX
];
126 enum crypto_type pair_crypto_type
;
127 enum crypto_type grp_crypto_type
;
129 u8 ht_allowed
[A_NUM_BANDS
];
134 struct host_app_area
{
135 u32 wmi_protocol_ver
;
146 * Macros for operating on WMI_DATA_HDR (info) field
149 #define WMI_DATA_HDR_MSG_TYPE_MASK 0x03
150 #define WMI_DATA_HDR_MSG_TYPE_SHIFT 0
151 #define WMI_DATA_HDR_UP_MASK 0x07
152 #define WMI_DATA_HDR_UP_SHIFT 2
154 /* In AP mode, the same bit (b5) is used to indicate Power save state in
155 * the Rx dir and More data bit state in the tx direction.
157 #define WMI_DATA_HDR_PS_MASK 0x1
158 #define WMI_DATA_HDR_PS_SHIFT 5
160 #define WMI_DATA_HDR_MORE_MASK 0x1
161 #define WMI_DATA_HDR_MORE_SHIFT 5
163 enum wmi_data_hdr_data_type
{
164 WMI_DATA_HDR_DATA_TYPE_802_3
= 0,
165 WMI_DATA_HDR_DATA_TYPE_802_11
,
167 /* used to be used for the PAL */
168 WMI_DATA_HDR_DATA_TYPE_ACL
,
171 #define WMI_DATA_HDR_DATA_TYPE_MASK 0x3
172 #define WMI_DATA_HDR_DATA_TYPE_SHIFT 6
174 /* Macros for operating on WMI_DATA_HDR (info2) field */
175 #define WMI_DATA_HDR_SEQNO_MASK 0xFFF
176 #define WMI_DATA_HDR_SEQNO_SHIFT 0
178 #define WMI_DATA_HDR_AMSDU_MASK 0x1
179 #define WMI_DATA_HDR_AMSDU_SHIFT 12
181 #define WMI_DATA_HDR_META_MASK 0x7
182 #define WMI_DATA_HDR_META_SHIFT 13
184 struct wmi_data_hdr
{
188 * usage of 'info' field(8-bit):
190 * b1:b0 - WMI_MSG_TYPE
192 * b5 - Used in AP mode.
193 * More-data in tx dir, PS in rx.
194 * b7:b6 - Dot3 header(0),
201 * usage of 'info2' field(16-bit):
205 * b15:b13 - META_DATA_VERSION 0 - 7
211 static inline u8
wmi_data_hdr_get_up(struct wmi_data_hdr
*dhdr
)
213 return (dhdr
->info
>> WMI_DATA_HDR_UP_SHIFT
) & WMI_DATA_HDR_UP_MASK
;
216 static inline void wmi_data_hdr_set_up(struct wmi_data_hdr
*dhdr
,
219 dhdr
->info
&= ~(WMI_DATA_HDR_UP_MASK
<< WMI_DATA_HDR_UP_SHIFT
);
220 dhdr
->info
|= usr_pri
<< WMI_DATA_HDR_UP_SHIFT
;
223 static inline u8
wmi_data_hdr_get_dot11(struct wmi_data_hdr
*dhdr
)
227 data_type
= (dhdr
->info
>> WMI_DATA_HDR_DATA_TYPE_SHIFT
) &
228 WMI_DATA_HDR_DATA_TYPE_MASK
;
229 return (data_type
== WMI_DATA_HDR_DATA_TYPE_802_11
);
232 static inline u16
wmi_data_hdr_get_seqno(struct wmi_data_hdr
*dhdr
)
234 return (le16_to_cpu(dhdr
->info2
) >> WMI_DATA_HDR_SEQNO_SHIFT
) &
235 WMI_DATA_HDR_SEQNO_MASK
;
238 static inline u8
wmi_data_hdr_is_amsdu(struct wmi_data_hdr
*dhdr
)
240 return (le16_to_cpu(dhdr
->info2
) >> WMI_DATA_HDR_AMSDU_SHIFT
) &
241 WMI_DATA_HDR_AMSDU_MASK
;
244 static inline u8
wmi_data_hdr_get_meta(struct wmi_data_hdr
*dhdr
)
246 return (le16_to_cpu(dhdr
->info2
) >> WMI_DATA_HDR_META_SHIFT
) &
247 WMI_DATA_HDR_META_MASK
;
250 /* Tx meta version definitions */
251 #define WMI_MAX_TX_META_SZ 12
252 #define WMI_META_VERSION_1 0x01
253 #define WMI_META_VERSION_2 0x02
255 struct wmi_tx_meta_v1
{
256 /* packet ID to identify the tx request */
259 /* rate policy to be used for the tx of this frame */
263 struct wmi_tx_meta_v2
{
265 * Offset from start of the WMI header for csum calculation to
270 /* offset from start of WMI header where final csum goes */
273 /* no of bytes over which csum is calculated */
277 struct wmi_rx_meta_v1
{
280 /* rate index mapped to rate at which this packet was received. */
286 /* rf channel during packet reception */
292 struct wmi_rx_meta_v2
{
295 /* bit 0 set -partial csum valid bit 1 set -test mode */
305 * b15:b04 - unused */
312 /* List of WMI commands */
314 WMI_CONNECT_CMDID
= 0x0001,
316 WMI_DISCONNECT_CMDID
,
317 WMI_SYNCHRONIZE_CMDID
,
318 WMI_CREATE_PSTREAM_CMDID
,
319 WMI_DELETE_PSTREAM_CMDID
,
320 WMI_START_SCAN_CMDID
,
321 WMI_SET_SCAN_PARAMS_CMDID
,
322 WMI_SET_BSS_FILTER_CMDID
,
323 WMI_SET_PROBED_SSID_CMDID
, /* 10 */
324 WMI_SET_LISTEN_INT_CMDID
,
325 WMI_SET_BMISS_TIME_CMDID
,
326 WMI_SET_DISC_TIMEOUT_CMDID
,
327 WMI_GET_CHANNEL_LIST_CMDID
,
328 WMI_SET_BEACON_INT_CMDID
,
329 WMI_GET_STATISTICS_CMDID
,
330 WMI_SET_CHANNEL_PARAMS_CMDID
,
331 WMI_SET_POWER_MODE_CMDID
,
332 WMI_SET_IBSS_PM_CAPS_CMDID
,
333 WMI_SET_POWER_PARAMS_CMDID
, /* 20 */
334 WMI_SET_POWERSAVE_TIMERS_POLICY_CMDID
,
335 WMI_ADD_CIPHER_KEY_CMDID
,
336 WMI_DELETE_CIPHER_KEY_CMDID
,
338 WMI_DELETE_KRK_CMDID
,
340 WMI_SET_TX_PWR_CMDID
,
341 WMI_GET_TX_PWR_CMDID
,
342 WMI_SET_ASSOC_INFO_CMDID
,
343 WMI_ADD_BAD_AP_CMDID
, /* 30 */
344 WMI_DELETE_BAD_AP_CMDID
,
345 WMI_SET_TKIP_COUNTERMEASURES_CMDID
,
346 WMI_RSSI_THRESHOLD_PARAMS_CMDID
,
347 WMI_TARGET_ERROR_REPORT_BITMASK_CMDID
,
348 WMI_SET_ACCESS_PARAMS_CMDID
,
349 WMI_SET_RETRY_LIMITS_CMDID
,
350 WMI_SET_OPT_MODE_CMDID
,
351 WMI_OPT_TX_FRAME_CMDID
,
352 WMI_SET_VOICE_PKT_SIZE_CMDID
,
353 WMI_SET_MAX_SP_LEN_CMDID
, /* 40 */
354 WMI_SET_ROAM_CTRL_CMDID
,
355 WMI_GET_ROAM_TBL_CMDID
,
356 WMI_GET_ROAM_DATA_CMDID
,
358 WMI_SET_MAX_OFFHOME_DURATION_CMDID
,
359 WMI_EXTENSION_CMDID
, /* Non-wireless extensions */
360 WMI_SNR_THRESHOLD_PARAMS_CMDID
,
361 WMI_LQ_THRESHOLD_PARAMS_CMDID
,
362 WMI_SET_LPREAMBLE_CMDID
,
363 WMI_SET_RTS_CMDID
, /* 50 */
364 WMI_CLR_RSSI_SNR_CMDID
,
365 WMI_SET_FIXRATES_CMDID
,
366 WMI_GET_FIXRATES_CMDID
,
367 WMI_SET_AUTH_MODE_CMDID
,
368 WMI_SET_REASSOC_MODE_CMDID
,
370 WMI_SET_WMM_TXOP_CMDID
,
373 /* COEX AR6002 only */
374 WMI_SET_BT_STATUS_CMDID
,
375 WMI_SET_BT_PARAMS_CMDID
, /* 60 */
377 WMI_SET_KEEPALIVE_CMDID
,
378 WMI_GET_KEEPALIVE_CMDID
,
381 WMI_SET_WSC_STATUS_CMDID
,
383 /* Wake on Wireless */
384 WMI_SET_HOST_SLEEP_MODE_CMDID
,
385 WMI_SET_WOW_MODE_CMDID
,
386 WMI_GET_WOW_LIST_CMDID
,
387 WMI_ADD_WOW_PATTERN_CMDID
,
388 WMI_DEL_WOW_PATTERN_CMDID
, /* 70 */
390 WMI_SET_FRAMERATES_CMDID
,
392 WMI_SET_QOS_SUPP_CMDID
,
394 /* WMI_THIN_RESERVED_... mark the start and end
395 * values for WMI_THIN_RESERVED command IDs. These
396 * command IDs can be found in wmi_thin.h */
397 WMI_THIN_RESERVED_START
= 0x8000,
398 WMI_THIN_RESERVED_END
= 0x8fff,
400 /* Developer commands starts at 0xF000 */
401 WMI_SET_BITRATE_CMDID
= 0xF000,
402 WMI_GET_BITRATE_CMDID
,
403 WMI_SET_WHALPARAM_CMDID
,
404 WMI_SET_MAC_ADDRESS_CMDID
,
405 WMI_SET_AKMP_PARAMS_CMDID
,
406 WMI_SET_PMKID_LIST_CMDID
,
407 WMI_GET_PMKID_LIST_CMDID
,
408 WMI_ABORT_SCAN_CMDID
,
409 WMI_SET_TARGET_EVENT_REPORT_CMDID
,
415 /* AP mode commands */
416 WMI_AP_HIDDEN_SSID_CMDID
,
417 WMI_AP_SET_NUM_STA_CMDID
,
418 WMI_AP_ACL_POLICY_CMDID
,
419 WMI_AP_ACL_MAC_LIST_CMDID
,
420 WMI_AP_CONFIG_COMMIT_CMDID
,
421 WMI_AP_SET_MLME_CMDID
,
422 WMI_AP_SET_PVB_CMDID
,
423 WMI_AP_CONN_INACT_CMDID
,
424 WMI_AP_PROT_SCAN_TIME_CMDID
,
425 WMI_AP_SET_COUNTRY_CMDID
,
426 WMI_AP_SET_DTIM_CMDID
,
427 WMI_AP_MODE_STAT_CMDID
,
430 WMI_SET_PARAMS_CMDID
,
431 WMI_SET_MCAST_FILTER_CMDID
,
432 WMI_DEL_MCAST_FILTER_CMDID
,
434 WMI_ALLOW_AGGR_CMDID
,
437 WMI_SET_HT_CAP_CMDID
,
439 WMI_SET_TX_SELECT_RATES_CMDID
,
440 WMI_SET_TX_SGI_PARAM_CMDID
,
441 WMI_SET_RATE_POLICY_CMDID
,
444 WMI_RX_FRAME_FORMAT_CMDID
,
445 WMI_SET_THIN_MODE_CMDID
,
446 WMI_SET_BT_WLAN_CONN_PRECEDENCE_CMDID
,
448 WMI_AP_SET_11BG_RATESET_CMDID
,
450 WMI_MCAST_FILTER_CMDID
,
452 /* COEX CMDID AR6003 */
453 WMI_SET_BTCOEX_FE_ANT_CMDID
,
454 WMI_SET_BTCOEX_COLOCATED_BT_DEV_CMDID
,
455 WMI_SET_BTCOEX_SCO_CONFIG_CMDID
,
456 WMI_SET_BTCOEX_A2DP_CONFIG_CMDID
,
457 WMI_SET_BTCOEX_ACLCOEX_CONFIG_CMDID
,
458 WMI_SET_BTCOEX_BTINQUIRY_PAGE_CONFIG_CMDID
,
459 WMI_SET_BTCOEX_DEBUG_CMDID
,
460 WMI_SET_BTCOEX_BT_OPERATING_STATUS_CMDID
,
461 WMI_GET_BTCOEX_STATS_CMDID
,
462 WMI_GET_BTCOEX_CONFIG_CMDID
,
464 WMI_SET_DFS_ENABLE_CMDID
, /* F034 */
465 WMI_SET_DFS_MINRSSITHRESH_CMDID
,
466 WMI_SET_DFS_MAXPULSEDUR_CMDID
,
467 WMI_DFS_RADAR_DETECTED_CMDID
,
470 WMI_P2P_SET_CONFIG_CMDID
, /* F038 */
471 WMI_WPS_SET_CONFIG_CMDID
,
472 WMI_SET_REQ_DEV_ATTR_CMDID
,
474 WMI_P2P_STOP_FIND_CMDID
,
475 WMI_P2P_GO_NEG_START_CMDID
,
476 WMI_P2P_LISTEN_CMDID
,
478 WMI_CONFIG_TX_MAC_RULES_CMDID
, /* F040 */
479 WMI_SET_PROMISCUOUS_MODE_CMDID
,
480 WMI_RX_FRAME_FILTER_CMDID
,
481 WMI_SET_CHANNEL_CMDID
,
484 WMI_ENABLE_WAC_CMDID
,
485 WMI_WAC_SCAN_REPLY_CMDID
,
486 WMI_WAC_CTRL_REQ_CMDID
,
487 WMI_SET_DIV_PARAMS_CMDID
,
490 WMI_SET_PASSPHRASE_CMDID
,
491 WMI_SEND_ASSOC_RES_CMDID
,
492 WMI_SET_ASSOC_REQ_RELAY_CMDID
,
493 WMI_GET_RFKILL_MODE_CMDID
,
495 /* ACS command, consists of sub-commands */
498 /* Ultra low power store / recall commands */
499 WMI_STORERECALL_CONFIGURE_CMDID
,
500 WMI_STORERECALL_RECALL_CMDID
,
501 WMI_STORERECALL_HOST_READY_CMDID
,
502 WMI_FORCE_TARGET_ASSERT_CMDID
,
503 WMI_SET_EXCESS_TX_RETRY_THRES_CMDID
,
506 /* WMI_CONNECT_CMDID */
508 INFRA_NETWORK
= 0x01,
509 ADHOC_NETWORK
= 0x02,
510 ADHOC_CREATOR
= 0x04,
514 enum dot11_auth_mode
{
518 /* different from IEEE_AUTH_MODE definitions */
524 AUTH_OPEN_IN_PROGRESS
,
532 WPA2_PSK_AUTH
= 0x10,
533 WPA_AUTH_CCKM
= 0x20,
534 WPA2_AUTH_CCKM
= 0x40,
537 #define WMI_MIN_CRYPTO_TYPE NONE_CRYPT
538 #define WMI_MAX_CRYPTO_TYPE (AES_CRYPT + 1)
540 #define WMI_MIN_KEY_INDEX 0
541 #define WMI_MAX_KEY_INDEX 3
543 #define WMI_MAX_KEY_LEN 32
546 * NB: these values are ordered carefully; there are lots of
547 * of implications in any reordering. In particular beware
548 * that 4 is not used to avoid conflicting with IEEE80211_F_PRIVACY.
550 #define ATH6KL_CIPHER_WEP 0
551 #define ATH6KL_CIPHER_TKIP 1
552 #define ATH6KL_CIPHER_AES_OCB 2
553 #define ATH6KL_CIPHER_AES_CCM 3
554 #define ATH6KL_CIPHER_CKIP 5
555 #define ATH6KL_CIPHER_CCKM_KRK 6
556 #define ATH6KL_CIPHER_NONE 7 /* pseudo value */
561 #define ATH6KL_RATE_MAXSIZE 15 /* max rates we'll handle */
563 #define ATH_OUI_TYPE 0x01
564 #define WPA_OUI_TYPE 0x01
565 #define WMM_PARAM_OUI_SUBTYPE 0x01
566 #define WMM_OUI_TYPE 0x02
567 #define WSC_OUT_TYPE 0x04
569 enum wmi_connect_ctrl_flags_bits
{
570 CONNECT_ASSOC_POLICY_USER
= 0x0001,
571 CONNECT_SEND_REASSOC
= 0x0002,
572 CONNECT_IGNORE_WPAx_GROUP_CIPHER
= 0x0004,
573 CONNECT_PROFILE_MATCH_DONE
= 0x0008,
574 CONNECT_IGNORE_AAC_BEACON
= 0x0010,
575 CONNECT_CSA_FOLLOW_BSS
= 0x0020,
576 CONNECT_DO_WPA_OFFLOAD
= 0x0040,
577 CONNECT_DO_NOT_DEAUTH
= 0x0080,
580 struct wmi_connect_cmd
{
584 u8 prwise_crypto_type
;
585 u8 prwise_crypto_len
;
589 u8 ssid
[IEEE80211_MAX_SSID_LEN
];
595 /* WMI_RECONNECT_CMDID */
596 struct wmi_reconnect_cmd
{
600 /* mandatory if set */
604 /* WMI_ADD_CIPHER_KEY_CMDID */
606 PAIRWISE_USAGE
= 0x00,
609 /* default Tx Key - static WEP only */
615 * Bit 0 - Initialise TSC - default is Initialize
617 #define KEY_OP_INIT_TSC 0x01
618 #define KEY_OP_INIT_RSC 0x02
620 /* default initialise the TSC & RSC */
621 #define KEY_OP_INIT_VAL 0x03
622 #define KEY_OP_VALID_MASK 0x03
624 struct wmi_add_cipher_key_cmd
{
633 /* key replay sequence counter */
636 u8 key
[WLAN_MAX_KEY_LEN
];
638 /* additional key control info */
641 u8 key_mac_addr
[ETH_ALEN
];
644 /* WMI_DELETE_CIPHER_KEY_CMDID */
645 struct wmi_delete_cipher_key_cmd
{
649 #define WMI_KRK_LEN 16
651 /* WMI_ADD_KRK_CMDID */
652 struct wmi_add_krk_cmd
{
656 /* WMI_SETPMKID_CMDID */
658 #define WMI_PMKID_LEN 16
660 enum pmkid_enable_flg
{
665 struct wmi_setpmkid_cmd
{
668 /* enum pmkid_enable_flg */
671 u8 pmkid
[WMI_PMKID_LEN
];
674 /* WMI_START_SCAN_CMD */
680 struct wmi_start_scan_cmd
{
681 __le32 force_fg_scan
;
683 /* for legacy cisco AP compatibility */
686 /* max duration in the home channel(msec) */
687 __le32 home_dwell_time
;
689 /* time interval between scans (msec) */
690 __le32 force_scan_intvl
;
692 /* enum wmi_scan_type */
695 /* how many channels follow */
698 /* channels in Mhz */
702 /* WMI_SET_SCAN_PARAMS_CMDID */
703 #define WMI_SHORTSCANRATIO_DEFAULT 3
706 * Warning: scan control flag value of 0xFF is used to disable
707 * all flags in WMI_SCAN_PARAMS_CMD. Do not add any more
710 enum wmi_scan_ctrl_flags_bits
{
712 /* set if can scan in the connect cmd */
713 CONNECT_SCAN_CTRL_FLAGS
= 0x01,
715 /* set if scan for the SSID it is already connected to */
716 SCAN_CONNECTED_CTRL_FLAGS
= 0x02,
718 /* set if enable active scan */
719 ACTIVE_SCAN_CTRL_FLAGS
= 0x04,
721 /* set if enable roam scan when bmiss and lowrssi */
722 ROAM_SCAN_CTRL_FLAGS
= 0x08,
724 /* set if follows customer BSSINFO reporting rule */
725 REPORT_BSSINFO_CTRL_FLAGS
= 0x10,
727 /* if disabled, target doesn't scan after a disconnect event */
728 ENABLE_AUTO_CTRL_FLAGS
= 0x20,
731 * Scan complete event with canceled status will be generated when
732 * a scan is prempted before it gets completed.
734 ENABLE_SCAN_ABORT_EVENT
= 0x40
737 #define DEFAULT_SCAN_CTRL_FLAGS \
738 (CONNECT_SCAN_CTRL_FLAGS | \
739 SCAN_CONNECTED_CTRL_FLAGS | \
740 ACTIVE_SCAN_CTRL_FLAGS | \
741 ROAM_SCAN_CTRL_FLAGS | \
742 ENABLE_AUTO_CTRL_FLAGS)
744 struct wmi_scan_params_cmd
{
746 __le16 fg_start_period
;
749 __le16 fg_end_period
;
755 __le16 maxact_chdwell_time
;
758 __le16 pas_chdwell_time
;
760 /* how many shorts scan for one long */
766 __le16 minact_chdwell_time
;
768 /* max active scans per ssid */
769 __le16 maxact_scan_per_ssid
;
772 __le32 max_dfsch_act_time
;
775 /* WMI_SET_BSS_FILTER_CMDID */
776 enum wmi_bss_filter
{
777 /* no beacons forwarded */
778 NONE_BSS_FILTER
= 0x0,
780 /* all beacons forwarded */
783 /* only beacons matching profile */
786 /* all but beacons matching profile */
787 ALL_BUT_PROFILE_FILTER
,
789 /* only beacons matching current BSS */
792 /* all but beacons matching BSS */
795 /* beacons matching probed ssid */
802 struct wmi_bss_filter_cmd
{
803 /* see, enum wmi_bss_filter */
815 /* WMI_SET_PROBED_SSID_CMDID */
816 #define MAX_PROBED_SSID_INDEX 9
820 DISABLE_SSID_FLAG
= 0,
822 /* probes specified ssid */
823 SPECIFIC_SSID_FLAG
= 0x01,
825 /* probes for any ssid */
826 ANY_SSID_FLAG
= 0x02,
829 struct wmi_probed_ssid_cmd
{
830 /* 0 to MAX_PROBED_SSID_INDEX */
833 /* see, enum wmi_ssid_flg */
837 u8 ssid
[IEEE80211_MAX_SSID_LEN
];
841 * WMI_SET_LISTEN_INT_CMDID
842 * The Listen interval is between 15 and 3000 TUs
844 struct wmi_listen_int_cmd
{
849 /* WMI_SET_POWER_MODE_CMDID */
850 enum wmi_power_mode
{
855 struct wmi_power_mode_cmd
{
856 /* see, enum wmi_power_mode */
861 * Policy to determnine whether power save failure event should be sent to
862 * host during scanning
864 enum power_save_fail_event_policy
{
865 SEND_POWER_SAVE_FAIL_EVENT_ALWAYS
= 1,
866 IGNORE_POWER_SAVE_FAIL_EVENT_DURING_SCAN
= 2,
869 struct wmi_power_params_cmd
{
873 __le16 pspoll_number
;
875 __le16 tx_wakeup_policy
;
876 __le16 num_tx_to_wakeup
;
877 __le16 ps_fail_event_policy
;
880 /* WMI_SET_DISC_TIMEOUT_CMDID */
881 struct wmi_disc_timeout_cmd
{
892 enum voiceps_cap_type
{
893 DISABLE_FOR_THIS_AC
= 0,
894 ENABLE_FOR_THIS_AC
= 1,
895 ENABLE_FOR_ALL_AC
= 2,
899 TRAFFIC_TYPE_APERIODIC
= 0,
900 TRAFFIC_TYPE_PERIODIC
= 1,
903 /* WMI_SYNCHRONIZE_CMDID */
904 struct wmi_sync_cmd
{
908 /* WMI_CREATE_PSTREAM_CMDID */
909 struct wmi_create_pstream_cmd
{
911 __le32 min_service_int
;
914 __le32 max_service_int
;
917 __le32 inactivity_int
;
920 __le32 suspension_int
;
922 __le32 service_start_time
;
925 __le32 min_data_rate
;
928 __le32 mean_data_rate
;
931 __le32 peak_data_rate
;
933 __le32 max_burst_size
;
950 /* see, enum dir_type */
955 /* see, enum traffic_type */
958 /* see, enum voiceps_cap_type */
962 /* 802.1D user priority */
965 /* nominal phy rate */
969 /* WMI_DELETE_PSTREAM_CMDID */
970 struct wmi_delete_pstream_cmd
{
978 /* WMI_SET_CHANNEL_PARAMS_CMDID */
984 WMI_11GONLY_MODE
= 0x5,
987 #define WMI_MAX_CHANNELS 32
990 * WMI_RSSI_THRESHOLD_PARAMS_CMDID
991 * Setting the polltime to 0 would disable polling. Threshold values are
992 * in the ascending order, and should agree to:
993 * (lowThreshold_lowerVal < lowThreshold_upperVal < highThreshold_lowerVal
994 * < highThreshold_upperVal)
997 struct wmi_rssi_threshold_params_cmd
{
998 /* polling time as a factor of LI */
1001 /* lowest of upper */
1002 a_sle16 thresh_above1_val
;
1004 a_sle16 thresh_above2_val
;
1005 a_sle16 thresh_above3_val
;
1006 a_sle16 thresh_above4_val
;
1007 a_sle16 thresh_above5_val
;
1009 /* highest of upper */
1010 a_sle16 thresh_above6_val
;
1012 /* lowest of bellow */
1013 a_sle16 thresh_below1_val
;
1015 a_sle16 thresh_below2_val
;
1016 a_sle16 thresh_below3_val
;
1017 a_sle16 thresh_below4_val
;
1018 a_sle16 thresh_below5_val
;
1020 /* highest of bellow */
1021 a_sle16 thresh_below6_val
;
1030 * WMI_SNR_THRESHOLD_PARAMS_CMDID
1031 * Setting the polltime to 0 would disable polling.
1034 struct wmi_snr_threshold_params_cmd
{
1035 /* polling time as a factor of LI */
1041 /* lowest of uppper */
1042 u8 thresh_above1_val
;
1044 u8 thresh_above2_val
;
1045 u8 thresh_above3_val
;
1047 /* highest of upper */
1048 u8 thresh_above4_val
;
1050 /* lowest of bellow */
1051 u8 thresh_below1_val
;
1053 u8 thresh_below2_val
;
1054 u8 thresh_below3_val
;
1056 /* highest of bellow */
1057 u8 thresh_below4_val
;
1062 enum wmi_preamble_policy
{
1063 WMI_IGNORE_BARKER_IN_ERP
= 0,
1064 WMI_DONOT_IGNORE_BARKER_IN_ERP
1067 struct wmi_set_lpreamble_cmd
{
1072 struct wmi_set_rts_cmd
{
1076 /* WMI_SET_TX_PWR_CMDID */
1077 struct wmi_set_tx_pwr_cmd
{
1082 struct wmi_tx_pwr_reply
{
1087 struct wmi_report_sleep_state_event
{
1091 enum wmi_report_sleep_status
{
1092 WMI_REPORT_SLEEP_STATUS_IS_DEEP_SLEEP
= 0,
1093 WMI_REPORT_SLEEP_STATUS_IS_AWAKE
1095 enum target_event_report_config
{
1097 DISCONN_EVT_IN_RECONN
= 0,
1099 NO_DISCONN_EVT_IN_RECONN
1102 /* Command Replies */
1104 /* WMI_GET_CHANNEL_LIST_CMDID reply */
1105 struct wmi_channel_list_reply
{
1108 /* number of channels in reply */
1111 /* channel in Mhz */
1115 /* List of Events (target to host) */
1117 WMI_READY_EVENTID
= 0x1001,
1118 WMI_CONNECT_EVENTID
,
1119 WMI_DISCONNECT_EVENTID
,
1120 WMI_BSSINFO_EVENTID
,
1121 WMI_CMDERROR_EVENTID
,
1122 WMI_REGDOMAIN_EVENTID
,
1123 WMI_PSTREAM_TIMEOUT_EVENTID
,
1124 WMI_NEIGHBOR_REPORT_EVENTID
,
1125 WMI_TKIP_MICERR_EVENTID
,
1126 WMI_SCAN_COMPLETE_EVENTID
, /* 0x100a */
1127 WMI_REPORT_STATISTICS_EVENTID
,
1128 WMI_RSSI_THRESHOLD_EVENTID
,
1129 WMI_ERROR_REPORT_EVENTID
,
1130 WMI_OPT_RX_FRAME_EVENTID
,
1131 WMI_REPORT_ROAM_TBL_EVENTID
,
1132 WMI_EXTENSION_EVENTID
,
1134 WMI_SNR_THRESHOLD_EVENTID
,
1135 WMI_LQ_THRESHOLD_EVENTID
,
1136 WMI_TX_RETRY_ERR_EVENTID
, /* 0x1014 */
1137 WMI_REPORT_ROAM_DATA_EVENTID
,
1140 WMI_GET_WOW_LIST_EVENTID
,
1141 WMI_GET_PMKID_LIST_EVENTID
,
1142 WMI_CHANNEL_CHANGE_EVENTID
,
1143 WMI_PEER_NODE_EVENTID
,
1145 WMI_DTIMEXPIRY_EVENTID
,
1146 WMI_WLAN_VERSION_EVENTID
,
1147 WMI_SET_PARAMS_REPLY_EVENTID
,
1148 WMI_ADDBA_REQ_EVENTID
, /*0x1020 */
1149 WMI_ADDBA_RESP_EVENTID
,
1150 WMI_DELBA_REQ_EVENTID
,
1151 WMI_TX_COMPLETE_EVENTID
,
1152 WMI_HCI_EVENT_EVENTID
,
1153 WMI_ACL_DATA_EVENTID
,
1154 WMI_REPORT_SLEEP_STATE_EVENTID
,
1155 WMI_REPORT_BTCOEX_STATS_EVENTID
,
1156 WMI_REPORT_BTCOEX_CONFIG_EVENTID
,
1157 WMI_GET_PMK_EVENTID
,
1160 WMI_DFS_HOST_ATTACH_EVENTID
,
1161 WMI_DFS_HOST_INIT_EVENTID
,
1162 WMI_DFS_RESET_DELAYLINES_EVENTID
,
1163 WMI_DFS_RESET_RADARQ_EVENTID
,
1164 WMI_DFS_RESET_AR_EVENTID
,
1165 WMI_DFS_RESET_ARQ_EVENTID
,
1166 WMI_DFS_SET_DUR_MULTIPLIER_EVENTID
,
1167 WMI_DFS_SET_BANGRADAR_EVENTID
,
1168 WMI_DFS_SET_DEBUGLEVEL_EVENTID
,
1169 WMI_DFS_PHYERR_EVENTID
,
1172 WMI_CCX_RM_STATUS_EVENTID
,
1175 WMI_P2P_GO_NEG_RESULT_EVENTID
,
1177 WMI_WAC_SCAN_DONE_EVENTID
,
1178 WMI_WAC_REPORT_BSS_EVENTID
,
1179 WMI_WAC_START_WPS_EVENTID
,
1180 WMI_WAC_CTRL_REQ_REPLY_EVENTID
,
1183 WMI_RFKILL_STATE_CHANGE_EVENTID
,
1184 WMI_RFKILL_GET_MODE_CMD_EVENTID
,
1185 WMI_THIN_RESERVED_START_EVENTID
= 0x8000,
1188 * Events in this range are reserved for thinmode
1189 * See wmi_thin.h for actual definitions
1191 WMI_THIN_RESERVED_END_EVENTID
= 0x8fff,
1193 WMI_SET_CHANNEL_EVENTID
,
1194 WMI_ASSOC_REQ_EVENTID
,
1196 /* Generic ACS event */
1198 WMI_REPORT_WMM_PARAMS_EVENTID
1201 struct wmi_ready_event_2
{
1204 u8 mac_addr
[ETH_ALEN
];
1209 struct wmi_connect_event
{
1212 __le16 listen_intvl
;
1213 __le16 beacon_intvl
;
1221 /* Disconnect Event */
1222 enum wmi_disconnect_reason
{
1223 NO_NETWORK_AVAIL
= 0x01,
1228 DISCONNECT_CMD
= 0x03,
1229 BSS_DISCONNECTED
= 0x04,
1231 ASSOC_FAILED
= 0x06,
1232 NO_RESOURCES_AVAIL
= 0x07,
1233 CSERV_DISCONNECT
= 0x08,
1234 INVALID_PROFILE
= 0x0a,
1235 DOT11H_CHANNEL_SWITCH
= 0x0b,
1236 PROFILE_MISMATCH
= 0x0c,
1237 CONNECTION_EVICTED
= 0x0d,
1241 struct wmi_disconnect_event
{
1242 /* reason code, see 802.11 spec. */
1243 __le16 proto_reason_status
;
1248 /* see WMI_DISCONNECT_REASON */
1257 * Mechanism used to inform host of the presence and characteristic of
1258 * wireless networks present. Consists of bss info header followed by
1259 * the beacon or probe-response frame body. The 802.11 header is no included.
1268 struct wmi_bss_info_hdr
{
1271 /* see, enum wmi_bi_ftype */
1281 * BSS INFO HDR version 2.0
1282 * With 6 bytes HTC header and 6 bytes of WMI header
1283 * WMI_BSS_INFO_HDR cannot be accommodated in the removed 802.11 management
1285 * - Reduce the ie_mask to 2 bytes as only two bit flags are used
1286 * - Remove rssi and compute it on the host. rssi = snr - 95
1288 struct wmi_bss_info_hdr2
{
1291 /* see, enum wmi_bi_ftype */
1299 /* Command Error Event */
1300 enum wmi_error_code
{
1301 INVALID_PARAM
= 0x01,
1302 ILLEGAL_STATE
= 0x02,
1303 INTERNAL_ERROR
= 0x03,
1306 struct wmi_cmd_error_event
{
1311 struct wmi_pstream_timeout_event
{
1319 * The WMI_NEIGHBOR_REPORT Event is generated by the target to inform
1320 * the host of BSS's it has found that matches the current profile.
1321 * It can be used by the host to cache PMKs and/to initiate pre-authentication
1322 * if the BSS supports it. The first bssid is always the current associated
1324 * The bssid and bssFlags information repeats according to the number
1327 enum wmi_bss_flags
{
1328 WMI_DEFAULT_BSS_FLAGS
= 0x00,
1329 WMI_PREAUTH_CAPABLE_BSS
= 0x01,
1330 WMI_PMKID_VALID_BSS
= 0x02,
1333 /* TKIP MIC Error Event */
1334 struct wmi_tkip_micerr_event
{
1339 /* WMI_SCAN_COMPLETE_EVENTID */
1340 struct wmi_scan_complete_event
{
1344 #define MAX_OPT_DATA_LEN 1400
1347 * Special frame receive Event.
1348 * Mechanism used to inform host of the receiption of the special frames.
1349 * Consists of special frame info header followed by special frame body.
1350 * The 802.11 header is not included.
1352 struct wmi_opt_rx_info_hdr
{
1356 u8 src_addr
[ETH_ALEN
];
1360 /* Reporting statistic */
1370 __le32 rts_success_cnt
;
1371 __le32 pkt_per_ac
[4];
1372 __le32 err_per_ac
[4];
1377 __le32 mult_retry_cnt
;
1378 __le32 rts_fail_cnt
;
1395 __le32 key_cache_miss
;
1401 struct tkip_ccmp_stats
{
1402 __le32 tkip_local_mic_fail
;
1403 __le32 tkip_cnter_measures_invoked
;
1404 __le32 tkip_replays
;
1405 __le32 tkip_fmt_err
;
1406 __le32 ccmp_fmt_err
;
1407 __le32 ccmp_replays
;
1411 __le32 pwr_save_failure_cnt
;
1412 __le16 stop_tx_failure_cnt
;
1413 __le16 atim_tx_failure_cnt
;
1414 __le16 atim_rx_failure_cnt
;
1415 __le16 bcn_rx_failure_cnt
;
1418 struct cserv_stats
{
1419 __le32 cs_bmiss_cnt
;
1420 __le32 cs_low_rssi_cnt
;
1421 __le16 cs_connect_cnt
;
1422 __le16 cs_discon_cnt
;
1423 a_sle16 cs_ave_beacon_rssi
;
1424 __le16 cs_roam_count
;
1427 u8 cs_ave_beacon_snr
;
1428 u8 cs_last_roam_msec
;
1431 struct wlan_net_stats
{
1434 struct tkip_ccmp_stats tkip_ccmp_stats
;
1438 __le32 arp_received
;
1443 struct wlan_wow_stats
{
1444 __le32 wow_pkt_dropped
;
1445 __le16 wow_evt_discarded
;
1446 u8 wow_host_pkt_wakeups
;
1447 u8 wow_host_evt_wakeups
;
1450 struct wmi_target_stats
{
1452 a_sle32 noise_floor_calib
;
1453 struct pm_stats pm_stats
;
1454 struct wlan_net_stats stats
;
1455 struct wlan_wow_stats wow_stats
;
1456 struct arp_stats arp_stats
;
1457 struct cserv_stats cserv_stats
;
1461 * WMI_RSSI_THRESHOLD_EVENTID.
1462 * Indicate the RSSI events to host. Events are indicated when we breach a
1465 enum wmi_rssi_threshold_val
{
1466 WMI_RSSI_THRESHOLD1_ABOVE
= 0,
1467 WMI_RSSI_THRESHOLD2_ABOVE
,
1468 WMI_RSSI_THRESHOLD3_ABOVE
,
1469 WMI_RSSI_THRESHOLD4_ABOVE
,
1470 WMI_RSSI_THRESHOLD5_ABOVE
,
1471 WMI_RSSI_THRESHOLD6_ABOVE
,
1472 WMI_RSSI_THRESHOLD1_BELOW
,
1473 WMI_RSSI_THRESHOLD2_BELOW
,
1474 WMI_RSSI_THRESHOLD3_BELOW
,
1475 WMI_RSSI_THRESHOLD4_BELOW
,
1476 WMI_RSSI_THRESHOLD5_BELOW
,
1477 WMI_RSSI_THRESHOLD6_BELOW
1480 struct wmi_rssi_threshold_event
{
1485 enum wmi_snr_threshold_val
{
1486 WMI_SNR_THRESHOLD1_ABOVE
= 1,
1487 WMI_SNR_THRESHOLD1_BELOW
,
1488 WMI_SNR_THRESHOLD2_ABOVE
,
1489 WMI_SNR_THRESHOLD2_BELOW
,
1490 WMI_SNR_THRESHOLD3_ABOVE
,
1491 WMI_SNR_THRESHOLD3_BELOW
,
1492 WMI_SNR_THRESHOLD4_ABOVE
,
1493 WMI_SNR_THRESHOLD4_BELOW
1496 struct wmi_snr_threshold_event
{
1497 /* see, enum wmi_snr_threshold_val */
1503 /* WMI_REPORT_ROAM_TBL_EVENTID */
1504 #define MAX_ROAM_TBL_CAND 5
1506 struct wmi_bss_roam_info
{
1519 /* WMI_CAC_EVENTID */
1520 enum cac_indication
{
1521 CAC_INDICATION_ADMISSION
= 0x00,
1522 CAC_INDICATION_ADMISSION_RESP
= 0x01,
1523 CAC_INDICATION_DELETE
= 0x02,
1524 CAC_INDICATION_NO_RESP
= 0x03,
1527 #define WMM_TSPEC_IE_LEN 63
1529 struct wmi_cac_event
{
1533 u8 tspec_suggestion
[WMM_TSPEC_IE_LEN
];
1536 /* WMI_APLIST_EVENTID */
1542 struct wmi_ap_info_v1
{
1548 struct wmi_ap_info_v1 ap_info_v1
;
1551 struct wmi_aplist_event
{
1554 union wmi_ap_info ap_list
[1];
1557 /* Developer Commands */
1560 * WMI_SET_BITRATE_CMDID
1562 * Get bit rate cmd uses same definition as set bit rate cmd
1596 struct wmi_bit_rate_reply
{
1597 /* see, enum wmi_bit_rate */
1602 * WMI_SET_FIXRATES_CMDID
1604 * Get fix rates cmd uses same definition as set fix rates cmd
1606 struct wmi_fix_rates_reply
{
1607 /* see wmi_bit_rate */
1608 __le32 fix_rate_mask
;
1611 enum roam_data_type
{
1612 /* get the roam time data */
1616 struct wmi_target_roam_time
{
1617 __le32 disassoc_time
;
1618 __le32 no_txrx_time
;
1620 __le32 allow_txrx_time
;
1621 u8 disassoc_bssid
[ETH_ALEN
];
1622 s8 disassoc_bss_rssi
;
1623 u8 assoc_bssid
[ETH_ALEN
];
1628 WMI_TXOP_DISABLED
= 0,
1632 struct wmi_set_wmm_txop_cmd
{
1636 struct wmi_set_keepalive_cmd
{
1637 u8 keep_alive_intvl
;
1640 struct wmi_get_keepalive_cmd
{
1642 u8 keep_alive_intvl
;
1645 /* Notify the WSC registration status to the target */
1646 #define WSC_REG_ACTIVE 1
1647 #define WSC_REG_INACTIVE 0
1649 #define WOW_MAX_FILTER_LISTS 1
1650 #define WOW_MAX_FILTERS_PER_LIST 4
1651 #define WOW_PATTERN_SIZE 64
1652 #define WOW_MASK_SIZE 64
1654 #define MAC_MAX_FILTERS_PER_LIST 4
1657 u8 wow_valid_filter
;
1660 u8 wow_filter_offset
;
1661 u8 wow_filter_mask
[WOW_MASK_SIZE
];
1662 u8 wow_filter_pattern
[WOW_PATTERN_SIZE
];
1665 #define MAX_IP_ADDRS 2
1667 struct wmi_set_ip_cmd
{
1668 /* IP in network byte order */
1669 __le32 ips
[MAX_IP_ADDRS
];
1672 /* WMI_GET_WOW_LIST_CMD reply */
1673 struct wmi_get_wow_list_reply
{
1674 /* number of patterns in reply */
1677 /* this is filter # x of total num_filters */
1682 struct wow_filter wow_filters
[1];
1685 /* WMI_SET_AKMP_PARAMS_CMD */
1688 u8 pmkid
[WMI_PMKID_LEN
];
1691 /* WMI_GET_PMKID_LIST_CMD Reply */
1692 struct wmi_pmkid_list_reply
{
1694 u8 bssid_list
[ETH_ALEN
][1];
1695 struct wmi_pmkid pmkid_list
[1];
1698 /* WMI_ADDBA_REQ_EVENTID */
1699 struct wmi_addba_req_event
{
1704 /* f/w response for ADDBA Req; OK (0) or failure (!=0) */
1708 /* WMI_ADDBA_RESP_EVENTID */
1709 struct wmi_addba_resp_event
{
1712 /* OK (0), failure (!=0) */
1715 /* three values: not supported(0), 3839, 8k */
1719 /* WMI_DELBA_EVENTID
1720 * f/w received a DELBA for peer and processed it.
1721 * Host is notified of this
1723 struct wmi_delba_event
{
1725 u8 is_peer_initiator
;
1729 #define PEER_NODE_JOIN_EVENT 0x00
1730 #define PEER_NODE_LEAVE_EVENT 0x01
1731 #define PEER_FIRST_NODE_JOIN_EVENT 0x10
1732 #define PEER_LAST_NODE_LEAVE_EVENT 0x11
1734 struct wmi_peer_node_event
{
1736 u8 peer_mac_addr
[ETH_ALEN
];
1739 /* Transmit complete event data structure(s) */
1741 /* version 1 of tx complete msg */
1742 struct tx_complete_msg_v1
{
1743 #define TX_COMPLETE_STATUS_SUCCESS 0
1744 #define TX_COMPLETE_STATUS_RETRIES 1
1745 #define TX_COMPLETE_STATUS_NOLINK 2
1746 #define TX_COMPLETE_STATUS_TIMEOUT 3
1747 #define TX_COMPLETE_STATUS_OTHER 4
1751 /* packet ID to identify parent packet */
1754 /* rate index on successful transmission */
1757 /* number of ACK failures in tx attempt */
1761 struct wmi_tx_complete_event
{
1762 /* no of tx comp msgs following this struct */
1765 /* length in bytes for each individual msg following this struct */
1768 /* version of tx complete msg data following this struct */
1771 /* individual messages follow this header */
1776 * ------- AP Mode definitions --------------
1781 * -Changing the following values needs compilation of both driver and firmware
1783 #define AP_MAX_NUM_STA 8
1785 /* Spl. AID used to set DTIM flag in the beacons */
1786 #define MCAST_AID 0xFF
1788 #define DEF_AP_COUNTRY_CODE "US "
1790 /* Used with WMI_AP_SET_NUM_STA_CMDID */
1792 struct wmi_ap_set_pvb_cmd
{
1797 struct wmi_rx_frame_format_cmd
{
1798 /* version of meta data for rx packets <0 = default> (0-7 = valid) */
1802 * 1 == leave .11 header intact,
1803 * 0 == replace .11 header with .3 <default>
1808 * 1 == defragmentation is performed by host,
1809 * 0 == performed by target <default>
1817 /* AP mode events */
1819 /* WMI_PS_POLL_EVENT */
1820 struct wmi_pspoll_event
{
1824 struct wmi_per_sta_stat
{
1836 struct wmi_ap_mode_stat
{
1838 struct wmi_per_sta_stat sta
[AP_MAX_NUM_STA
+ 1];
1841 /* End of AP mode definitions */
1843 /* Extended WMI (WMIX)
1845 * Extended WMIX commands are encapsulated in a WMI message with
1846 * cmd=WMI_EXTENSION_CMD.
1848 * Extended WMI commands are those that are needed during wireless
1849 * operation, but which are not really wireless commands. This allows,
1850 * for instance, platform-specific commands. Extended WMI commands are
1851 * embedded in a WMI command message with WMI_COMMAND_ID=WMI_EXTENSION_CMDID.
1852 * Extended WMI events are similarly embedded in a WMI event message with
1853 * WMI_EVENT_ID=WMI_EXTENSION_EVENTID.
1855 struct wmix_cmd_hdr
{
1859 enum wmix_command_id
{
1860 WMIX_DSETOPEN_REPLY_CMDID
= 0x2001,
1861 WMIX_DSETDATA_REPLY_CMDID
,
1862 WMIX_GPIO_OUTPUT_SET_CMDID
,
1863 WMIX_GPIO_INPUT_GET_CMDID
,
1864 WMIX_GPIO_REGISTER_SET_CMDID
,
1865 WMIX_GPIO_REGISTER_GET_CMDID
,
1866 WMIX_GPIO_INTR_ACK_CMDID
,
1867 WMIX_HB_CHALLENGE_RESP_CMDID
,
1868 WMIX_DBGLOG_CFG_MODULE_CMDID
,
1869 WMIX_PROF_CFG_CMDID
, /* 0x200a */
1870 WMIX_PROF_ADDR_SET_CMDID
,
1871 WMIX_PROF_START_CMDID
,
1872 WMIX_PROF_STOP_CMDID
,
1873 WMIX_PROF_COUNT_GET_CMDID
,
1876 enum wmix_event_id
{
1877 WMIX_DSETOPENREQ_EVENTID
= 0x3001,
1878 WMIX_DSETCLOSE_EVENTID
,
1879 WMIX_DSETDATAREQ_EVENTID
,
1880 WMIX_GPIO_INTR_EVENTID
,
1881 WMIX_GPIO_DATA_EVENTID
,
1882 WMIX_GPIO_ACK_EVENTID
,
1883 WMIX_HB_CHALLENGE_RESP_EVENTID
,
1884 WMIX_DBGLOG_EVENTID
,
1885 WMIX_PROF_COUNT_EVENTID
,
1889 * ------Error Detection support-------
1893 * WMIX_HB_CHALLENGE_RESP_CMDID
1894 * Heartbeat Challenge Response command
1896 struct wmix_hb_challenge_resp_cmd
{
1901 /* End of Extended WMI (WMIX) */
1903 enum wmi_sync_flag
{
1904 NO_SYNC_WMIFLAG
= 0,
1906 /* transmit all queued data before cmd */
1907 SYNC_BEFORE_WMIFLAG
,
1909 /* any new data waits until cmd execs */
1918 enum htc_endpoint_id
ath6kl_wmi_get_control_ep(struct wmi
*wmi
);
1919 void ath6kl_wmi_set_control_ep(struct wmi
*wmi
, enum htc_endpoint_id ep_id
);
1920 int ath6kl_wmi_dix_2_dot3(struct wmi
*wmi
, struct sk_buff
*skb
);
1921 int ath6kl_wmi_data_hdr_add(struct wmi
*wmi
, struct sk_buff
*skb
,
1922 u8 msg_type
, bool more_data
,
1923 enum wmi_data_hdr_data_type data_type
,
1924 u8 meta_ver
, void *tx_meta_info
);
1926 int ath6kl_wmi_dot11_hdr_remove(struct wmi
*wmi
, struct sk_buff
*skb
);
1927 int ath6kl_wmi_dot3_2_dix(struct sk_buff
*skb
);
1928 int ath6kl_wmi_data_hdr_remove(struct wmi
*wmi
, struct sk_buff
*skb
);
1929 int ath6kl_wmi_implicit_create_pstream(struct wmi
*wmi
, struct sk_buff
*skb
,
1930 u32 layer2_priority
, bool wmm_enabled
,
1933 int ath6kl_wmi_control_rx(struct wmi
*wmi
, struct sk_buff
*skb
);
1934 struct bss
*ath6kl_wmi_find_node(struct wmi
*wmi
, const u8
*mac_addr
);
1935 void ath6kl_wmi_node_free(struct wmi
*wmi
, const u8
*mac_addr
);
1937 int ath6kl_wmi_cmd_send(struct wmi
*wmi
, struct sk_buff
*skb
,
1938 enum wmi_cmd_id cmd_id
, enum wmi_sync_flag sync_flag
);
1940 int ath6kl_wmi_connect_cmd(struct wmi
*wmi
, enum network_type nw_type
,
1941 enum dot11_auth_mode dot11_auth_mode
,
1942 enum auth_mode auth_mode
,
1943 enum crypto_type pairwise_crypto
,
1944 u8 pairwise_crypto_len
,
1945 enum crypto_type group_crypto
,
1946 u8 group_crypto_len
, int ssid_len
, u8
*ssid
,
1947 u8
*bssid
, u16 channel
, u32 ctrl_flags
);
1949 int ath6kl_wmi_reconnect_cmd(struct wmi
*wmi
, u8
*bssid
, u16 channel
);
1950 int ath6kl_wmi_disconnect_cmd(struct wmi
*wmi
);
1951 int ath6kl_wmi_startscan_cmd(struct wmi
*wmi
, enum wmi_scan_type scan_type
,
1952 u32 force_fgscan
, u32 is_legacy
,
1953 u32 home_dwell_time
, u32 force_scan_interval
,
1954 s8 num_chan
, u16
*ch_list
);
1955 int ath6kl_wmi_scanparams_cmd(struct wmi
*wmi
, u16 fg_start_sec
,
1956 u16 fg_end_sec
, u16 bg_sec
,
1957 u16 minact_chdw_msec
, u16 maxact_chdw_msec
,
1958 u16 pas_chdw_msec
, u8 short_scan_ratio
,
1959 u8 scan_ctrl_flag
, u32 max_dfsch_act_time
,
1960 u16 maxact_scan_per_ssid
);
1961 int ath6kl_wmi_bssfilter_cmd(struct wmi
*wmi
, u8 filter
, u32 ie_mask
);
1962 int ath6kl_wmi_probedssid_cmd(struct wmi
*wmi
, u8 index
, u8 flag
,
1963 u8 ssid_len
, u8
*ssid
);
1964 int ath6kl_wmi_listeninterval_cmd(struct wmi
*wmi
, u16 listen_interval
,
1965 u16 listen_beacons
);
1966 int ath6kl_wmi_powermode_cmd(struct wmi
*wmi
, u8 pwr_mode
);
1967 int ath6kl_wmi_pmparams_cmd(struct wmi
*wmi
, u16 idle_period
,
1968 u16 ps_poll_num
, u16 dtim_policy
,
1969 u16 tx_wakup_policy
, u16 num_tx_to_wakeup
,
1970 u16 ps_fail_event_policy
);
1971 int ath6kl_wmi_disctimeout_cmd(struct wmi
*wmi
, u8 timeout
);
1972 int ath6kl_wmi_create_pstream_cmd(struct wmi
*wmi
,
1973 struct wmi_create_pstream_cmd
*pstream
);
1974 int ath6kl_wmi_delete_pstream_cmd(struct wmi
*wmi
, u8 traffic_class
, u8 tsid
);
1976 int ath6kl_wmi_set_rts_cmd(struct wmi
*wmi
, u16 threshold
);
1977 int ath6kl_wmi_set_lpreamble_cmd(struct wmi
*wmi
, u8 status
,
1978 u8 preamble_policy
);
1980 int ath6kl_wmi_get_challenge_resp_cmd(struct wmi
*wmi
, u32 cookie
, u32 source
);
1982 int ath6kl_wmi_get_stats_cmd(struct wmi
*wmi
);
1983 int ath6kl_wmi_addkey_cmd(struct wmi
*wmi
, u8 key_index
,
1984 enum crypto_type key_type
,
1985 u8 key_usage
, u8 key_len
,
1986 u8
*key_rsc
, u8
*key_material
,
1987 u8 key_op_ctrl
, u8
*mac_addr
,
1988 enum wmi_sync_flag sync_flag
);
1989 int ath6kl_wmi_add_krk_cmd(struct wmi
*wmi
, u8
*krk
);
1990 int ath6kl_wmi_deletekey_cmd(struct wmi
*wmi
, u8 key_index
);
1991 int ath6kl_wmi_setpmkid_cmd(struct wmi
*wmi
, const u8
*bssid
,
1992 const u8
*pmkid
, bool set
);
1993 int ath6kl_wmi_set_tx_pwr_cmd(struct wmi
*wmi
, u8 dbM
);
1994 int ath6kl_wmi_get_tx_pwr_cmd(struct wmi
*wmi
);
1996 int ath6kl_wmi_set_wmm_txop(struct wmi
*wmi
, enum wmi_txop_cfg cfg
);
1997 int ath6kl_wmi_set_keepalive_cmd(struct wmi
*wmi
, u8 keep_alive_intvl
);
1999 s32
ath6kl_wmi_get_rate(s8 rate_index
);
2001 int ath6kl_wmi_set_ip_cmd(struct wmi
*wmi
, struct wmi_set_ip_cmd
*ip_cmd
);
2003 struct bss
*ath6kl_wmi_find_ssid_node(struct wmi
*wmi
, u8
*ssid
,
2004 u32 ssid_len
, bool is_wpa2
,
2007 void ath6kl_wmi_node_return(struct wmi
*wmi
, struct bss
*bss
);
2010 int ath6kl_wmi_set_pvb_cmd(struct wmi
*wmi
, u16 aid
, bool flag
);
2012 int ath6kl_wmi_set_rx_frame_format_cmd(struct wmi
*wmi
, u8 rx_meta_version
,
2013 bool rx_dot11_hdr
, bool defrag_on_host
);
2015 void *ath6kl_wmi_init(struct ath6kl
*devt
);
2016 void ath6kl_wmi_shutdown(struct wmi
*wmi
);