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