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