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