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