2 * Marvell Wireless LAN device driver: Firmware specific macros & structures
4 * Copyright (C) 2011, Marvell International Ltd.
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
20 #ifndef _MWIFIEX_FW_H_
21 #define _MWIFIEX_FW_H_
23 #include <linux/if_ether.h>
26 #define INTF_HEADER_LEN 4
36 struct rx_packet_hdr {
37 struct ethhdr eth803_hdr;
38 struct rfc_1042_hdr rfc1042_hdr;
41 struct tx_packet_hdr {
42 struct ethhdr eth803_hdr;
43 struct rfc_1042_hdr rfc1042_hdr;
46 #define B_SUPPORTED_RATES 5
47 #define G_SUPPORTED_RATES 9
48 #define BG_SUPPORTED_RATES 13
49 #define A_SUPPORTED_RATES 9
50 #define HOSTCMD_SUPPORTED_RATES 14
51 #define N_SUPPORTED_RATES 3
52 #define ALL_802_11_BANDS (BAND_A | BAND_B | BAND_G | BAND_GN)
54 #define FW_MULTI_BANDS_SUPPORT (BIT(8) | BIT(9) | BIT(10) | BIT(11))
55 #define IS_SUPPORT_MULTI_BANDS(adapter) \
56 (adapter->fw_cap_info & FW_MULTI_BANDS_SUPPORT)
57 #define GET_FW_DEFAULT_BANDS(adapter) \
58 ((adapter->fw_cap_info >> 8) & ALL_802_11_BANDS)
60 #define HostCmd_WEP_KEY_INDEX_MASK 0x3fff
62 #define KEY_INFO_ENABLED 0x01
69 #define KEY_MCAST BIT(0)
70 #define KEY_UNICAST BIT(1)
71 #define KEY_ENABLED BIT(2)
73 #define WAPI_KEY_LEN 50
75 #define MAX_POLL_TRIES 100
77 #define MAX_MULTI_INTERFACE_POLL_TRIES 1000
79 #define MAX_FIRMWARE_POLL_TRIES 100
81 #define FIRMWARE_READY_SDIO 0xfedc
82 #define FIRMWARE_READY_PCIE 0xfedcba00
84 enum MWIFIEX_802_11_PRIVACY_FILTER {
85 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
86 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
89 enum MWIFIEX_802_11_WEP_STATUS {
90 MWIFIEX_802_11_WEP_ENABLED,
91 MWIFIEX_802_11_WEP_DISABLED,
94 #define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
96 #define PROPRIETARY_TLV_BASE_ID 0x0100
97 #define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
98 #define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
99 #define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
100 #define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
101 #define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
102 #define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
103 #define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
104 #define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
105 #define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
106 #define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
107 #define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
108 #define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
109 #define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
110 #define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
111 #define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
113 #define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
115 #define SSN_MASK 0xfff0
117 #define BA_RESULT_SUCCESS 0x0
118 #define BA_RESULT_TIMEOUT 0x2
120 #define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
122 #define BA_STREAM_NOT_ALLOWED 0xff
124 #define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
125 priv->adapter->config_bands & BAND_AN) \
126 && priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
127 #define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
128 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
130 #define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
131 #define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
133 #define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
138 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
140 * 23 IEEE80211_HT_CAP_SGI_20
141 * 24 IEEE80211_HT_CAP_SGI_40
142 * 25 IEEE80211_HT_CAP_TX_STBC
143 * 26 IEEE80211_HT_CAP_RX_STBC
145 * 29 IEEE80211_HT_CAP_GRN_FLD
148 #define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
149 #define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
150 #define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
151 #define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
152 #define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
153 #define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
157 * 1 20/40 Mhz enable(1)/disable(0)
159 * 4 green field enable(1)/disable(0)
160 * 5 short GI in 20 Mhz enable(1)/disable(0)
161 * 6 short GI in 40 Mhz enable(1)/disable(0)
164 #define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
166 #define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
167 #define SETHT_MCS32(x) (x[4] |= 1)
168 #define HT_STREAM_2X2 0x22
170 #define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
172 #define LLC_SNAP_LEN 8
174 #define MOD_CLASS_HR_DSSS 0x03
175 #define MOD_CLASS_OFDM 0x07
176 #define MOD_CLASS_HT 0x08
180 #define HostCmd_CMD_GET_HW_SPEC 0x0003
181 #define HostCmd_CMD_802_11_SCAN 0x0006
182 #define HostCmd_CMD_802_11_GET_LOG 0x000b
183 #define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
184 #define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
185 #define HostCmd_CMD_802_11_ASSOCIATE 0x0012
186 #define HostCmd_CMD_802_11_SNMP_MIB 0x0016
187 #define HostCmd_CMD_MAC_REG_ACCESS 0x0019
188 #define HostCmd_CMD_BBP_REG_ACCESS 0x001a
189 #define HostCmd_CMD_RF_REG_ACCESS 0x001b
190 #define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
191 #define HostCmd_CMD_802_11_RF_CHANNEL 0x001d
192 #define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
193 #define HostCmd_CMD_MAC_CONTROL 0x0028
194 #define HostCmd_CMD_802_11_AD_HOC_START 0x002b
195 #define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
196 #define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
197 #define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
198 #define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
199 #define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
200 #define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
201 #define HostCmd_CMD_WMM_GET_STATUS 0x0071
202 #define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
203 #define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
204 #define HostCmd_CMD_VERSION_EXT 0x0097
205 #define HostCmd_CMD_RSSI_INFO 0x00a4
206 #define HostCmd_CMD_FUNC_INIT 0x00a9
207 #define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
208 #define HostCmd_CMD_11N_CFG 0x00cd
209 #define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
210 #define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
211 #define HostCmd_CMD_11N_DELBA 0x00d0
212 #define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
213 #define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
214 #define HostCmd_CMD_TXPWR_CFG 0x00d1
215 #define HostCmd_CMD_TX_RATE_CFG 0x00d6
216 #define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
217 #define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
218 #define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
219 #define HostCmd_CMD_SET_BSS_MODE 0x00f7
220 #define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
233 #define HostCmd_RET_BIT 0x8000
234 #define HostCmd_ACT_GEN_GET 0x0000
235 #define HostCmd_ACT_GEN_SET 0x0001
236 #define HostCmd_RESULT_OK 0x0000
238 #define HostCmd_ACT_MAC_RX_ON 0x0001
239 #define HostCmd_ACT_MAC_TX_ON 0x0002
240 #define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
241 #define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
242 #define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
243 #define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
244 #define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
246 #define HostCmd_BSS_MODE_IBSS 0x0002
247 #define HostCmd_BSS_MODE_ANY 0x0003
249 #define HostCmd_SCAN_RADIO_TYPE_BG 0
250 #define HostCmd_SCAN_RADIO_TYPE_A 1
252 #define HOST_SLEEP_CFG_CANCEL 0xffffffff
253 #define HOST_SLEEP_CFG_COND_DEF 0x0000000f
254 #define HOST_SLEEP_CFG_GPIO_DEF 0xff
255 #define HOST_SLEEP_CFG_GAP_DEF 0
257 #define CMD_F_HOSTCMD (1 << 0)
258 #define CMD_F_CANCELED (1 << 1)
260 #define HostCmd_CMD_ID_MASK 0x0fff
262 #define HostCmd_SEQ_NUM_MASK 0x00ff
264 #define HostCmd_BSS_NUM_MASK 0x0f00
266 #define HostCmd_BSS_TYPE_MASK 0xf000
268 #define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
269 (((seq) & 0x00ff) | \
270 (((num) & 0x000f) << 8)) | \
271 (((type) & 0x000f) << 12); }
273 #define HostCmd_GET_SEQ_NO(seq) \
274 ((seq) & HostCmd_SEQ_NUM_MASK)
276 #define HostCmd_GET_BSS_NO(seq) \
277 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
279 #define HostCmd_GET_BSS_TYPE(seq) \
280 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
282 #define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
283 #define EVENT_LINK_LOST 0x00000003
284 #define EVENT_LINK_SENSED 0x00000004
285 #define EVENT_MIB_CHANGED 0x00000006
286 #define EVENT_INIT_DONE 0x00000007
287 #define EVENT_DEAUTHENTICATED 0x00000008
288 #define EVENT_DISASSOCIATED 0x00000009
289 #define EVENT_PS_AWAKE 0x0000000a
290 #define EVENT_PS_SLEEP 0x0000000b
291 #define EVENT_MIC_ERR_MULTICAST 0x0000000d
292 #define EVENT_MIC_ERR_UNICAST 0x0000000e
293 #define EVENT_DEEP_SLEEP_AWAKE 0x00000010
294 #define EVENT_ADHOC_BCN_LOST 0x00000011
296 #define EVENT_WMM_STATUS_CHANGE 0x00000017
297 #define EVENT_BG_SCAN_REPORT 0x00000018
298 #define EVENT_RSSI_LOW 0x00000019
299 #define EVENT_SNR_LOW 0x0000001a
300 #define EVENT_MAX_FAIL 0x0000001b
301 #define EVENT_RSSI_HIGH 0x0000001c
302 #define EVENT_SNR_HIGH 0x0000001d
303 #define EVENT_IBSS_COALESCED 0x0000001e
304 #define EVENT_DATA_RSSI_LOW 0x00000024
305 #define EVENT_DATA_SNR_LOW 0x00000025
306 #define EVENT_DATA_RSSI_HIGH 0x00000026
307 #define EVENT_DATA_SNR_HIGH 0x00000027
308 #define EVENT_LINK_QUALITY 0x00000028
309 #define EVENT_PORT_RELEASE 0x0000002b
310 #define EVENT_PRE_BEACON_LOST 0x00000031
311 #define EVENT_ADDBA 0x00000033
312 #define EVENT_DELBA 0x00000034
313 #define EVENT_BA_STREAM_TIEMOUT 0x00000037
314 #define EVENT_AMSDU_AGGR_CTRL 0x00000042
315 #define EVENT_WEP_ICV_ERR 0x00000046
316 #define EVENT_HS_ACT_REQ 0x00000047
317 #define EVENT_BW_CHANGE 0x00000048
319 #define EVENT_HOSTWAKE_STAIE 0x0000004d
321 #define EVENT_ID_MASK 0xffff
322 #define BSS_NUM_MASK 0xf
324 #define EVENT_GET_BSS_NUM(event_cause) \
325 (((event_cause) >> 16) & BSS_NUM_MASK)
327 #define EVENT_GET_BSS_TYPE(event_cause) \
328 (((event_cause) >> 24) & 0x00ff)
330 struct mwifiex_ie_types_header {
335 struct mwifiex_ie_types_data {
336 struct mwifiex_ie_types_header header;
340 #define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
341 #define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
346 __le16 tx_pkt_length;
347 __le16 tx_pkt_offset;
367 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
368 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
369 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
374 enum mwifiex_chan_scan_mode_bitmasks {
375 MWIFIEX_PASSIVE_SCAN = BIT(0),
376 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
379 struct mwifiex_chan_scan_param_set {
382 u8 chan_scan_mode_bitmap;
383 __le16 min_scan_time;
384 __le16 max_scan_time;
387 struct mwifiex_ie_types_chan_list_param_set {
388 struct mwifiex_ie_types_header header;
389 struct mwifiex_chan_scan_param_set chan_scan_param[1];
392 struct chan_band_param_set {
397 struct mwifiex_ie_types_chan_band_list_param_set {
398 struct mwifiex_ie_types_header header;
399 struct chan_band_param_set chan_band_param[1];
402 struct mwifiex_ie_types_rates_param_set {
403 struct mwifiex_ie_types_header header;
407 struct mwifiex_ie_types_ssid_param_set {
408 struct mwifiex_ie_types_header header;
412 struct mwifiex_ie_types_num_probes {
413 struct mwifiex_ie_types_header header;
417 struct mwifiex_ie_types_wildcard_ssid_params {
418 struct mwifiex_ie_types_header header;
423 #define TSF_DATA_SIZE 8
424 struct mwifiex_ie_types_tsf_timestamp {
425 struct mwifiex_ie_types_header header;
429 struct mwifiex_cf_param_set {
432 u16 cfp_max_duration;
433 u16 cfp_duration_remaining;
436 struct mwifiex_ibss_param_set {
440 struct mwifiex_ie_types_ss_param_set {
441 struct mwifiex_ie_types_header header;
443 struct mwifiex_cf_param_set cf_param_set[1];
444 struct mwifiex_ibss_param_set ibss_param_set[1];
448 struct mwifiex_fh_param_set {
455 struct mwifiex_ds_param_set {
459 struct mwifiex_ie_types_phy_param_set {
460 struct mwifiex_ie_types_header header;
462 struct mwifiex_fh_param_set fh_param_set[1];
463 struct mwifiex_ds_param_set ds_param_set[1];
467 struct mwifiex_ie_types_auth_type {
468 struct mwifiex_ie_types_header header;
472 struct mwifiex_ie_types_vendor_param_set {
473 struct mwifiex_ie_types_header header;
474 u8 ie[MWIFIEX_MAX_VSIE_LEN];
477 struct mwifiex_ie_types_rsn_param_set {
478 struct mwifiex_ie_types_header header;
482 #define KEYPARAMSET_FIXED_LEN 6
484 struct mwifiex_ie_type_key_param_set {
493 struct host_cmd_ds_802_11_key_material {
495 struct mwifiex_ie_type_key_param_set key_param_set;
498 struct host_cmd_ds_gen {
505 #define S_DS_GEN sizeof(struct host_cmd_ds_gen)
507 enum sleep_resp_ctrl {
512 struct mwifiex_ps_param {
513 __le16 null_pkt_interval;
514 __le16 multiple_dtims;
515 __le16 bcn_miss_timeout;
516 __le16 local_listen_interval;
517 __le16 adhoc_wake_period;
522 #define BITMAP_AUTO_DS 0x01
523 #define BITMAP_STA_PS 0x10
525 struct mwifiex_ie_types_auto_ds_param {
526 struct mwifiex_ie_types_header header;
527 __le16 deep_sleep_timeout;
530 struct mwifiex_ie_types_ps_param {
531 struct mwifiex_ie_types_header header;
532 struct mwifiex_ps_param param;
535 struct host_cmd_ds_802_11_ps_mode_enh {
539 struct mwifiex_ps_param opt_ps;
544 struct host_cmd_ds_get_hw_spec {
545 __le16 hw_if_version;
548 __le16 num_of_mcast_adr;
549 u8 permanent_addr[ETH_ALEN];
551 __le16 number_of_antenna;
552 __le32 fw_release_number;
557 __le32 dot_11n_dev_cap;
559 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
563 struct host_cmd_ds_802_11_rssi_info {
568 long long reserved_1;
571 struct host_cmd_ds_802_11_rssi_info_rsp {
575 __le16 data_rssi_last;
577 __le16 data_rssi_avg;
579 __le16 bcn_rssi_last;
586 struct host_cmd_ds_802_11_mac_address {
588 u8 mac_addr[ETH_ALEN];
591 struct host_cmd_ds_mac_control {
596 struct host_cmd_ds_mac_multicast_adr {
599 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
602 struct host_cmd_ds_802_11_deauthenticate {
603 u8 mac_addr[ETH_ALEN];
607 struct host_cmd_ds_802_11_associate {
608 u8 peer_sta_addr[ETH_ALEN];
609 __le16 cap_info_bitmap;
610 __le16 listen_interval;
611 __le16 beacon_period;
615 struct ieee_types_assoc_rsp {
616 __le16 cap_info_bitmap;
622 struct host_cmd_ds_802_11_associate_rsp {
623 struct ieee_types_assoc_rsp assoc_rsp;
626 struct ieee_types_cf_param_set {
631 u16 cfp_max_duration;
632 u16 cfp_duration_remaining;
635 struct ieee_types_ibss_param_set {
641 union ieee_types_ss_param_set {
642 struct ieee_types_cf_param_set cf_param_set;
643 struct ieee_types_ibss_param_set ibss_param_set;
646 struct ieee_types_fh_param_set {
655 struct ieee_types_ds_param_set {
661 union ieee_types_phy_param_set {
662 struct ieee_types_fh_param_set fh_param_set;
663 struct ieee_types_ds_param_set ds_param_set;
666 struct host_cmd_ds_802_11_ad_hoc_start {
667 u8 ssid[IEEE80211_MAX_SSID_LEN];
669 __le16 beacon_period;
671 union ieee_types_ss_param_set ss_param_set;
672 union ieee_types_phy_param_set phy_param_set;
674 __le16 cap_info_bitmap;
675 u8 data_rate[HOSTCMD_SUPPORTED_RATES];
678 struct host_cmd_ds_802_11_ad_hoc_result {
683 struct adhoc_bss_desc {
685 u8 ssid[IEEE80211_MAX_SSID_LEN];
687 __le16 beacon_period;
691 union ieee_types_phy_param_set phy_param_set;
692 union ieee_types_ss_param_set ss_param_set;
693 __le16 cap_info_bitmap;
694 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
697 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
698 * It is used in the Adhoc join command and will cause a
699 * binary layout mismatch with the firmware
703 struct host_cmd_ds_802_11_ad_hoc_join {
704 struct adhoc_bss_desc bss_descriptor;
709 struct host_cmd_ds_802_11_get_log {
710 __le32 mcast_tx_frame;
719 __le32 mcast_rx_frame;
723 __le32 wep_icv_err_cnt[4];
726 struct host_cmd_ds_tx_rate_query {
728 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
729 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
730 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
734 enum Host_Sleep_Action {
735 HS_CONFIGURE = 0x0001,
736 HS_ACTIVATE = 0x0002,
739 struct mwifiex_hs_config_param {
745 struct hs_activate_param {
749 struct host_cmd_ds_802_11_hs_cfg_enh {
753 struct mwifiex_hs_config_param hs_config;
754 struct hs_activate_param hs_activate;
758 enum SNMP_MIB_INDEX {
762 SHORT_RETRY_LIM_I = 6,
763 LONG_RETRY_LIM_I = 7,
768 #define MAX_SNMP_BUF_SIZE 128
770 struct host_cmd_ds_802_11_snmp_mib {
777 struct mwifiex_rate_scope {
780 __le16 hr_dsss_rate_bitmap;
781 __le16 ofdm_rate_bitmap;
782 __le16 ht_mcs_rate_bitmap[8];
785 struct mwifiex_rate_drop_pattern {
788 __le32 rate_drop_mode;
791 struct host_cmd_ds_tx_rate_cfg {
796 struct mwifiex_power_group {
807 struct mwifiex_types_power_group {
812 struct host_cmd_ds_txpwr_cfg {
818 struct mwifiex_bcn_param {
822 __le16 beacon_period;
823 __le16 cap_info_bitmap;
826 #define MWIFIEX_USER_SCAN_CHAN_MAX 50
828 #define MWIFIEX_MAX_SSID_LIST_LENGTH 10
830 struct mwifiex_scan_cmd_config {
832 * BSS mode to be sent in the firmware command
836 /* Specific BSSID used to filter scan results in the firmware */
837 u8 specific_bssid[ETH_ALEN];
839 /* Length of TLVs sent in command starting at tlvBuffer */
843 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
845 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
846 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
848 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
852 struct mwifiex_user_scan_chan {
860 struct mwifiex_user_scan_ssid {
861 u8 ssid[IEEE80211_MAX_SSID_LEN + 1];
865 struct mwifiex_user_scan_cfg {
867 * BSS mode to be sent in the firmware command
870 /* Configure the number of probe requests for active chan scans */
873 /* BSSID filter sent in the firmware command to limit the results */
874 u8 specific_bssid[ETH_ALEN];
875 /* SSID filter list used in the to limit the scan results */
876 struct mwifiex_user_scan_ssid ssid_list[MWIFIEX_MAX_SSID_LIST_LENGTH];
877 /* Variable number (fixed maximum) of channels to scan up */
878 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
887 struct host_cmd_ds_802_11_scan {
893 struct host_cmd_ds_802_11_scan_rsp {
894 __le16 bss_descript_size;
896 u8 bss_desc_and_tlv_buffer[1];
899 struct host_cmd_ds_802_11_bg_scan_query {
903 struct host_cmd_ds_802_11_bg_scan_query_rsp {
904 u32 report_condition;
905 struct host_cmd_ds_802_11_scan_rsp scan_resp;
908 struct mwifiex_ietypes_domain_param_set {
909 struct mwifiex_ie_types_header header;
910 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
911 struct ieee80211_country_ie_triplet triplet[1];
914 struct host_cmd_ds_802_11d_domain_info {
916 struct mwifiex_ietypes_domain_param_set domain;
919 struct host_cmd_ds_802_11d_domain_info_rsp {
921 struct mwifiex_ietypes_domain_param_set domain;
924 struct host_cmd_ds_11n_addba_req {
926 u8 peer_mac_addr[ETH_ALEN];
928 __le16 block_ack_param_set;
929 __le16 block_ack_tmo;
933 struct host_cmd_ds_11n_addba_rsp {
935 u8 peer_mac_addr[ETH_ALEN];
938 __le16 block_ack_param_set;
939 __le16 block_ack_tmo;
943 struct host_cmd_ds_11n_delba {
945 u8 peer_mac_addr[ETH_ALEN];
946 __le16 del_ba_param_set;
951 struct host_cmd_ds_11n_batimeout {
953 u8 peer_mac_addr[ETH_ALEN];
957 struct host_cmd_ds_11n_cfg {
963 struct host_cmd_ds_txbuf_cfg {
966 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
970 struct host_cmd_ds_amsdu_aggr_ctrl {
973 __le16 curr_buf_size;
976 struct mwifiex_ie_types_wmm_param_set {
977 struct mwifiex_ie_types_header header;
981 struct mwifiex_ie_types_wmm_queue_status {
982 struct mwifiex_ie_types_header header;
991 struct ieee_types_vendor_header {
1000 struct ieee_types_wmm_ac_parameters {
1001 u8 aci_aifsn_bitmap;
1006 struct ieee_types_wmm_parameter {
1008 * WMM Parameter IE - Vendor Specific Header:
1009 * element_id [221/0xdd]
1016 struct ieee_types_vendor_header vend_hdr;
1019 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_MAX_QUEUES];
1022 struct ieee_types_wmm_info {
1025 * WMM Info IE - Vendor Specific Header:
1026 * element_id [221/0xdd]
1033 struct ieee_types_vendor_header vend_hdr;
1038 struct host_cmd_ds_wmm_get_status {
1039 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
1040 IEEE80211_MAX_QUEUES];
1041 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1044 struct mwifiex_wmm_ac_status {
1050 struct mwifiex_ie_types_htcap {
1051 struct mwifiex_ie_types_header header;
1052 struct ieee80211_ht_cap ht_cap;
1055 struct mwifiex_ie_types_htinfo {
1056 struct mwifiex_ie_types_header header;
1057 struct ieee80211_ht_info ht_info;
1060 struct mwifiex_ie_types_2040bssco {
1061 struct mwifiex_ie_types_header header;
1065 struct mwifiex_ie_types_extcap {
1066 struct mwifiex_ie_types_header header;
1070 struct host_cmd_ds_mac_reg_access {
1076 struct host_cmd_ds_bbp_reg_access {
1083 struct host_cmd_ds_rf_reg_access {
1090 struct host_cmd_ds_pmic_reg_access {
1097 struct host_cmd_ds_802_11_eeprom_access {
1105 struct host_cmd_ds_802_11_rf_channel {
1107 __le16 current_channel;
1113 struct host_cmd_ds_version_ext {
1115 char version_str[128];
1118 struct host_cmd_ds_802_11_ibss_status {
1122 __le16 beacon_interval;
1124 __le16 use_g_rate_protect;
1127 #define CONNECTION_TYPE_INFRA 0
1128 #define CONNECTION_TYPE_ADHOC 1
1130 struct host_cmd_ds_set_bss_mode {
1134 struct host_cmd_ds_pcie_details {
1135 /* TX buffer descriptor ring address */
1138 /* TX buffer descriptor ring count */
1141 /* RX buffer descriptor ring address */
1144 /* RX buffer descriptor ring count */
1147 /* Event buffer descriptor ring address */
1150 /* Event buffer descriptor ring count */
1153 /* Sleep cookie buffer physical address */
1154 u32 sleep_cookie_addr_lo;
1155 u32 sleep_cookie_addr_hi;
1158 struct host_cmd_ds_command {
1164 struct host_cmd_ds_get_hw_spec hw_spec;
1165 struct host_cmd_ds_mac_control mac_ctrl;
1166 struct host_cmd_ds_802_11_mac_address mac_addr;
1167 struct host_cmd_ds_mac_multicast_adr mc_addr;
1168 struct host_cmd_ds_802_11_get_log get_log;
1169 struct host_cmd_ds_802_11_rssi_info rssi_info;
1170 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1171 struct host_cmd_ds_802_11_snmp_mib smib;
1172 struct host_cmd_ds_802_11_rf_channel rf_channel;
1173 struct host_cmd_ds_tx_rate_query tx_rate;
1174 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1175 struct host_cmd_ds_txpwr_cfg txp_cfg;
1176 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1177 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1178 struct host_cmd_ds_802_11_scan scan;
1179 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1180 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1181 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1182 struct host_cmd_ds_802_11_associate associate;
1183 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1184 struct host_cmd_ds_802_11_deauthenticate deauth;
1185 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1186 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1187 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1188 struct host_cmd_ds_802_11d_domain_info domain_info;
1189 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1190 struct host_cmd_ds_11n_addba_req add_ba_req;
1191 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1192 struct host_cmd_ds_11n_delba del_ba;
1193 struct host_cmd_ds_txbuf_cfg tx_buf;
1194 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1195 struct host_cmd_ds_11n_cfg htcfg;
1196 struct host_cmd_ds_wmm_get_status get_wmm_status;
1197 struct host_cmd_ds_802_11_key_material key_material;
1198 struct host_cmd_ds_version_ext verext;
1199 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1200 struct host_cmd_ds_mac_reg_access mac_reg;
1201 struct host_cmd_ds_bbp_reg_access bbp_reg;
1202 struct host_cmd_ds_rf_reg_access rf_reg;
1203 struct host_cmd_ds_pmic_reg_access pmic_reg;
1204 struct host_cmd_ds_set_bss_mode bss_mode;
1205 struct host_cmd_ds_pcie_details pcie_host_spec;
1206 struct host_cmd_ds_802_11_eeprom_access eeprom;
1210 struct mwifiex_opt_sleep_confirm {
1218 #endif /* !_MWIFIEX_FW_H_ */