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