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