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