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