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