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