mwifiex: add support for Marvell pcie8766 chipset
[deliverable/linux.git] / drivers / net / wireless / mwifiex / fw.h
1 /*
2 * Marvell Wireless LAN device driver: Firmware specific macros & structures
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
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.
13 *
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.
18 */
19
20 #ifndef _MWIFIEX_FW_H_
21 #define _MWIFIEX_FW_H_
22
23 #include <linux/if_ether.h>
24
25
26 #define INTF_HEADER_LEN 4
27
28 struct rfc_1042_hdr {
29 u8 llc_dsap;
30 u8 llc_ssap;
31 u8 llc_ctrl;
32 u8 snap_oui[3];
33 u16 snap_type;
34 };
35
36 struct rx_packet_hdr {
37 struct ethhdr eth803_hdr;
38 struct rfc_1042_hdr rfc1042_hdr;
39 };
40
41 struct tx_packet_hdr {
42 struct ethhdr eth803_hdr;
43 struct rfc_1042_hdr rfc1042_hdr;
44 };
45
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)
53
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)
59
60 extern u8 supported_rates_b[B_SUPPORTED_RATES];
61 extern u8 supported_rates_g[G_SUPPORTED_RATES];
62 extern u8 supported_rates_bg[BG_SUPPORTED_RATES];
63 extern u8 supported_rates_a[A_SUPPORTED_RATES];
64 extern u8 supported_rates_n[N_SUPPORTED_RATES];
65
66 #define HostCmd_WEP_KEY_INDEX_MASK 0x3fff
67
68 #define KEY_INFO_ENABLED 0x01
69 enum KEY_TYPE_ID {
70 KEY_TYPE_ID_WEP = 0,
71 KEY_TYPE_ID_TKIP,
72 KEY_TYPE_ID_AES,
73 KEY_TYPE_ID_WAPI,
74 };
75 #define KEY_MCAST BIT(0)
76 #define KEY_UNICAST BIT(1)
77 #define KEY_ENABLED BIT(2)
78
79 #define WAPI_KEY_LEN 50
80
81 #define MAX_POLL_TRIES 100
82
83 #define MAX_MULTI_INTERFACE_POLL_TRIES 1000
84
85 #define MAX_FIRMWARE_POLL_TRIES 100
86
87 #define FIRMWARE_READY_SDIO 0xfedc
88 #define FIRMWARE_READY_PCIE 0xfedcba00
89
90 enum MWIFIEX_802_11_PRIVACY_FILTER {
91 MWIFIEX_802_11_PRIV_FILTER_ACCEPT_ALL,
92 MWIFIEX_802_11_PRIV_FILTER_8021X_WEP
93 };
94
95 enum MWIFIEX_802_11_WEP_STATUS {
96 MWIFIEX_802_11_WEP_ENABLED,
97 MWIFIEX_802_11_WEP_DISABLED,
98 };
99
100 #define CAL_SNR(RSSI, NF) ((s16)((s16)(RSSI)-(s16)(NF)))
101
102 #define PROPRIETARY_TLV_BASE_ID 0x0100
103 #define TLV_TYPE_KEY_MATERIAL (PROPRIETARY_TLV_BASE_ID + 0)
104 #define TLV_TYPE_CHANLIST (PROPRIETARY_TLV_BASE_ID + 1)
105 #define TLV_TYPE_NUMPROBES (PROPRIETARY_TLV_BASE_ID + 2)
106 #define TLV_TYPE_PASSTHROUGH (PROPRIETARY_TLV_BASE_ID + 10)
107 #define TLV_TYPE_WMMQSTATUS (PROPRIETARY_TLV_BASE_ID + 16)
108 #define TLV_TYPE_WILDCARDSSID (PROPRIETARY_TLV_BASE_ID + 18)
109 #define TLV_TYPE_TSFTIMESTAMP (PROPRIETARY_TLV_BASE_ID + 19)
110 #define TLV_TYPE_AUTH_TYPE (PROPRIETARY_TLV_BASE_ID + 31)
111 #define TLV_TYPE_CHANNELBANDLIST (PROPRIETARY_TLV_BASE_ID + 42)
112 #define TLV_TYPE_RATE_DROP_CONTROL (PROPRIETARY_TLV_BASE_ID + 82)
113 #define TLV_TYPE_RATE_SCOPE (PROPRIETARY_TLV_BASE_ID + 83)
114 #define TLV_TYPE_POWER_GROUP (PROPRIETARY_TLV_BASE_ID + 84)
115 #define TLV_TYPE_WAPI_IE (PROPRIETARY_TLV_BASE_ID + 94)
116 #define TLV_TYPE_AUTO_DS_PARAM (PROPRIETARY_TLV_BASE_ID + 113)
117 #define TLV_TYPE_PS_PARAM (PROPRIETARY_TLV_BASE_ID + 114)
118
119 #define MWIFIEX_TX_DATA_BUF_SIZE_2K 2048
120
121 #define SSN_MASK 0xfff0
122
123 #define BA_RESULT_SUCCESS 0x0
124 #define BA_RESULT_TIMEOUT 0x2
125
126 #define IS_BASTREAM_SETUP(ptr) (ptr->ba_status)
127
128 #define BA_STREAM_NOT_ALLOWED 0xff
129
130 #define IS_11N_ENABLED(priv) ((priv->adapter->config_bands & BAND_GN || \
131 priv->adapter->config_bands & BAND_AN) \
132 && priv->curr_bss_params.bss_descriptor.bcn_ht_cap)
133 #define INITIATOR_BIT(DelBAParamSet) (((DelBAParamSet) &\
134 BIT(DELBA_INITIATOR_POS)) >> DELBA_INITIATOR_POS)
135
136 #define MWIFIEX_TX_DATA_BUF_SIZE_4K 4096
137 #define MWIFIEX_TX_DATA_BUF_SIZE_8K 8192
138
139 #define ISSUPP_11NENABLED(FwCapInfo) (FwCapInfo & BIT(11))
140
141 /* dev_cap bitmap
142 * BIT
143 * 0-16 reserved
144 * 17 IEEE80211_HT_CAP_SUP_WIDTH_20_40
145 * 18-22 reserved
146 * 23 IEEE80211_HT_CAP_SGI_20
147 * 24 IEEE80211_HT_CAP_SGI_40
148 * 25 IEEE80211_HT_CAP_TX_STBC
149 * 26 IEEE80211_HT_CAP_RX_STBC
150 * 27-28 reserved
151 * 29 IEEE80211_HT_CAP_GRN_FLD
152 * 30-31 reserved
153 */
154 #define ISSUPP_CHANWIDTH40(Dot11nDevCap) (Dot11nDevCap & BIT(17))
155 #define ISSUPP_SHORTGI20(Dot11nDevCap) (Dot11nDevCap & BIT(23))
156 #define ISSUPP_SHORTGI40(Dot11nDevCap) (Dot11nDevCap & BIT(24))
157 #define ISSUPP_TXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(25))
158 #define ISSUPP_RXSTBC(Dot11nDevCap) (Dot11nDevCap & BIT(26))
159 #define ISSUPP_GREENFIELD(Dot11nDevCap) (Dot11nDevCap & BIT(29))
160
161 /* httxcfg bitmap
162 * 0 reserved
163 * 1 20/40 Mhz enable(1)/disable(0)
164 * 2-3 reserved
165 * 4 green field enable(1)/disable(0)
166 * 5 short GI in 20 Mhz enable(1)/disable(0)
167 * 6 short GI in 40 Mhz enable(1)/disable(0)
168 * 7-15 reserved
169 */
170 #define MWIFIEX_FW_DEF_HTTXCFG (BIT(1) | BIT(4) | BIT(5) | BIT(6))
171
172 #define GET_RXMCSSUPP(DevMCSSupported) (DevMCSSupported & 0x0f)
173 #define SETHT_MCS32(x) (x[4] |= 1)
174
175 #define SET_SECONDARYCHAN(RadioType, SECCHAN) (RadioType |= (SECCHAN << 4))
176
177 #define LLC_SNAP_LEN 8
178
179 #define MOD_CLASS_HR_DSSS 0x03
180 #define MOD_CLASS_OFDM 0x07
181 #define MOD_CLASS_HT 0x08
182 #define HT_BW_20 0
183 #define HT_BW_40 1
184
185 #define HostCmd_CMD_GET_HW_SPEC 0x0003
186 #define HostCmd_CMD_802_11_SCAN 0x0006
187 #define HostCmd_CMD_802_11_GET_LOG 0x000b
188 #define HostCmd_CMD_MAC_MULTICAST_ADR 0x0010
189 #define HostCmd_CMD_802_11_EEPROM_ACCESS 0x0059
190 #define HostCmd_CMD_802_11_ASSOCIATE 0x0012
191 #define HostCmd_CMD_802_11_SNMP_MIB 0x0016
192 #define HostCmd_CMD_MAC_REG_ACCESS 0x0019
193 #define HostCmd_CMD_BBP_REG_ACCESS 0x001a
194 #define HostCmd_CMD_RF_REG_ACCESS 0x001b
195 #define HostCmd_CMD_PMIC_REG_ACCESS 0x00ad
196 #define HostCmd_CMD_802_11_RF_CHANNEL 0x001d
197 #define HostCmd_CMD_802_11_DEAUTHENTICATE 0x0024
198 #define HostCmd_CMD_MAC_CONTROL 0x0028
199 #define HostCmd_CMD_802_11_AD_HOC_START 0x002b
200 #define HostCmd_CMD_802_11_AD_HOC_JOIN 0x002c
201 #define HostCmd_CMD_802_11_AD_HOC_STOP 0x0040
202 #define HostCmd_CMD_802_11_MAC_ADDRESS 0x004D
203 #define HostCmd_CMD_802_11D_DOMAIN_INFO 0x005b
204 #define HostCmd_CMD_802_11_KEY_MATERIAL 0x005e
205 #define HostCmd_CMD_802_11_BG_SCAN_QUERY 0x006c
206 #define HostCmd_CMD_WMM_GET_STATUS 0x0071
207 #define HostCmd_CMD_802_11_TX_RATE_QUERY 0x007f
208 #define HostCmd_CMD_802_11_IBSS_COALESCING_STATUS 0x0083
209 #define HostCmd_CMD_VERSION_EXT 0x0097
210 #define HostCmd_CMD_RSSI_INFO 0x00a4
211 #define HostCmd_CMD_FUNC_INIT 0x00a9
212 #define HostCmd_CMD_FUNC_SHUTDOWN 0x00aa
213 #define HostCmd_CMD_11N_CFG 0x00cd
214 #define HostCmd_CMD_11N_ADDBA_REQ 0x00ce
215 #define HostCmd_CMD_11N_ADDBA_RSP 0x00cf
216 #define HostCmd_CMD_11N_DELBA 0x00d0
217 #define HostCmd_CMD_RECONFIGURE_TX_BUFF 0x00d9
218 #define HostCmd_CMD_AMSDU_AGGR_CTRL 0x00df
219 #define HostCmd_CMD_TXPWR_CFG 0x00d1
220 #define HostCmd_CMD_TX_RATE_CFG 0x00d6
221 #define HostCmd_CMD_802_11_PS_MODE_ENH 0x00e4
222 #define HostCmd_CMD_802_11_HS_CFG_ENH 0x00e5
223 #define HostCmd_CMD_CAU_REG_ACCESS 0x00ed
224 #define HostCmd_CMD_SET_BSS_MODE 0x00f7
225 #define HostCmd_CMD_PCIE_DESC_DETAILS 0x00fa
226
227 enum ENH_PS_MODES {
228 EN_PS = 1,
229 DIS_PS = 2,
230 EN_AUTO_DS = 3,
231 DIS_AUTO_DS = 4,
232 SLEEP_CONFIRM = 5,
233 GET_PS = 0,
234 EN_AUTO_PS = 0xff,
235 DIS_AUTO_PS = 0xfe,
236 };
237
238 #define HostCmd_RET_BIT 0x8000
239 #define HostCmd_ACT_GEN_GET 0x0000
240 #define HostCmd_ACT_GEN_SET 0x0001
241 #define HostCmd_RESULT_OK 0x0000
242
243 #define HostCmd_ACT_MAC_RX_ON 0x0001
244 #define HostCmd_ACT_MAC_TX_ON 0x0002
245 #define HostCmd_ACT_MAC_WEP_ENABLE 0x0008
246 #define HostCmd_ACT_MAC_ETHERNETII_ENABLE 0x0010
247 #define HostCmd_ACT_MAC_PROMISCUOUS_ENABLE 0x0080
248 #define HostCmd_ACT_MAC_ALL_MULTICAST_ENABLE 0x0100
249 #define HostCmd_ACT_MAC_ADHOC_G_PROTECTION_ON 0x2000
250
251 #define HostCmd_BSS_MODE_IBSS 0x0002
252 #define HostCmd_BSS_MODE_ANY 0x0003
253
254 #define HostCmd_SCAN_RADIO_TYPE_BG 0
255 #define HostCmd_SCAN_RADIO_TYPE_A 1
256
257 #define HOST_SLEEP_CFG_CANCEL 0xffffffff
258 #define HOST_SLEEP_CFG_COND_DEF 0x0000000f
259 #define HOST_SLEEP_CFG_GPIO_DEF 0xff
260 #define HOST_SLEEP_CFG_GAP_DEF 0
261
262 #define CMD_F_HOSTCMD (1 << 0)
263 #define CMD_F_CANCELED (1 << 1)
264
265 #define HostCmd_CMD_ID_MASK 0x0fff
266
267 #define HostCmd_SEQ_NUM_MASK 0x00ff
268
269 #define HostCmd_BSS_NUM_MASK 0x0f00
270
271 #define HostCmd_BSS_TYPE_MASK 0xf000
272
273 #define HostCmd_SET_SEQ_NO_BSS_INFO(seq, num, type) { \
274 (((seq) & 0x00ff) | \
275 (((num) & 0x000f) << 8)) | \
276 (((type) & 0x000f) << 12); }
277
278 #define HostCmd_GET_SEQ_NO(seq) \
279 ((seq) & HostCmd_SEQ_NUM_MASK)
280
281 #define HostCmd_GET_BSS_NO(seq) \
282 (((seq) & HostCmd_BSS_NUM_MASK) >> 8)
283
284 #define HostCmd_GET_BSS_TYPE(seq) \
285 (((seq) & HostCmd_BSS_TYPE_MASK) >> 12)
286
287 #define EVENT_DUMMY_HOST_WAKEUP_SIGNAL 0x00000001
288 #define EVENT_LINK_LOST 0x00000003
289 #define EVENT_LINK_SENSED 0x00000004
290 #define EVENT_MIB_CHANGED 0x00000006
291 #define EVENT_INIT_DONE 0x00000007
292 #define EVENT_DEAUTHENTICATED 0x00000008
293 #define EVENT_DISASSOCIATED 0x00000009
294 #define EVENT_PS_AWAKE 0x0000000a
295 #define EVENT_PS_SLEEP 0x0000000b
296 #define EVENT_MIC_ERR_MULTICAST 0x0000000d
297 #define EVENT_MIC_ERR_UNICAST 0x0000000e
298 #define EVENT_DEEP_SLEEP_AWAKE 0x00000010
299 #define EVENT_ADHOC_BCN_LOST 0x00000011
300
301 #define EVENT_WMM_STATUS_CHANGE 0x00000017
302 #define EVENT_BG_SCAN_REPORT 0x00000018
303 #define EVENT_RSSI_LOW 0x00000019
304 #define EVENT_SNR_LOW 0x0000001a
305 #define EVENT_MAX_FAIL 0x0000001b
306 #define EVENT_RSSI_HIGH 0x0000001c
307 #define EVENT_SNR_HIGH 0x0000001d
308 #define EVENT_IBSS_COALESCED 0x0000001e
309 #define EVENT_DATA_RSSI_LOW 0x00000024
310 #define EVENT_DATA_SNR_LOW 0x00000025
311 #define EVENT_DATA_RSSI_HIGH 0x00000026
312 #define EVENT_DATA_SNR_HIGH 0x00000027
313 #define EVENT_LINK_QUALITY 0x00000028
314 #define EVENT_PORT_RELEASE 0x0000002b
315 #define EVENT_PRE_BEACON_LOST 0x00000031
316 #define EVENT_ADDBA 0x00000033
317 #define EVENT_DELBA 0x00000034
318 #define EVENT_BA_STREAM_TIEMOUT 0x00000037
319 #define EVENT_AMSDU_AGGR_CTRL 0x00000042
320 #define EVENT_WEP_ICV_ERR 0x00000046
321 #define EVENT_HS_ACT_REQ 0x00000047
322 #define EVENT_BW_CHANGE 0x00000048
323
324 #define EVENT_HOSTWAKE_STAIE 0x0000004d
325
326 #define EVENT_ID_MASK 0xffff
327 #define BSS_NUM_MASK 0xf
328
329 #define EVENT_GET_BSS_NUM(event_cause) \
330 (((event_cause) >> 16) & BSS_NUM_MASK)
331
332 #define EVENT_GET_BSS_TYPE(event_cause) \
333 (((event_cause) >> 24) & 0x00ff)
334
335 struct mwifiex_ie_types_header {
336 __le16 type;
337 __le16 len;
338 } __packed;
339
340 struct mwifiex_ie_types_data {
341 struct mwifiex_ie_types_header header;
342 u8 data[1];
343 } __packed;
344
345 #define MWIFIEX_TxPD_POWER_MGMT_NULL_PACKET 0x01
346 #define MWIFIEX_TxPD_POWER_MGMT_LAST_PACKET 0x08
347
348 struct txpd {
349 u8 bss_type;
350 u8 bss_num;
351 __le16 tx_pkt_length;
352 __le16 tx_pkt_offset;
353 __le16 tx_pkt_type;
354 __le32 tx_control;
355 u8 priority;
356 u8 flags;
357 u8 pkt_delay_2ms;
358 u8 reserved1;
359 } __packed;
360
361 struct rxpd {
362 u8 bss_type;
363 u8 bss_num;
364 u16 rx_pkt_length;
365 u16 rx_pkt_offset;
366 u16 rx_pkt_type;
367 u16 seq_num;
368 u8 priority;
369 u8 rx_rate;
370 s8 snr;
371 s8 nf;
372 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
373 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
374 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
375 u8 ht_info;
376 u8 reserved;
377 } __packed;
378
379 enum mwifiex_chan_scan_mode_bitmasks {
380 MWIFIEX_PASSIVE_SCAN = BIT(0),
381 MWIFIEX_DISABLE_CHAN_FILT = BIT(1),
382 };
383
384 #define SECOND_CHANNEL_BELOW 0x30
385 #define SECOND_CHANNEL_ABOVE 0x10
386 struct mwifiex_chan_scan_param_set {
387 u8 radio_type;
388 u8 chan_number;
389 u8 chan_scan_mode_bitmap;
390 __le16 min_scan_time;
391 __le16 max_scan_time;
392 } __packed;
393
394 struct mwifiex_ie_types_chan_list_param_set {
395 struct mwifiex_ie_types_header header;
396 struct mwifiex_chan_scan_param_set chan_scan_param[1];
397 } __packed;
398
399 struct chan_band_param_set {
400 u8 radio_type;
401 u8 chan_number;
402 };
403
404 struct mwifiex_ie_types_chan_band_list_param_set {
405 struct mwifiex_ie_types_header header;
406 struct chan_band_param_set chan_band_param[1];
407 } __packed;
408
409 struct mwifiex_ie_types_rates_param_set {
410 struct mwifiex_ie_types_header header;
411 u8 rates[1];
412 } __packed;
413
414 struct mwifiex_ie_types_ssid_param_set {
415 struct mwifiex_ie_types_header header;
416 u8 ssid[1];
417 } __packed;
418
419 struct mwifiex_ie_types_num_probes {
420 struct mwifiex_ie_types_header header;
421 __le16 num_probes;
422 } __packed;
423
424 struct mwifiex_ie_types_wildcard_ssid_params {
425 struct mwifiex_ie_types_header header;
426 u8 max_ssid_length;
427 u8 ssid[1];
428 } __packed;
429
430 #define TSF_DATA_SIZE 8
431 struct mwifiex_ie_types_tsf_timestamp {
432 struct mwifiex_ie_types_header header;
433 u8 tsf_data[1];
434 } __packed;
435
436 struct mwifiex_cf_param_set {
437 u8 cfp_cnt;
438 u8 cfp_period;
439 u16 cfp_max_duration;
440 u16 cfp_duration_remaining;
441 } __packed;
442
443 struct mwifiex_ibss_param_set {
444 u16 atim_window;
445 } __packed;
446
447 struct mwifiex_ie_types_ss_param_set {
448 struct mwifiex_ie_types_header header;
449 union {
450 struct mwifiex_cf_param_set cf_param_set[1];
451 struct mwifiex_ibss_param_set ibss_param_set[1];
452 } cf_ibss;
453 } __packed;
454
455 struct mwifiex_fh_param_set {
456 u16 dwell_time;
457 u8 hop_set;
458 u8 hop_pattern;
459 u8 hop_index;
460 } __packed;
461
462 struct mwifiex_ds_param_set {
463 u8 current_chan;
464 } __packed;
465
466 struct mwifiex_ie_types_phy_param_set {
467 struct mwifiex_ie_types_header header;
468 union {
469 struct mwifiex_fh_param_set fh_param_set[1];
470 struct mwifiex_ds_param_set ds_param_set[1];
471 } fh_ds;
472 } __packed;
473
474 struct mwifiex_ie_types_auth_type {
475 struct mwifiex_ie_types_header header;
476 __le16 auth_type;
477 } __packed;
478
479 struct mwifiex_ie_types_vendor_param_set {
480 struct mwifiex_ie_types_header header;
481 u8 ie[MWIFIEX_MAX_VSIE_LEN];
482 };
483
484 struct mwifiex_ie_types_rsn_param_set {
485 struct mwifiex_ie_types_header header;
486 u8 rsn_ie[1];
487 } __packed;
488
489 #define KEYPARAMSET_FIXED_LEN 6
490
491 struct mwifiex_ie_type_key_param_set {
492 __le16 type;
493 __le16 length;
494 __le16 key_type_id;
495 __le16 key_info;
496 __le16 key_len;
497 u8 key[50];
498 } __packed;
499
500 struct host_cmd_ds_802_11_key_material {
501 __le16 action;
502 struct mwifiex_ie_type_key_param_set key_param_set;
503 } __packed;
504
505 struct host_cmd_ds_gen {
506 u16 command;
507 u16 size;
508 u16 seq_num;
509 u16 result;
510 };
511
512 #define S_DS_GEN sizeof(struct host_cmd_ds_gen)
513
514 enum sleep_resp_ctrl {
515 RESP_NOT_NEEDED = 0,
516 RESP_NEEDED,
517 };
518
519 struct mwifiex_ps_param {
520 __le16 null_pkt_interval;
521 __le16 multiple_dtims;
522 __le16 bcn_miss_timeout;
523 __le16 local_listen_interval;
524 __le16 adhoc_wake_period;
525 __le16 mode;
526 __le16 delay_to_ps;
527 };
528
529 #define BITMAP_AUTO_DS 0x01
530 #define BITMAP_STA_PS 0x10
531
532 struct mwifiex_ie_types_auto_ds_param {
533 struct mwifiex_ie_types_header header;
534 __le16 deep_sleep_timeout;
535 } __packed;
536
537 struct mwifiex_ie_types_ps_param {
538 struct mwifiex_ie_types_header header;
539 struct mwifiex_ps_param param;
540 } __packed;
541
542 struct host_cmd_ds_802_11_ps_mode_enh {
543 __le16 action;
544
545 union {
546 struct mwifiex_ps_param opt_ps;
547 __le16 ps_bitmap;
548 } params;
549 } __packed;
550
551 struct host_cmd_ds_get_hw_spec {
552 __le16 hw_if_version;
553 __le16 version;
554 __le16 reserved;
555 __le16 num_of_mcast_adr;
556 u8 permanent_addr[ETH_ALEN];
557 __le16 region_code;
558 __le16 number_of_antenna;
559 __le32 fw_release_number;
560 __le32 reserved_1;
561 __le32 reserved_2;
562 __le32 reserved_3;
563 __le32 fw_cap_info;
564 __le32 dot_11n_dev_cap;
565 u8 dev_mcs_support;
566 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
567 __le16 reserved_4;
568 } __packed;
569
570 struct host_cmd_ds_802_11_rssi_info {
571 __le16 action;
572 __le16 ndata;
573 __le16 nbcn;
574 __le16 reserved[9];
575 long long reserved_1;
576 };
577
578 struct host_cmd_ds_802_11_rssi_info_rsp {
579 __le16 action;
580 __le16 ndata;
581 __le16 nbcn;
582 __le16 data_rssi_last;
583 __le16 data_nf_last;
584 __le16 data_rssi_avg;
585 __le16 data_nf_avg;
586 __le16 bcn_rssi_last;
587 __le16 bcn_nf_last;
588 __le16 bcn_rssi_avg;
589 __le16 bcn_nf_avg;
590 long long tsf_bcn;
591 };
592
593 struct host_cmd_ds_802_11_mac_address {
594 __le16 action;
595 u8 mac_addr[ETH_ALEN];
596 };
597
598 struct host_cmd_ds_mac_control {
599 __le16 action;
600 __le16 reserved;
601 };
602
603 struct host_cmd_ds_mac_multicast_adr {
604 __le16 action;
605 __le16 num_of_adrs;
606 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
607 } __packed;
608
609 struct host_cmd_ds_802_11_deauthenticate {
610 u8 mac_addr[ETH_ALEN];
611 __le16 reason_code;
612 } __packed;
613
614 struct host_cmd_ds_802_11_associate {
615 u8 peer_sta_addr[ETH_ALEN];
616 __le16 cap_info_bitmap;
617 __le16 listen_interval;
618 __le16 beacon_period;
619 u8 dtim_period;
620 } __packed;
621
622 struct ieee_types_assoc_rsp {
623 __le16 cap_info_bitmap;
624 __le16 status_code;
625 __le16 a_id;
626 u8 ie_buffer[1];
627 } __packed;
628
629 struct host_cmd_ds_802_11_associate_rsp {
630 struct ieee_types_assoc_rsp assoc_rsp;
631 } __packed;
632
633 struct ieee_types_cf_param_set {
634 u8 element_id;
635 u8 len;
636 u8 cfp_cnt;
637 u8 cfp_period;
638 u16 cfp_max_duration;
639 u16 cfp_duration_remaining;
640 } __packed;
641
642 struct ieee_types_ibss_param_set {
643 u8 element_id;
644 u8 len;
645 __le16 atim_window;
646 } __packed;
647
648 union ieee_types_ss_param_set {
649 struct ieee_types_cf_param_set cf_param_set;
650 struct ieee_types_ibss_param_set ibss_param_set;
651 } __packed;
652
653 struct ieee_types_fh_param_set {
654 u8 element_id;
655 u8 len;
656 __le16 dwell_time;
657 u8 hop_set;
658 u8 hop_pattern;
659 u8 hop_index;
660 } __packed;
661
662 struct ieee_types_ds_param_set {
663 u8 element_id;
664 u8 len;
665 u8 current_chan;
666 } __packed;
667
668 union ieee_types_phy_param_set {
669 struct ieee_types_fh_param_set fh_param_set;
670 struct ieee_types_ds_param_set ds_param_set;
671 } __packed;
672
673 struct host_cmd_ds_802_11_ad_hoc_start {
674 u8 ssid[IEEE80211_MAX_SSID_LEN];
675 u8 bss_mode;
676 __le16 beacon_period;
677 u8 dtim_period;
678 union ieee_types_ss_param_set ss_param_set;
679 union ieee_types_phy_param_set phy_param_set;
680 u16 reserved1;
681 __le16 cap_info_bitmap;
682 u8 DataRate[HOSTCMD_SUPPORTED_RATES];
683 } __packed;
684
685 struct host_cmd_ds_802_11_ad_hoc_result {
686 u8 pad[3];
687 u8 bssid[ETH_ALEN];
688 } __packed;
689
690 struct adhoc_bss_desc {
691 u8 bssid[ETH_ALEN];
692 u8 ssid[IEEE80211_MAX_SSID_LEN];
693 u8 bss_mode;
694 __le16 beacon_period;
695 u8 dtim_period;
696 u8 time_stamp[8];
697 u8 local_time[8];
698 union ieee_types_phy_param_set phy_param_set;
699 union ieee_types_ss_param_set ss_param_set;
700 __le16 cap_info_bitmap;
701 u8 data_rates[HOSTCMD_SUPPORTED_RATES];
702
703 /*
704 * DO NOT ADD ANY FIELDS TO THIS STRUCTURE.
705 * It is used in the Adhoc join command and will cause a
706 * binary layout mismatch with the firmware
707 */
708 } __packed;
709
710 struct host_cmd_ds_802_11_ad_hoc_join {
711 struct adhoc_bss_desc bss_descriptor;
712 u16 reserved1;
713 u16 reserved2;
714 } __packed;
715
716 struct host_cmd_ds_802_11_get_log {
717 __le32 mcast_tx_frame;
718 __le32 failed;
719 __le32 retry;
720 __le32 multi_retry;
721 __le32 frame_dup;
722 __le32 rts_success;
723 __le32 rts_failure;
724 __le32 ack_failure;
725 __le32 rx_frag;
726 __le32 mcast_rx_frame;
727 __le32 fcs_error;
728 __le32 tx_frame;
729 __le32 reserved;
730 __le32 wep_icv_err_cnt[4];
731 };
732
733 struct host_cmd_ds_tx_rate_query {
734 u8 tx_rate;
735 /* Ht Info [Bit 0] RxRate format: LG=0, HT=1
736 * [Bit 1] HT Bandwidth: BW20 = 0, BW40 = 1
737 * [Bit 2] HT Guard Interval: LGI = 0, SGI = 1 */
738 u8 ht_info;
739 } __packed;
740
741 enum Host_Sleep_Action {
742 HS_CONFIGURE = 0x0001,
743 HS_ACTIVATE = 0x0002,
744 };
745
746 struct mwifiex_hs_config_param {
747 __le32 conditions;
748 u8 gpio;
749 u8 gap;
750 } __packed;
751
752 struct hs_activate_param {
753 u16 resp_ctrl;
754 } __packed;
755
756 struct host_cmd_ds_802_11_hs_cfg_enh {
757 __le16 action;
758
759 union {
760 struct mwifiex_hs_config_param hs_config;
761 struct hs_activate_param hs_activate;
762 } params;
763 } __packed;
764
765 enum SNMP_MIB_INDEX {
766 OP_RATE_SET_I = 1,
767 DTIM_PERIOD_I = 3,
768 RTS_THRESH_I = 5,
769 SHORT_RETRY_LIM_I = 6,
770 LONG_RETRY_LIM_I = 7,
771 FRAG_THRESH_I = 8,
772 DOT11D_I = 9,
773 };
774
775 #define MAX_SNMP_BUF_SIZE 128
776
777 struct host_cmd_ds_802_11_snmp_mib {
778 __le16 query_type;
779 __le16 oid;
780 __le16 buf_size;
781 u8 value[1];
782 } __packed;
783
784 struct mwifiex_rate_scope {
785 __le16 type;
786 __le16 length;
787 __le16 hr_dsss_rate_bitmap;
788 __le16 ofdm_rate_bitmap;
789 __le16 ht_mcs_rate_bitmap[8];
790 } __packed;
791
792 struct mwifiex_rate_drop_pattern {
793 __le16 type;
794 __le16 length;
795 __le32 rate_drop_mode;
796 } __packed;
797
798 struct host_cmd_ds_tx_rate_cfg {
799 __le16 action;
800 __le16 cfg_index;
801 } __packed;
802
803 struct mwifiex_power_group {
804 u8 modulation_class;
805 u8 first_rate_code;
806 u8 last_rate_code;
807 s8 power_step;
808 s8 power_min;
809 s8 power_max;
810 u8 ht_bandwidth;
811 u8 reserved;
812 } __packed;
813
814 struct mwifiex_types_power_group {
815 u16 type;
816 u16 length;
817 } __packed;
818
819 struct host_cmd_ds_txpwr_cfg {
820 __le16 action;
821 __le16 cfg_index;
822 __le32 mode;
823 } __packed;
824
825 struct mwifiex_bcn_param {
826 u8 bssid[ETH_ALEN];
827 u8 rssi;
828 __le32 timestamp[2];
829 __le16 beacon_period;
830 __le16 cap_info_bitmap;
831 } __packed;
832
833 #define MWIFIEX_USER_SCAN_CHAN_MAX 50
834
835 #define MWIFIEX_MAX_SSID_LIST_LENGTH 10
836
837 struct mwifiex_scan_cmd_config {
838 /*
839 * BSS mode to be sent in the firmware command
840 */
841 u8 bss_mode;
842
843 /* Specific BSSID used to filter scan results in the firmware */
844 u8 specific_bssid[ETH_ALEN];
845
846 /* Length of TLVs sent in command starting at tlvBuffer */
847 u32 tlv_buf_len;
848
849 /*
850 * SSID TLV(s) and ChanList TLVs to be sent in the firmware command
851 *
852 * TLV_TYPE_CHANLIST, mwifiex_ie_types_chan_list_param_set
853 * WLAN_EID_SSID, mwifiex_ie_types_ssid_param_set
854 */
855 u8 tlv_buf[1]; /* SSID TLV(s) and ChanList TLVs are stored
856 here */
857 } __packed;
858
859 struct mwifiex_user_scan_chan {
860 u8 chan_number;
861 u8 radio_type;
862 u8 scan_type;
863 u8 reserved;
864 u32 scan_time;
865 } __packed;
866
867 struct mwifiex_user_scan_ssid {
868 u8 ssid[IEEE80211_MAX_SSID_LEN + 1];
869 u8 max_len;
870 } __packed;
871
872 struct mwifiex_user_scan_cfg {
873 /*
874 * BSS mode to be sent in the firmware command
875 */
876 u8 bss_mode;
877 /* Configure the number of probe requests for active chan scans */
878 u8 num_probes;
879 u8 reserved;
880 /* BSSID filter sent in the firmware command to limit the results */
881 u8 specific_bssid[ETH_ALEN];
882 /* SSID filter list used in the to limit the scan results */
883 struct mwifiex_user_scan_ssid ssid_list[MWIFIEX_MAX_SSID_LIST_LENGTH];
884 /* Variable number (fixed maximum) of channels to scan up */
885 struct mwifiex_user_scan_chan chan_list[MWIFIEX_USER_SCAN_CHAN_MAX];
886 } __packed;
887
888 struct ie_body {
889 u8 grp_key_oui[4];
890 u8 ptk_cnt[2];
891 u8 ptk_body[4];
892 } __packed;
893
894 struct host_cmd_ds_802_11_scan {
895 u8 bss_mode;
896 u8 bssid[ETH_ALEN];
897 u8 tlv_buffer[1];
898 } __packed;
899
900 struct host_cmd_ds_802_11_scan_rsp {
901 __le16 bss_descript_size;
902 u8 number_of_sets;
903 u8 bss_desc_and_tlv_buffer[1];
904 } __packed;
905
906 struct host_cmd_ds_802_11_bg_scan_query {
907 u8 flush;
908 } __packed;
909
910 struct host_cmd_ds_802_11_bg_scan_query_rsp {
911 u32 report_condition;
912 struct host_cmd_ds_802_11_scan_rsp scan_resp;
913 } __packed;
914
915 struct mwifiex_ietypes_domain_param_set {
916 struct mwifiex_ie_types_header header;
917 u8 country_code[IEEE80211_COUNTRY_STRING_LEN];
918 struct ieee80211_country_ie_triplet triplet[1];
919 } __packed;
920
921 struct host_cmd_ds_802_11d_domain_info {
922 __le16 action;
923 struct mwifiex_ietypes_domain_param_set domain;
924 } __packed;
925
926 struct host_cmd_ds_802_11d_domain_info_rsp {
927 __le16 action;
928 struct mwifiex_ietypes_domain_param_set domain;
929 } __packed;
930
931 struct host_cmd_ds_11n_addba_req {
932 u8 add_req_result;
933 u8 peer_mac_addr[ETH_ALEN];
934 u8 dialog_token;
935 __le16 block_ack_param_set;
936 __le16 block_ack_tmo;
937 __le16 ssn;
938 } __packed;
939
940 struct host_cmd_ds_11n_addba_rsp {
941 u8 add_rsp_result;
942 u8 peer_mac_addr[ETH_ALEN];
943 u8 dialog_token;
944 __le16 status_code;
945 __le16 block_ack_param_set;
946 __le16 block_ack_tmo;
947 __le16 ssn;
948 } __packed;
949
950 struct host_cmd_ds_11n_delba {
951 u8 del_result;
952 u8 peer_mac_addr[ETH_ALEN];
953 __le16 del_ba_param_set;
954 __le16 reason_code;
955 u8 reserved;
956 } __packed;
957
958 struct host_cmd_ds_11n_batimeout {
959 u8 tid;
960 u8 peer_mac_addr[ETH_ALEN];
961 u8 origninator;
962 } __packed;
963
964 struct host_cmd_ds_11n_cfg {
965 __le16 action;
966 __le16 ht_tx_cap;
967 __le16 ht_tx_info;
968 } __packed;
969
970 struct host_cmd_ds_txbuf_cfg {
971 __le16 action;
972 __le16 buff_size;
973 __le16 mp_end_port; /* SDIO only, reserved for other interfacces */
974 __le16 reserved3;
975 } __packed;
976
977 struct host_cmd_ds_amsdu_aggr_ctrl {
978 __le16 action;
979 __le16 enable;
980 __le16 curr_buf_size;
981 } __packed;
982
983 struct mwifiex_ie_types_wmm_param_set {
984 struct mwifiex_ie_types_header header;
985 u8 wmm_ie[1];
986 };
987
988 struct mwifiex_ie_types_wmm_queue_status {
989 struct mwifiex_ie_types_header header;
990 u8 queue_index;
991 u8 disabled;
992 u16 medium_time;
993 u8 flow_required;
994 u8 flow_created;
995 u32 reserved;
996 };
997
998 struct ieee_types_vendor_header {
999 u8 element_id;
1000 u8 len;
1001 u8 oui[3];
1002 u8 oui_type;
1003 u8 oui_subtype;
1004 u8 version;
1005 } __packed;
1006
1007 struct ieee_types_wmm_ac_parameters {
1008 u8 aci_aifsn_bitmap;
1009 u8 ecw_bitmap;
1010 __le16 tx_op_limit;
1011 } __packed;
1012
1013 struct ieee_types_wmm_parameter {
1014 /*
1015 * WMM Parameter IE - Vendor Specific Header:
1016 * element_id [221/0xdd]
1017 * Len [24]
1018 * Oui [00:50:f2]
1019 * OuiType [2]
1020 * OuiSubType [1]
1021 * Version [1]
1022 */
1023 struct ieee_types_vendor_header vend_hdr;
1024 u8 qos_info_bitmap;
1025 u8 reserved;
1026 struct ieee_types_wmm_ac_parameters ac_params[IEEE80211_MAX_QUEUES];
1027 } __packed;
1028
1029 struct ieee_types_wmm_info {
1030
1031 /*
1032 * WMM Info IE - Vendor Specific Header:
1033 * element_id [221/0xdd]
1034 * Len [7]
1035 * Oui [00:50:f2]
1036 * OuiType [2]
1037 * OuiSubType [0]
1038 * Version [1]
1039 */
1040 struct ieee_types_vendor_header vend_hdr;
1041
1042 u8 qos_info_bitmap;
1043 } __packed;
1044
1045 struct host_cmd_ds_wmm_get_status {
1046 u8 queue_status_tlv[sizeof(struct mwifiex_ie_types_wmm_queue_status) *
1047 IEEE80211_MAX_QUEUES];
1048 u8 wmm_param_tlv[sizeof(struct ieee_types_wmm_parameter) + 2];
1049 } __packed;
1050
1051 struct mwifiex_wmm_ac_status {
1052 u8 disabled;
1053 u8 flow_required;
1054 u8 flow_created;
1055 };
1056
1057 struct mwifiex_ie_types_htcap {
1058 struct mwifiex_ie_types_header header;
1059 struct ieee80211_ht_cap ht_cap;
1060 } __packed;
1061
1062 struct mwifiex_ie_types_htinfo {
1063 struct mwifiex_ie_types_header header;
1064 struct ieee80211_ht_info ht_info;
1065 } __packed;
1066
1067 struct mwifiex_ie_types_2040bssco {
1068 struct mwifiex_ie_types_header header;
1069 u8 bss_co_2040;
1070 } __packed;
1071
1072 struct mwifiex_ie_types_extcap {
1073 struct mwifiex_ie_types_header header;
1074 u8 ext_cap;
1075 } __packed;
1076
1077 struct host_cmd_ds_mac_reg_access {
1078 __le16 action;
1079 __le16 offset;
1080 __le32 value;
1081 } __packed;
1082
1083 struct host_cmd_ds_bbp_reg_access {
1084 __le16 action;
1085 __le16 offset;
1086 u8 value;
1087 u8 reserved[3];
1088 } __packed;
1089
1090 struct host_cmd_ds_rf_reg_access {
1091 __le16 action;
1092 __le16 offset;
1093 u8 value;
1094 u8 reserved[3];
1095 } __packed;
1096
1097 struct host_cmd_ds_pmic_reg_access {
1098 __le16 action;
1099 __le16 offset;
1100 u8 value;
1101 u8 reserved[3];
1102 } __packed;
1103
1104 struct host_cmd_ds_802_11_eeprom_access {
1105 __le16 action;
1106
1107 __le16 offset;
1108 __le16 byte_count;
1109 u8 value;
1110 } __packed;
1111
1112 struct host_cmd_ds_802_11_rf_channel {
1113 __le16 action;
1114 __le16 current_channel;
1115 __le16 rf_type;
1116 __le16 reserved;
1117 u8 reserved_1[32];
1118 } __packed;
1119
1120 struct host_cmd_ds_version_ext {
1121 u8 version_str_sel;
1122 char version_str[128];
1123 } __packed;
1124
1125 struct host_cmd_ds_802_11_ibss_status {
1126 __le16 action;
1127 __le16 enable;
1128 u8 bssid[ETH_ALEN];
1129 __le16 beacon_interval;
1130 __le16 atim_window;
1131 __le16 use_g_rate_protect;
1132 } __packed;
1133
1134 #define CONNECTION_TYPE_INFRA 0
1135 #define CONNECTION_TYPE_ADHOC 1
1136
1137 struct host_cmd_ds_set_bss_mode {
1138 u8 con_type;
1139 } __packed;
1140
1141 struct host_cmd_ds_pcie_details {
1142 /* TX buffer descriptor ring address */
1143 u32 txbd_addr_lo;
1144 u32 txbd_addr_hi;
1145 /* TX buffer descriptor ring count */
1146 u32 txbd_count;
1147
1148 /* RX buffer descriptor ring address */
1149 u32 rxbd_addr_lo;
1150 u32 rxbd_addr_hi;
1151 /* RX buffer descriptor ring count */
1152 u32 rxbd_count;
1153
1154 /* Event buffer descriptor ring address */
1155 u32 evtbd_addr_lo;
1156 u32 evtbd_addr_hi;
1157 /* Event buffer descriptor ring count */
1158 u32 evtbd_count;
1159
1160 /* Sleep cookie buffer physical address */
1161 u32 sleep_cookie_addr_lo;
1162 u32 sleep_cookie_addr_hi;
1163 } __packed;
1164
1165 struct host_cmd_ds_command {
1166 __le16 command;
1167 __le16 size;
1168 __le16 seq_num;
1169 __le16 result;
1170 union {
1171 struct host_cmd_ds_get_hw_spec hw_spec;
1172 struct host_cmd_ds_mac_control mac_ctrl;
1173 struct host_cmd_ds_802_11_mac_address mac_addr;
1174 struct host_cmd_ds_mac_multicast_adr mc_addr;
1175 struct host_cmd_ds_802_11_get_log get_log;
1176 struct host_cmd_ds_802_11_rssi_info rssi_info;
1177 struct host_cmd_ds_802_11_rssi_info_rsp rssi_info_rsp;
1178 struct host_cmd_ds_802_11_snmp_mib smib;
1179 struct host_cmd_ds_802_11_rf_channel rf_channel;
1180 struct host_cmd_ds_tx_rate_query tx_rate;
1181 struct host_cmd_ds_tx_rate_cfg tx_rate_cfg;
1182 struct host_cmd_ds_txpwr_cfg txp_cfg;
1183 struct host_cmd_ds_802_11_ps_mode_enh psmode_enh;
1184 struct host_cmd_ds_802_11_hs_cfg_enh opt_hs_cfg;
1185 struct host_cmd_ds_802_11_scan scan;
1186 struct host_cmd_ds_802_11_scan_rsp scan_resp;
1187 struct host_cmd_ds_802_11_bg_scan_query bg_scan_query;
1188 struct host_cmd_ds_802_11_bg_scan_query_rsp bg_scan_query_resp;
1189 struct host_cmd_ds_802_11_associate associate;
1190 struct host_cmd_ds_802_11_associate_rsp associate_rsp;
1191 struct host_cmd_ds_802_11_deauthenticate deauth;
1192 struct host_cmd_ds_802_11_ad_hoc_start adhoc_start;
1193 struct host_cmd_ds_802_11_ad_hoc_result adhoc_result;
1194 struct host_cmd_ds_802_11_ad_hoc_join adhoc_join;
1195 struct host_cmd_ds_802_11d_domain_info domain_info;
1196 struct host_cmd_ds_802_11d_domain_info_rsp domain_info_resp;
1197 struct host_cmd_ds_11n_addba_req add_ba_req;
1198 struct host_cmd_ds_11n_addba_rsp add_ba_rsp;
1199 struct host_cmd_ds_11n_delba del_ba;
1200 struct host_cmd_ds_txbuf_cfg tx_buf;
1201 struct host_cmd_ds_amsdu_aggr_ctrl amsdu_aggr_ctrl;
1202 struct host_cmd_ds_11n_cfg htcfg;
1203 struct host_cmd_ds_wmm_get_status get_wmm_status;
1204 struct host_cmd_ds_802_11_key_material key_material;
1205 struct host_cmd_ds_version_ext verext;
1206 struct host_cmd_ds_802_11_ibss_status ibss_coalescing;
1207 struct host_cmd_ds_mac_reg_access mac_reg;
1208 struct host_cmd_ds_bbp_reg_access bbp_reg;
1209 struct host_cmd_ds_rf_reg_access rf_reg;
1210 struct host_cmd_ds_pmic_reg_access pmic_reg;
1211 struct host_cmd_ds_set_bss_mode bss_mode;
1212 struct host_cmd_ds_pcie_details pcie_host_spec;
1213 struct host_cmd_ds_802_11_eeprom_access eeprom;
1214 } params;
1215 } __packed;
1216
1217 struct mwifiex_opt_sleep_confirm {
1218 __le16 command;
1219 __le16 size;
1220 __le16 seq_num;
1221 __le16 result;
1222 __le16 action;
1223 __le16 resp_ctrl;
1224 } __packed;
1225 #endif /* !_MWIFIEX_FW_H_ */
This page took 0.076738 seconds and 5 git commands to generate.