Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2005-2011 Atheros Communications Inc. |
| 3 | * Copyright (c) 2011-2013 Qualcomm Atheros, Inc. |
| 4 | * |
| 5 | * Permission to use, copy, modify, and/or distribute this software for any |
| 6 | * purpose with or without fee is hereby granted, provided that the above |
| 7 | * copyright notice and this permission notice appear in all copies. |
| 8 | * |
| 9 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 10 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 11 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 12 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 13 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 14 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 16 | */ |
| 17 | |
| 18 | #ifndef _WMI_H_ |
| 19 | #define _WMI_H_ |
| 20 | |
| 21 | #include <linux/types.h> |
| 22 | #include <net/mac80211.h> |
| 23 | |
| 24 | /* |
| 25 | * This file specifies the WMI interface for the Unified Software |
| 26 | * Architecture. |
| 27 | * |
| 28 | * It includes definitions of all the commands and events. Commands are |
| 29 | * messages from the host to the target. Events and Replies are messages |
| 30 | * from the target to the host. |
| 31 | * |
| 32 | * Ownership of correctness in regards to WMI commands belongs to the host |
| 33 | * driver and the target is not required to validate parameters for value, |
| 34 | * proper range, or any other checking. |
| 35 | * |
| 36 | * Guidelines for extending this interface are below. |
| 37 | * |
| 38 | * 1. Add new WMI commands ONLY within the specified range - 0x9000 - 0x9fff |
| 39 | * |
| 40 | * 2. Use ONLY u32 type for defining member variables within WMI |
| 41 | * command/event structures. Do not use u8, u16, bool or |
| 42 | * enum types within these structures. |
| 43 | * |
| 44 | * 3. DO NOT define bit fields within structures. Implement bit fields |
| 45 | * using masks if necessary. Do not use the programming language's bit |
| 46 | * field definition. |
| 47 | * |
| 48 | * 4. Define macros for encode/decode of u8, u16 fields within |
| 49 | * the u32 variables. Use these macros for set/get of these fields. |
| 50 | * Try to use this to optimize the structure without bloating it with |
| 51 | * u32 variables for every lower sized field. |
| 52 | * |
| 53 | * 5. Do not use PACK/UNPACK attributes for the structures as each member |
| 54 | * variable is already 4-byte aligned by virtue of being a u32 |
| 55 | * type. |
| 56 | * |
| 57 | * 6. Comment each parameter part of the WMI command/event structure by |
| 58 | * using the 2 stars at the begining of C comment instead of one star to |
| 59 | * enable HTML document generation using Doxygen. |
| 60 | * |
| 61 | */ |
| 62 | |
| 63 | /* Control Path */ |
| 64 | struct wmi_cmd_hdr { |
| 65 | __le32 cmd_id; |
| 66 | } __packed; |
| 67 | |
| 68 | #define WMI_CMD_HDR_CMD_ID_MASK 0x00FFFFFF |
| 69 | #define WMI_CMD_HDR_CMD_ID_LSB 0 |
| 70 | #define WMI_CMD_HDR_PLT_PRIV_MASK 0xFF000000 |
| 71 | #define WMI_CMD_HDR_PLT_PRIV_LSB 24 |
| 72 | |
| 73 | #define HTC_PROTOCOL_VERSION 0x0002 |
| 74 | #define WMI_PROTOCOL_VERSION 0x0002 |
| 75 | |
Kalle Valo | 3b8fc90 | 2015-10-05 17:56:37 +0300 | [diff] [blame] | 76 | /* |
| 77 | * There is no signed version of __le32, so for a temporary solution come |
| 78 | * up with our own version. The idea is from fs/ntfs/types.h. |
| 79 | * |
| 80 | * Use a_ prefix so that it doesn't conflict if we get proper support to |
| 81 | * linux/types.h. |
| 82 | */ |
| 83 | typedef __s32 __bitwise a_sle32; |
| 84 | |
| 85 | static inline a_sle32 a_cpu_to_sle32(s32 val) |
| 86 | { |
| 87 | return (__force a_sle32)cpu_to_le32(val); |
| 88 | } |
| 89 | |
| 90 | static inline s32 a_sle32_to_cpu(a_sle32 val) |
| 91 | { |
| 92 | return le32_to_cpu((__force __le32)val); |
| 93 | } |
| 94 | |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 95 | enum wmi_service { |
| 96 | WMI_SERVICE_BEACON_OFFLOAD = 0, |
| 97 | WMI_SERVICE_SCAN_OFFLOAD, |
| 98 | WMI_SERVICE_ROAM_OFFLOAD, |
| 99 | WMI_SERVICE_BCN_MISS_OFFLOAD, |
| 100 | WMI_SERVICE_STA_PWRSAVE, |
| 101 | WMI_SERVICE_STA_ADVANCED_PWRSAVE, |
| 102 | WMI_SERVICE_AP_UAPSD, |
| 103 | WMI_SERVICE_AP_DFS, |
| 104 | WMI_SERVICE_11AC, |
| 105 | WMI_SERVICE_BLOCKACK, |
| 106 | WMI_SERVICE_PHYERR, |
| 107 | WMI_SERVICE_BCN_FILTER, |
| 108 | WMI_SERVICE_RTT, |
| 109 | WMI_SERVICE_RATECTRL, |
| 110 | WMI_SERVICE_WOW, |
| 111 | WMI_SERVICE_RATECTRL_CACHE, |
| 112 | WMI_SERVICE_IRAM_TIDS, |
| 113 | WMI_SERVICE_ARPNS_OFFLOAD, |
| 114 | WMI_SERVICE_NLO, |
| 115 | WMI_SERVICE_GTK_OFFLOAD, |
| 116 | WMI_SERVICE_SCAN_SCH, |
| 117 | WMI_SERVICE_CSA_OFFLOAD, |
| 118 | WMI_SERVICE_CHATTER, |
| 119 | WMI_SERVICE_COEX_FREQAVOID, |
| 120 | WMI_SERVICE_PACKET_POWER_SAVE, |
| 121 | WMI_SERVICE_FORCE_FW_HANG, |
| 122 | WMI_SERVICE_GPIO, |
| 123 | WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM, |
| 124 | WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, |
| 125 | WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, |
| 126 | WMI_SERVICE_STA_KEEP_ALIVE, |
| 127 | WMI_SERVICE_TX_ENCAP, |
| 128 | WMI_SERVICE_BURST, |
| 129 | WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT, |
| 130 | WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT, |
Michal Kazior | ca996ec | 2014-12-03 10:11:32 +0200 | [diff] [blame] | 131 | WMI_SERVICE_ROAM_SCAN_OFFLOAD, |
| 132 | WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC, |
| 133 | WMI_SERVICE_EARLY_RX, |
| 134 | WMI_SERVICE_STA_SMPS, |
| 135 | WMI_SERVICE_FWTEST, |
| 136 | WMI_SERVICE_STA_WMMAC, |
| 137 | WMI_SERVICE_TDLS, |
| 138 | WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE, |
| 139 | WMI_SERVICE_ADAPTIVE_OCS, |
| 140 | WMI_SERVICE_BA_SSN_SUPPORT, |
| 141 | WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE, |
| 142 | WMI_SERVICE_WLAN_HB, |
| 143 | WMI_SERVICE_LTE_ANT_SHARE_SUPPORT, |
| 144 | WMI_SERVICE_BATCH_SCAN, |
| 145 | WMI_SERVICE_QPOWER, |
| 146 | WMI_SERVICE_PLMREQ, |
| 147 | WMI_SERVICE_THERMAL_MGMT, |
| 148 | WMI_SERVICE_RMC, |
| 149 | WMI_SERVICE_MHF_OFFLOAD, |
| 150 | WMI_SERVICE_COEX_SAR, |
| 151 | WMI_SERVICE_BCN_TXRATE_OVERRIDE, |
| 152 | WMI_SERVICE_NAN, |
| 153 | WMI_SERVICE_L1SS_STAT, |
| 154 | WMI_SERVICE_ESTIMATE_LINKSPEED, |
| 155 | WMI_SERVICE_OBSS_SCAN, |
| 156 | WMI_SERVICE_TDLS_OFFCHAN, |
| 157 | WMI_SERVICE_TDLS_UAPSD_BUFFER_STA, |
| 158 | WMI_SERVICE_TDLS_UAPSD_SLEEP_STA, |
| 159 | WMI_SERVICE_IBSS_PWRSAVE, |
| 160 | WMI_SERVICE_LPASS, |
| 161 | WMI_SERVICE_EXTSCAN, |
| 162 | WMI_SERVICE_D0WOW, |
| 163 | WMI_SERVICE_HSOFFLOAD, |
| 164 | WMI_SERVICE_ROAM_HO_OFFLOAD, |
| 165 | WMI_SERVICE_RX_FULL_REORDER, |
| 166 | WMI_SERVICE_DHCP_OFFLOAD, |
| 167 | WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT, |
| 168 | WMI_SERVICE_MDNS_OFFLOAD, |
| 169 | WMI_SERVICE_SAP_AUTH_OFFLOAD, |
Yanbo Li | 52c22a6 | 2015-04-15 15:28:07 +0300 | [diff] [blame] | 170 | WMI_SERVICE_ATF, |
Yanbo Li | de0c789b | 2015-04-15 15:28:08 +0300 | [diff] [blame] | 171 | WMI_SERVICE_COEX_GPIO, |
Raja Mani | 840357c | 2015-06-22 20:10:10 +0530 | [diff] [blame] | 172 | WMI_SERVICE_ENHANCED_PROXY_STA, |
| 173 | WMI_SERVICE_TT, |
| 174 | WMI_SERVICE_PEER_CACHING, |
| 175 | WMI_SERVICE_AUX_SPECTRAL_INTF, |
| 176 | WMI_SERVICE_AUX_CHAN_LOAD_INTF, |
| 177 | WMI_SERVICE_BSS_CHANNEL_INFO_64, |
Vasanthakumar Thiagarajan | e3c6225 | 2015-10-29 19:11:32 +0530 | [diff] [blame] | 178 | WMI_SERVICE_EXT_RES_CFG_SUPPORT, |
Peter Oh | 0b3d76e | 2016-01-28 13:54:07 -0800 | [diff] [blame] | 179 | WMI_SERVICE_MESH_11S, |
| 180 | WMI_SERVICE_MESH_NON_11S, |
Mohammed Shafi Shajakhan | de46c01 | 2016-01-13 21:16:28 +0530 | [diff] [blame] | 181 | WMI_SERVICE_PEER_STATS, |
Peter Oh | e70e9ba | 2016-01-28 13:54:08 -0800 | [diff] [blame] | 182 | WMI_SERVICE_RESTRT_CHNL_SUPPORT, |
Michal Kazior | c4f8c83 | 2014-09-04 10:18:32 +0200 | [diff] [blame] | 183 | |
| 184 | /* keep last */ |
| 185 | WMI_SERVICE_MAX, |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 186 | }; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 187 | |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 188 | enum wmi_10x_service { |
| 189 | WMI_10X_SERVICE_BEACON_OFFLOAD = 0, |
| 190 | WMI_10X_SERVICE_SCAN_OFFLOAD, |
| 191 | WMI_10X_SERVICE_ROAM_OFFLOAD, |
| 192 | WMI_10X_SERVICE_BCN_MISS_OFFLOAD, |
| 193 | WMI_10X_SERVICE_STA_PWRSAVE, |
| 194 | WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE, |
| 195 | WMI_10X_SERVICE_AP_UAPSD, |
| 196 | WMI_10X_SERVICE_AP_DFS, |
| 197 | WMI_10X_SERVICE_11AC, |
| 198 | WMI_10X_SERVICE_BLOCKACK, |
| 199 | WMI_10X_SERVICE_PHYERR, |
| 200 | WMI_10X_SERVICE_BCN_FILTER, |
| 201 | WMI_10X_SERVICE_RTT, |
| 202 | WMI_10X_SERVICE_RATECTRL, |
| 203 | WMI_10X_SERVICE_WOW, |
| 204 | WMI_10X_SERVICE_RATECTRL_CACHE, |
| 205 | WMI_10X_SERVICE_IRAM_TIDS, |
| 206 | WMI_10X_SERVICE_BURST, |
| 207 | |
| 208 | /* introduced in 10.2 */ |
| 209 | WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT, |
| 210 | WMI_10X_SERVICE_FORCE_FW_HANG, |
| 211 | WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT, |
Yanbo Li | 52c22a6 | 2015-04-15 15:28:07 +0300 | [diff] [blame] | 212 | WMI_10X_SERVICE_ATF, |
Yanbo Li | de0c789b | 2015-04-15 15:28:08 +0300 | [diff] [blame] | 213 | WMI_10X_SERVICE_COEX_GPIO, |
Peter Oh | 20fa2f7 | 2015-11-24 09:37:33 -0800 | [diff] [blame] | 214 | WMI_10X_SERVICE_AUX_SPECTRAL_INTF, |
| 215 | WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF, |
| 216 | WMI_10X_SERVICE_BSS_CHANNEL_INFO_64, |
| 217 | WMI_10X_SERVICE_MESH, |
| 218 | WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT, |
Mohammed Shafi Shajakhan | de46c01 | 2016-01-13 21:16:28 +0530 | [diff] [blame] | 219 | WMI_10X_SERVICE_PEER_STATS, |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 220 | }; |
| 221 | |
| 222 | enum wmi_main_service { |
| 223 | WMI_MAIN_SERVICE_BEACON_OFFLOAD = 0, |
| 224 | WMI_MAIN_SERVICE_SCAN_OFFLOAD, |
| 225 | WMI_MAIN_SERVICE_ROAM_OFFLOAD, |
| 226 | WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD, |
| 227 | WMI_MAIN_SERVICE_STA_PWRSAVE, |
| 228 | WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE, |
| 229 | WMI_MAIN_SERVICE_AP_UAPSD, |
| 230 | WMI_MAIN_SERVICE_AP_DFS, |
| 231 | WMI_MAIN_SERVICE_11AC, |
| 232 | WMI_MAIN_SERVICE_BLOCKACK, |
| 233 | WMI_MAIN_SERVICE_PHYERR, |
| 234 | WMI_MAIN_SERVICE_BCN_FILTER, |
| 235 | WMI_MAIN_SERVICE_RTT, |
| 236 | WMI_MAIN_SERVICE_RATECTRL, |
| 237 | WMI_MAIN_SERVICE_WOW, |
| 238 | WMI_MAIN_SERVICE_RATECTRL_CACHE, |
| 239 | WMI_MAIN_SERVICE_IRAM_TIDS, |
| 240 | WMI_MAIN_SERVICE_ARPNS_OFFLOAD, |
| 241 | WMI_MAIN_SERVICE_NLO, |
| 242 | WMI_MAIN_SERVICE_GTK_OFFLOAD, |
| 243 | WMI_MAIN_SERVICE_SCAN_SCH, |
| 244 | WMI_MAIN_SERVICE_CSA_OFFLOAD, |
| 245 | WMI_MAIN_SERVICE_CHATTER, |
| 246 | WMI_MAIN_SERVICE_COEX_FREQAVOID, |
| 247 | WMI_MAIN_SERVICE_PACKET_POWER_SAVE, |
| 248 | WMI_MAIN_SERVICE_FORCE_FW_HANG, |
| 249 | WMI_MAIN_SERVICE_GPIO, |
| 250 | WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM, |
| 251 | WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, |
| 252 | WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, |
| 253 | WMI_MAIN_SERVICE_STA_KEEP_ALIVE, |
| 254 | WMI_MAIN_SERVICE_TX_ENCAP, |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 255 | }; |
| 256 | |
Raja Mani | 840357c | 2015-06-22 20:10:10 +0530 | [diff] [blame] | 257 | enum wmi_10_4_service { |
| 258 | WMI_10_4_SERVICE_BEACON_OFFLOAD = 0, |
| 259 | WMI_10_4_SERVICE_SCAN_OFFLOAD, |
| 260 | WMI_10_4_SERVICE_ROAM_OFFLOAD, |
| 261 | WMI_10_4_SERVICE_BCN_MISS_OFFLOAD, |
| 262 | WMI_10_4_SERVICE_STA_PWRSAVE, |
| 263 | WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE, |
| 264 | WMI_10_4_SERVICE_AP_UAPSD, |
| 265 | WMI_10_4_SERVICE_AP_DFS, |
| 266 | WMI_10_4_SERVICE_11AC, |
| 267 | WMI_10_4_SERVICE_BLOCKACK, |
| 268 | WMI_10_4_SERVICE_PHYERR, |
| 269 | WMI_10_4_SERVICE_BCN_FILTER, |
| 270 | WMI_10_4_SERVICE_RTT, |
| 271 | WMI_10_4_SERVICE_RATECTRL, |
| 272 | WMI_10_4_SERVICE_WOW, |
| 273 | WMI_10_4_SERVICE_RATECTRL_CACHE, |
| 274 | WMI_10_4_SERVICE_IRAM_TIDS, |
| 275 | WMI_10_4_SERVICE_BURST, |
| 276 | WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT, |
| 277 | WMI_10_4_SERVICE_GTK_OFFLOAD, |
| 278 | WMI_10_4_SERVICE_SCAN_SCH, |
| 279 | WMI_10_4_SERVICE_CSA_OFFLOAD, |
| 280 | WMI_10_4_SERVICE_CHATTER, |
| 281 | WMI_10_4_SERVICE_COEX_FREQAVOID, |
| 282 | WMI_10_4_SERVICE_PACKET_POWER_SAVE, |
| 283 | WMI_10_4_SERVICE_FORCE_FW_HANG, |
| 284 | WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT, |
| 285 | WMI_10_4_SERVICE_GPIO, |
| 286 | WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, |
| 287 | WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, |
| 288 | WMI_10_4_SERVICE_STA_KEEP_ALIVE, |
| 289 | WMI_10_4_SERVICE_TX_ENCAP, |
| 290 | WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC, |
| 291 | WMI_10_4_SERVICE_EARLY_RX, |
| 292 | WMI_10_4_SERVICE_ENHANCED_PROXY_STA, |
| 293 | WMI_10_4_SERVICE_TT, |
| 294 | WMI_10_4_SERVICE_ATF, |
| 295 | WMI_10_4_SERVICE_PEER_CACHING, |
| 296 | WMI_10_4_SERVICE_COEX_GPIO, |
| 297 | WMI_10_4_SERVICE_AUX_SPECTRAL_INTF, |
| 298 | WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF, |
| 299 | WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64, |
Vasanthakumar Thiagarajan | e3c6225 | 2015-10-29 19:11:32 +0530 | [diff] [blame] | 300 | WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT, |
Peter Oh | 0b3d76e | 2016-01-28 13:54:07 -0800 | [diff] [blame] | 301 | WMI_10_4_SERVICE_MESH_NON_11S, |
Peter Oh | e70e9ba | 2016-01-28 13:54:08 -0800 | [diff] [blame] | 302 | WMI_10_4_SERVICE_RESTRT_CHNL_SUPPORT, |
| 303 | WMI_10_4_SERVICE_PEER_STATS, |
| 304 | WMI_10_4_SERVICE_MESH_11S, |
Raja Mani | 840357c | 2015-06-22 20:10:10 +0530 | [diff] [blame] | 305 | }; |
| 306 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 307 | static inline char *wmi_service_name(int service_id) |
| 308 | { |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 309 | #define SVCSTR(x) case x: return #x |
| 310 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 311 | switch (service_id) { |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 312 | SVCSTR(WMI_SERVICE_BEACON_OFFLOAD); |
| 313 | SVCSTR(WMI_SERVICE_SCAN_OFFLOAD); |
| 314 | SVCSTR(WMI_SERVICE_ROAM_OFFLOAD); |
| 315 | SVCSTR(WMI_SERVICE_BCN_MISS_OFFLOAD); |
| 316 | SVCSTR(WMI_SERVICE_STA_PWRSAVE); |
| 317 | SVCSTR(WMI_SERVICE_STA_ADVANCED_PWRSAVE); |
| 318 | SVCSTR(WMI_SERVICE_AP_UAPSD); |
| 319 | SVCSTR(WMI_SERVICE_AP_DFS); |
| 320 | SVCSTR(WMI_SERVICE_11AC); |
| 321 | SVCSTR(WMI_SERVICE_BLOCKACK); |
| 322 | SVCSTR(WMI_SERVICE_PHYERR); |
| 323 | SVCSTR(WMI_SERVICE_BCN_FILTER); |
| 324 | SVCSTR(WMI_SERVICE_RTT); |
| 325 | SVCSTR(WMI_SERVICE_RATECTRL); |
| 326 | SVCSTR(WMI_SERVICE_WOW); |
| 327 | SVCSTR(WMI_SERVICE_RATECTRL_CACHE); |
| 328 | SVCSTR(WMI_SERVICE_IRAM_TIDS); |
| 329 | SVCSTR(WMI_SERVICE_ARPNS_OFFLOAD); |
| 330 | SVCSTR(WMI_SERVICE_NLO); |
| 331 | SVCSTR(WMI_SERVICE_GTK_OFFLOAD); |
| 332 | SVCSTR(WMI_SERVICE_SCAN_SCH); |
| 333 | SVCSTR(WMI_SERVICE_CSA_OFFLOAD); |
| 334 | SVCSTR(WMI_SERVICE_CHATTER); |
| 335 | SVCSTR(WMI_SERVICE_COEX_FREQAVOID); |
| 336 | SVCSTR(WMI_SERVICE_PACKET_POWER_SAVE); |
| 337 | SVCSTR(WMI_SERVICE_FORCE_FW_HANG); |
| 338 | SVCSTR(WMI_SERVICE_GPIO); |
| 339 | SVCSTR(WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM); |
| 340 | SVCSTR(WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG); |
| 341 | SVCSTR(WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG); |
| 342 | SVCSTR(WMI_SERVICE_STA_KEEP_ALIVE); |
| 343 | SVCSTR(WMI_SERVICE_TX_ENCAP); |
| 344 | SVCSTR(WMI_SERVICE_BURST); |
| 345 | SVCSTR(WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT); |
| 346 | SVCSTR(WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT); |
Michal Kazior | ca996ec | 2014-12-03 10:11:32 +0200 | [diff] [blame] | 347 | SVCSTR(WMI_SERVICE_ROAM_SCAN_OFFLOAD); |
| 348 | SVCSTR(WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC); |
| 349 | SVCSTR(WMI_SERVICE_EARLY_RX); |
| 350 | SVCSTR(WMI_SERVICE_STA_SMPS); |
| 351 | SVCSTR(WMI_SERVICE_FWTEST); |
| 352 | SVCSTR(WMI_SERVICE_STA_WMMAC); |
| 353 | SVCSTR(WMI_SERVICE_TDLS); |
| 354 | SVCSTR(WMI_SERVICE_MCC_BCN_INTERVAL_CHANGE); |
| 355 | SVCSTR(WMI_SERVICE_ADAPTIVE_OCS); |
| 356 | SVCSTR(WMI_SERVICE_BA_SSN_SUPPORT); |
| 357 | SVCSTR(WMI_SERVICE_FILTER_IPSEC_NATKEEPALIVE); |
| 358 | SVCSTR(WMI_SERVICE_WLAN_HB); |
| 359 | SVCSTR(WMI_SERVICE_LTE_ANT_SHARE_SUPPORT); |
| 360 | SVCSTR(WMI_SERVICE_BATCH_SCAN); |
| 361 | SVCSTR(WMI_SERVICE_QPOWER); |
| 362 | SVCSTR(WMI_SERVICE_PLMREQ); |
| 363 | SVCSTR(WMI_SERVICE_THERMAL_MGMT); |
| 364 | SVCSTR(WMI_SERVICE_RMC); |
| 365 | SVCSTR(WMI_SERVICE_MHF_OFFLOAD); |
| 366 | SVCSTR(WMI_SERVICE_COEX_SAR); |
| 367 | SVCSTR(WMI_SERVICE_BCN_TXRATE_OVERRIDE); |
| 368 | SVCSTR(WMI_SERVICE_NAN); |
| 369 | SVCSTR(WMI_SERVICE_L1SS_STAT); |
| 370 | SVCSTR(WMI_SERVICE_ESTIMATE_LINKSPEED); |
| 371 | SVCSTR(WMI_SERVICE_OBSS_SCAN); |
| 372 | SVCSTR(WMI_SERVICE_TDLS_OFFCHAN); |
| 373 | SVCSTR(WMI_SERVICE_TDLS_UAPSD_BUFFER_STA); |
| 374 | SVCSTR(WMI_SERVICE_TDLS_UAPSD_SLEEP_STA); |
| 375 | SVCSTR(WMI_SERVICE_IBSS_PWRSAVE); |
| 376 | SVCSTR(WMI_SERVICE_LPASS); |
| 377 | SVCSTR(WMI_SERVICE_EXTSCAN); |
| 378 | SVCSTR(WMI_SERVICE_D0WOW); |
| 379 | SVCSTR(WMI_SERVICE_HSOFFLOAD); |
| 380 | SVCSTR(WMI_SERVICE_ROAM_HO_OFFLOAD); |
| 381 | SVCSTR(WMI_SERVICE_RX_FULL_REORDER); |
| 382 | SVCSTR(WMI_SERVICE_DHCP_OFFLOAD); |
| 383 | SVCSTR(WMI_SERVICE_STA_RX_IPA_OFFLOAD_SUPPORT); |
| 384 | SVCSTR(WMI_SERVICE_MDNS_OFFLOAD); |
| 385 | SVCSTR(WMI_SERVICE_SAP_AUTH_OFFLOAD); |
Yanbo Li | 52c22a6 | 2015-04-15 15:28:07 +0300 | [diff] [blame] | 386 | SVCSTR(WMI_SERVICE_ATF); |
Yanbo Li | de0c789b | 2015-04-15 15:28:08 +0300 | [diff] [blame] | 387 | SVCSTR(WMI_SERVICE_COEX_GPIO); |
Raja Mani | 840357c | 2015-06-22 20:10:10 +0530 | [diff] [blame] | 388 | SVCSTR(WMI_SERVICE_ENHANCED_PROXY_STA); |
| 389 | SVCSTR(WMI_SERVICE_TT); |
| 390 | SVCSTR(WMI_SERVICE_PEER_CACHING); |
| 391 | SVCSTR(WMI_SERVICE_AUX_SPECTRAL_INTF); |
| 392 | SVCSTR(WMI_SERVICE_AUX_CHAN_LOAD_INTF); |
| 393 | SVCSTR(WMI_SERVICE_BSS_CHANNEL_INFO_64); |
Vasanthakumar Thiagarajan | e3c6225 | 2015-10-29 19:11:32 +0530 | [diff] [blame] | 394 | SVCSTR(WMI_SERVICE_EXT_RES_CFG_SUPPORT); |
Peter Oh | 0b3d76e | 2016-01-28 13:54:07 -0800 | [diff] [blame] | 395 | SVCSTR(WMI_SERVICE_MESH_11S); |
| 396 | SVCSTR(WMI_SERVICE_MESH_NON_11S); |
Mohammed Shafi Shajakhan | de46c01 | 2016-01-13 21:16:28 +0530 | [diff] [blame] | 397 | SVCSTR(WMI_SERVICE_PEER_STATS); |
Peter Oh | e70e9ba | 2016-01-28 13:54:08 -0800 | [diff] [blame] | 398 | SVCSTR(WMI_SERVICE_RESTRT_CHNL_SUPPORT); |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 399 | default: |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 400 | return NULL; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 401 | } |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 402 | |
| 403 | #undef SVCSTR |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 404 | } |
| 405 | |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 406 | #define WMI_SERVICE_IS_ENABLED(wmi_svc_bmap, svc_id, len) \ |
| 407 | ((svc_id) < (len) && \ |
| 408 | __le32_to_cpu((wmi_svc_bmap)[(svc_id)/(sizeof(u32))]) & \ |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 409 | BIT((svc_id)%(sizeof(u32)))) |
| 410 | |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 411 | #define SVCMAP(x, y, len) \ |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 412 | do { \ |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 413 | if (WMI_SERVICE_IS_ENABLED((in), (x), (len))) \ |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 414 | __set_bit(y, out); \ |
| 415 | } while (0) |
| 416 | |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 417 | static inline void wmi_10x_svc_map(const __le32 *in, unsigned long *out, |
| 418 | size_t len) |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 419 | { |
| 420 | SVCMAP(WMI_10X_SERVICE_BEACON_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 421 | WMI_SERVICE_BEACON_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 422 | SVCMAP(WMI_10X_SERVICE_SCAN_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 423 | WMI_SERVICE_SCAN_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 424 | SVCMAP(WMI_10X_SERVICE_ROAM_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 425 | WMI_SERVICE_ROAM_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 426 | SVCMAP(WMI_10X_SERVICE_BCN_MISS_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 427 | WMI_SERVICE_BCN_MISS_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 428 | SVCMAP(WMI_10X_SERVICE_STA_PWRSAVE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 429 | WMI_SERVICE_STA_PWRSAVE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 430 | SVCMAP(WMI_10X_SERVICE_STA_ADVANCED_PWRSAVE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 431 | WMI_SERVICE_STA_ADVANCED_PWRSAVE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 432 | SVCMAP(WMI_10X_SERVICE_AP_UAPSD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 433 | WMI_SERVICE_AP_UAPSD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 434 | SVCMAP(WMI_10X_SERVICE_AP_DFS, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 435 | WMI_SERVICE_AP_DFS, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 436 | SVCMAP(WMI_10X_SERVICE_11AC, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 437 | WMI_SERVICE_11AC, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 438 | SVCMAP(WMI_10X_SERVICE_BLOCKACK, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 439 | WMI_SERVICE_BLOCKACK, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 440 | SVCMAP(WMI_10X_SERVICE_PHYERR, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 441 | WMI_SERVICE_PHYERR, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 442 | SVCMAP(WMI_10X_SERVICE_BCN_FILTER, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 443 | WMI_SERVICE_BCN_FILTER, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 444 | SVCMAP(WMI_10X_SERVICE_RTT, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 445 | WMI_SERVICE_RTT, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 446 | SVCMAP(WMI_10X_SERVICE_RATECTRL, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 447 | WMI_SERVICE_RATECTRL, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 448 | SVCMAP(WMI_10X_SERVICE_WOW, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 449 | WMI_SERVICE_WOW, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 450 | SVCMAP(WMI_10X_SERVICE_RATECTRL_CACHE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 451 | WMI_SERVICE_RATECTRL_CACHE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 452 | SVCMAP(WMI_10X_SERVICE_IRAM_TIDS, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 453 | WMI_SERVICE_IRAM_TIDS, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 454 | SVCMAP(WMI_10X_SERVICE_BURST, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 455 | WMI_SERVICE_BURST, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 456 | SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_SW_SUPPORT, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 457 | WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 458 | SVCMAP(WMI_10X_SERVICE_FORCE_FW_HANG, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 459 | WMI_SERVICE_FORCE_FW_HANG, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 460 | SVCMAP(WMI_10X_SERVICE_SMART_ANTENNA_HW_SUPPORT, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 461 | WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT, len); |
Yanbo Li | 52c22a6 | 2015-04-15 15:28:07 +0300 | [diff] [blame] | 462 | SVCMAP(WMI_10X_SERVICE_ATF, |
| 463 | WMI_SERVICE_ATF, len); |
Yanbo Li | de0c789b | 2015-04-15 15:28:08 +0300 | [diff] [blame] | 464 | SVCMAP(WMI_10X_SERVICE_COEX_GPIO, |
| 465 | WMI_SERVICE_COEX_GPIO, len); |
Peter Oh | 20fa2f7 | 2015-11-24 09:37:33 -0800 | [diff] [blame] | 466 | SVCMAP(WMI_10X_SERVICE_AUX_SPECTRAL_INTF, |
| 467 | WMI_SERVICE_AUX_SPECTRAL_INTF, len); |
| 468 | SVCMAP(WMI_10X_SERVICE_AUX_CHAN_LOAD_INTF, |
| 469 | WMI_SERVICE_AUX_CHAN_LOAD_INTF, len); |
| 470 | SVCMAP(WMI_10X_SERVICE_BSS_CHANNEL_INFO_64, |
| 471 | WMI_SERVICE_BSS_CHANNEL_INFO_64, len); |
| 472 | SVCMAP(WMI_10X_SERVICE_MESH, |
Peter Oh | 0b3d76e | 2016-01-28 13:54:07 -0800 | [diff] [blame] | 473 | WMI_SERVICE_MESH_11S, len); |
Peter Oh | 20fa2f7 | 2015-11-24 09:37:33 -0800 | [diff] [blame] | 474 | SVCMAP(WMI_10X_SERVICE_EXT_RES_CFG_SUPPORT, |
| 475 | WMI_SERVICE_EXT_RES_CFG_SUPPORT, len); |
Mohammed Shafi Shajakhan | de46c01 | 2016-01-13 21:16:28 +0530 | [diff] [blame] | 476 | SVCMAP(WMI_10X_SERVICE_PEER_STATS, |
| 477 | WMI_SERVICE_PEER_STATS, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 478 | } |
| 479 | |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 480 | static inline void wmi_main_svc_map(const __le32 *in, unsigned long *out, |
| 481 | size_t len) |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 482 | { |
| 483 | SVCMAP(WMI_MAIN_SERVICE_BEACON_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 484 | WMI_SERVICE_BEACON_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 485 | SVCMAP(WMI_MAIN_SERVICE_SCAN_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 486 | WMI_SERVICE_SCAN_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 487 | SVCMAP(WMI_MAIN_SERVICE_ROAM_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 488 | WMI_SERVICE_ROAM_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 489 | SVCMAP(WMI_MAIN_SERVICE_BCN_MISS_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 490 | WMI_SERVICE_BCN_MISS_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 491 | SVCMAP(WMI_MAIN_SERVICE_STA_PWRSAVE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 492 | WMI_SERVICE_STA_PWRSAVE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 493 | SVCMAP(WMI_MAIN_SERVICE_STA_ADVANCED_PWRSAVE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 494 | WMI_SERVICE_STA_ADVANCED_PWRSAVE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 495 | SVCMAP(WMI_MAIN_SERVICE_AP_UAPSD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 496 | WMI_SERVICE_AP_UAPSD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 497 | SVCMAP(WMI_MAIN_SERVICE_AP_DFS, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 498 | WMI_SERVICE_AP_DFS, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 499 | SVCMAP(WMI_MAIN_SERVICE_11AC, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 500 | WMI_SERVICE_11AC, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 501 | SVCMAP(WMI_MAIN_SERVICE_BLOCKACK, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 502 | WMI_SERVICE_BLOCKACK, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 503 | SVCMAP(WMI_MAIN_SERVICE_PHYERR, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 504 | WMI_SERVICE_PHYERR, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 505 | SVCMAP(WMI_MAIN_SERVICE_BCN_FILTER, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 506 | WMI_SERVICE_BCN_FILTER, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 507 | SVCMAP(WMI_MAIN_SERVICE_RTT, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 508 | WMI_SERVICE_RTT, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 509 | SVCMAP(WMI_MAIN_SERVICE_RATECTRL, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 510 | WMI_SERVICE_RATECTRL, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 511 | SVCMAP(WMI_MAIN_SERVICE_WOW, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 512 | WMI_SERVICE_WOW, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 513 | SVCMAP(WMI_MAIN_SERVICE_RATECTRL_CACHE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 514 | WMI_SERVICE_RATECTRL_CACHE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 515 | SVCMAP(WMI_MAIN_SERVICE_IRAM_TIDS, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 516 | WMI_SERVICE_IRAM_TIDS, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 517 | SVCMAP(WMI_MAIN_SERVICE_ARPNS_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 518 | WMI_SERVICE_ARPNS_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 519 | SVCMAP(WMI_MAIN_SERVICE_NLO, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 520 | WMI_SERVICE_NLO, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 521 | SVCMAP(WMI_MAIN_SERVICE_GTK_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 522 | WMI_SERVICE_GTK_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 523 | SVCMAP(WMI_MAIN_SERVICE_SCAN_SCH, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 524 | WMI_SERVICE_SCAN_SCH, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 525 | SVCMAP(WMI_MAIN_SERVICE_CSA_OFFLOAD, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 526 | WMI_SERVICE_CSA_OFFLOAD, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 527 | SVCMAP(WMI_MAIN_SERVICE_CHATTER, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 528 | WMI_SERVICE_CHATTER, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 529 | SVCMAP(WMI_MAIN_SERVICE_COEX_FREQAVOID, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 530 | WMI_SERVICE_COEX_FREQAVOID, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 531 | SVCMAP(WMI_MAIN_SERVICE_PACKET_POWER_SAVE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 532 | WMI_SERVICE_PACKET_POWER_SAVE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 533 | SVCMAP(WMI_MAIN_SERVICE_FORCE_FW_HANG, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 534 | WMI_SERVICE_FORCE_FW_HANG, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 535 | SVCMAP(WMI_MAIN_SERVICE_GPIO, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 536 | WMI_SERVICE_GPIO, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 537 | SVCMAP(WMI_MAIN_SERVICE_STA_DTIM_PS_MODULATED_DTIM, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 538 | WMI_SERVICE_STA_DTIM_PS_MODULATED_DTIM, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 539 | SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 540 | WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 541 | SVCMAP(WMI_MAIN_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 542 | WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 543 | SVCMAP(WMI_MAIN_SERVICE_STA_KEEP_ALIVE, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 544 | WMI_SERVICE_STA_KEEP_ALIVE, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 545 | SVCMAP(WMI_MAIN_SERVICE_TX_ENCAP, |
Michal Kazior | 37b9f93 | 2014-11-27 10:11:16 +0100 | [diff] [blame] | 546 | WMI_SERVICE_TX_ENCAP, len); |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 547 | } |
| 548 | |
Raja Mani | 840357c | 2015-06-22 20:10:10 +0530 | [diff] [blame] | 549 | static inline void wmi_10_4_svc_map(const __le32 *in, unsigned long *out, |
| 550 | size_t len) |
| 551 | { |
| 552 | SVCMAP(WMI_10_4_SERVICE_BEACON_OFFLOAD, |
| 553 | WMI_SERVICE_BEACON_OFFLOAD, len); |
| 554 | SVCMAP(WMI_10_4_SERVICE_SCAN_OFFLOAD, |
| 555 | WMI_SERVICE_SCAN_OFFLOAD, len); |
| 556 | SVCMAP(WMI_10_4_SERVICE_ROAM_OFFLOAD, |
| 557 | WMI_SERVICE_ROAM_OFFLOAD, len); |
| 558 | SVCMAP(WMI_10_4_SERVICE_BCN_MISS_OFFLOAD, |
| 559 | WMI_SERVICE_BCN_MISS_OFFLOAD, len); |
| 560 | SVCMAP(WMI_10_4_SERVICE_STA_PWRSAVE, |
| 561 | WMI_SERVICE_STA_PWRSAVE, len); |
| 562 | SVCMAP(WMI_10_4_SERVICE_STA_ADVANCED_PWRSAVE, |
| 563 | WMI_SERVICE_STA_ADVANCED_PWRSAVE, len); |
| 564 | SVCMAP(WMI_10_4_SERVICE_AP_UAPSD, |
| 565 | WMI_SERVICE_AP_UAPSD, len); |
| 566 | SVCMAP(WMI_10_4_SERVICE_AP_DFS, |
| 567 | WMI_SERVICE_AP_DFS, len); |
| 568 | SVCMAP(WMI_10_4_SERVICE_11AC, |
| 569 | WMI_SERVICE_11AC, len); |
| 570 | SVCMAP(WMI_10_4_SERVICE_BLOCKACK, |
| 571 | WMI_SERVICE_BLOCKACK, len); |
| 572 | SVCMAP(WMI_10_4_SERVICE_PHYERR, |
| 573 | WMI_SERVICE_PHYERR, len); |
| 574 | SVCMAP(WMI_10_4_SERVICE_BCN_FILTER, |
| 575 | WMI_SERVICE_BCN_FILTER, len); |
| 576 | SVCMAP(WMI_10_4_SERVICE_RTT, |
| 577 | WMI_SERVICE_RTT, len); |
| 578 | SVCMAP(WMI_10_4_SERVICE_RATECTRL, |
| 579 | WMI_SERVICE_RATECTRL, len); |
| 580 | SVCMAP(WMI_10_4_SERVICE_WOW, |
| 581 | WMI_SERVICE_WOW, len); |
| 582 | SVCMAP(WMI_10_4_SERVICE_RATECTRL_CACHE, |
| 583 | WMI_SERVICE_RATECTRL_CACHE, len); |
| 584 | SVCMAP(WMI_10_4_SERVICE_IRAM_TIDS, |
| 585 | WMI_SERVICE_IRAM_TIDS, len); |
| 586 | SVCMAP(WMI_10_4_SERVICE_BURST, |
| 587 | WMI_SERVICE_BURST, len); |
| 588 | SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_SW_SUPPORT, |
| 589 | WMI_SERVICE_SMART_ANTENNA_SW_SUPPORT, len); |
| 590 | SVCMAP(WMI_10_4_SERVICE_GTK_OFFLOAD, |
| 591 | WMI_SERVICE_GTK_OFFLOAD, len); |
| 592 | SVCMAP(WMI_10_4_SERVICE_SCAN_SCH, |
| 593 | WMI_SERVICE_SCAN_SCH, len); |
| 594 | SVCMAP(WMI_10_4_SERVICE_CSA_OFFLOAD, |
| 595 | WMI_SERVICE_CSA_OFFLOAD, len); |
| 596 | SVCMAP(WMI_10_4_SERVICE_CHATTER, |
| 597 | WMI_SERVICE_CHATTER, len); |
| 598 | SVCMAP(WMI_10_4_SERVICE_COEX_FREQAVOID, |
| 599 | WMI_SERVICE_COEX_FREQAVOID, len); |
| 600 | SVCMAP(WMI_10_4_SERVICE_PACKET_POWER_SAVE, |
| 601 | WMI_SERVICE_PACKET_POWER_SAVE, len); |
| 602 | SVCMAP(WMI_10_4_SERVICE_FORCE_FW_HANG, |
| 603 | WMI_SERVICE_FORCE_FW_HANG, len); |
| 604 | SVCMAP(WMI_10_4_SERVICE_SMART_ANTENNA_HW_SUPPORT, |
| 605 | WMI_SERVICE_SMART_ANTENNA_HW_SUPPORT, len); |
| 606 | SVCMAP(WMI_10_4_SERVICE_GPIO, |
| 607 | WMI_SERVICE_GPIO, len); |
| 608 | SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, |
| 609 | WMI_SERVICE_STA_UAPSD_BASIC_AUTO_TRIG, len); |
| 610 | SVCMAP(WMI_10_4_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, |
| 611 | WMI_SERVICE_STA_UAPSD_VAR_AUTO_TRIG, len); |
| 612 | SVCMAP(WMI_10_4_SERVICE_STA_KEEP_ALIVE, |
| 613 | WMI_SERVICE_STA_KEEP_ALIVE, len); |
| 614 | SVCMAP(WMI_10_4_SERVICE_TX_ENCAP, |
| 615 | WMI_SERVICE_TX_ENCAP, len); |
| 616 | SVCMAP(WMI_10_4_SERVICE_AP_PS_DETECT_OUT_OF_SYNC, |
| 617 | WMI_SERVICE_AP_PS_DETECT_OUT_OF_SYNC, len); |
| 618 | SVCMAP(WMI_10_4_SERVICE_EARLY_RX, |
| 619 | WMI_SERVICE_EARLY_RX, len); |
| 620 | SVCMAP(WMI_10_4_SERVICE_ENHANCED_PROXY_STA, |
| 621 | WMI_SERVICE_ENHANCED_PROXY_STA, len); |
| 622 | SVCMAP(WMI_10_4_SERVICE_TT, |
| 623 | WMI_SERVICE_TT, len); |
| 624 | SVCMAP(WMI_10_4_SERVICE_ATF, |
| 625 | WMI_SERVICE_ATF, len); |
| 626 | SVCMAP(WMI_10_4_SERVICE_PEER_CACHING, |
| 627 | WMI_SERVICE_PEER_CACHING, len); |
| 628 | SVCMAP(WMI_10_4_SERVICE_COEX_GPIO, |
| 629 | WMI_SERVICE_COEX_GPIO, len); |
| 630 | SVCMAP(WMI_10_4_SERVICE_AUX_SPECTRAL_INTF, |
| 631 | WMI_SERVICE_AUX_SPECTRAL_INTF, len); |
| 632 | SVCMAP(WMI_10_4_SERVICE_AUX_CHAN_LOAD_INTF, |
| 633 | WMI_SERVICE_AUX_CHAN_LOAD_INTF, len); |
| 634 | SVCMAP(WMI_10_4_SERVICE_BSS_CHANNEL_INFO_64, |
| 635 | WMI_SERVICE_BSS_CHANNEL_INFO_64, len); |
Vasanthakumar Thiagarajan | e3c6225 | 2015-10-29 19:11:32 +0530 | [diff] [blame] | 636 | SVCMAP(WMI_10_4_SERVICE_EXT_RES_CFG_SUPPORT, |
| 637 | WMI_SERVICE_EXT_RES_CFG_SUPPORT, len); |
Peter Oh | 0b3d76e | 2016-01-28 13:54:07 -0800 | [diff] [blame] | 638 | SVCMAP(WMI_10_4_SERVICE_MESH_NON_11S, |
| 639 | WMI_SERVICE_MESH_NON_11S, len); |
Peter Oh | e70e9ba | 2016-01-28 13:54:08 -0800 | [diff] [blame] | 640 | SVCMAP(WMI_10_4_SERVICE_RESTRT_CHNL_SUPPORT, |
| 641 | WMI_SERVICE_RESTRT_CHNL_SUPPORT, len); |
| 642 | SVCMAP(WMI_10_4_SERVICE_PEER_STATS, |
| 643 | WMI_SERVICE_PEER_STATS, len); |
| 644 | SVCMAP(WMI_10_4_SERVICE_MESH_11S, |
| 645 | WMI_SERVICE_MESH_11S, len); |
Raja Mani | 840357c | 2015-06-22 20:10:10 +0530 | [diff] [blame] | 646 | } |
| 647 | |
Michal Kazior | cff990c | 2014-08-04 09:18:33 +0300 | [diff] [blame] | 648 | #undef SVCMAP |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 649 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 650 | /* 2 word representation of MAC addr */ |
| 651 | struct wmi_mac_addr { |
| 652 | union { |
| 653 | u8 addr[6]; |
| 654 | struct { |
| 655 | u32 word0; |
| 656 | u32 word1; |
| 657 | } __packed; |
| 658 | } __packed; |
| 659 | } __packed; |
| 660 | |
Bartosz Markowski | ce42870 | 2013-09-26 17:47:05 +0200 | [diff] [blame] | 661 | struct wmi_cmd_map { |
| 662 | u32 init_cmdid; |
| 663 | u32 start_scan_cmdid; |
| 664 | u32 stop_scan_cmdid; |
| 665 | u32 scan_chan_list_cmdid; |
| 666 | u32 scan_sch_prio_tbl_cmdid; |
| 667 | u32 pdev_set_regdomain_cmdid; |
| 668 | u32 pdev_set_channel_cmdid; |
| 669 | u32 pdev_set_param_cmdid; |
| 670 | u32 pdev_pktlog_enable_cmdid; |
| 671 | u32 pdev_pktlog_disable_cmdid; |
| 672 | u32 pdev_set_wmm_params_cmdid; |
| 673 | u32 pdev_set_ht_cap_ie_cmdid; |
| 674 | u32 pdev_set_vht_cap_ie_cmdid; |
| 675 | u32 pdev_set_dscp_tid_map_cmdid; |
| 676 | u32 pdev_set_quiet_mode_cmdid; |
| 677 | u32 pdev_green_ap_ps_enable_cmdid; |
| 678 | u32 pdev_get_tpc_config_cmdid; |
| 679 | u32 pdev_set_base_macaddr_cmdid; |
| 680 | u32 vdev_create_cmdid; |
| 681 | u32 vdev_delete_cmdid; |
| 682 | u32 vdev_start_request_cmdid; |
| 683 | u32 vdev_restart_request_cmdid; |
| 684 | u32 vdev_up_cmdid; |
| 685 | u32 vdev_stop_cmdid; |
| 686 | u32 vdev_down_cmdid; |
| 687 | u32 vdev_set_param_cmdid; |
| 688 | u32 vdev_install_key_cmdid; |
| 689 | u32 peer_create_cmdid; |
| 690 | u32 peer_delete_cmdid; |
| 691 | u32 peer_flush_tids_cmdid; |
| 692 | u32 peer_set_param_cmdid; |
| 693 | u32 peer_assoc_cmdid; |
| 694 | u32 peer_add_wds_entry_cmdid; |
| 695 | u32 peer_remove_wds_entry_cmdid; |
| 696 | u32 peer_mcast_group_cmdid; |
| 697 | u32 bcn_tx_cmdid; |
| 698 | u32 pdev_send_bcn_cmdid; |
| 699 | u32 bcn_tmpl_cmdid; |
| 700 | u32 bcn_filter_rx_cmdid; |
| 701 | u32 prb_req_filter_rx_cmdid; |
| 702 | u32 mgmt_tx_cmdid; |
| 703 | u32 prb_tmpl_cmdid; |
| 704 | u32 addba_clear_resp_cmdid; |
| 705 | u32 addba_send_cmdid; |
| 706 | u32 addba_status_cmdid; |
| 707 | u32 delba_send_cmdid; |
| 708 | u32 addba_set_resp_cmdid; |
| 709 | u32 send_singleamsdu_cmdid; |
| 710 | u32 sta_powersave_mode_cmdid; |
| 711 | u32 sta_powersave_param_cmdid; |
| 712 | u32 sta_mimo_ps_mode_cmdid; |
| 713 | u32 pdev_dfs_enable_cmdid; |
| 714 | u32 pdev_dfs_disable_cmdid; |
| 715 | u32 roam_scan_mode; |
| 716 | u32 roam_scan_rssi_threshold; |
| 717 | u32 roam_scan_period; |
| 718 | u32 roam_scan_rssi_change_threshold; |
| 719 | u32 roam_ap_profile; |
| 720 | u32 ofl_scan_add_ap_profile; |
| 721 | u32 ofl_scan_remove_ap_profile; |
| 722 | u32 ofl_scan_period; |
| 723 | u32 p2p_dev_set_device_info; |
| 724 | u32 p2p_dev_set_discoverability; |
| 725 | u32 p2p_go_set_beacon_ie; |
| 726 | u32 p2p_go_set_probe_resp_ie; |
| 727 | u32 p2p_set_vendor_ie_data_cmdid; |
| 728 | u32 ap_ps_peer_param_cmdid; |
| 729 | u32 ap_ps_peer_uapsd_coex_cmdid; |
| 730 | u32 peer_rate_retry_sched_cmdid; |
| 731 | u32 wlan_profile_trigger_cmdid; |
| 732 | u32 wlan_profile_set_hist_intvl_cmdid; |
| 733 | u32 wlan_profile_get_profile_data_cmdid; |
| 734 | u32 wlan_profile_enable_profile_id_cmdid; |
| 735 | u32 wlan_profile_list_profile_id_cmdid; |
| 736 | u32 pdev_suspend_cmdid; |
| 737 | u32 pdev_resume_cmdid; |
| 738 | u32 add_bcn_filter_cmdid; |
| 739 | u32 rmv_bcn_filter_cmdid; |
| 740 | u32 wow_add_wake_pattern_cmdid; |
| 741 | u32 wow_del_wake_pattern_cmdid; |
| 742 | u32 wow_enable_disable_wake_event_cmdid; |
| 743 | u32 wow_enable_cmdid; |
| 744 | u32 wow_hostwakeup_from_sleep_cmdid; |
| 745 | u32 rtt_measreq_cmdid; |
| 746 | u32 rtt_tsf_cmdid; |
| 747 | u32 vdev_spectral_scan_configure_cmdid; |
| 748 | u32 vdev_spectral_scan_enable_cmdid; |
| 749 | u32 request_stats_cmdid; |
| 750 | u32 set_arp_ns_offload_cmdid; |
| 751 | u32 network_list_offload_config_cmdid; |
| 752 | u32 gtk_offload_cmdid; |
| 753 | u32 csa_offload_enable_cmdid; |
| 754 | u32 csa_offload_chanswitch_cmdid; |
| 755 | u32 chatter_set_mode_cmdid; |
| 756 | u32 peer_tid_addba_cmdid; |
| 757 | u32 peer_tid_delba_cmdid; |
| 758 | u32 sta_dtim_ps_method_cmdid; |
| 759 | u32 sta_uapsd_auto_trig_cmdid; |
| 760 | u32 sta_keepalive_cmd; |
| 761 | u32 echo_cmdid; |
| 762 | u32 pdev_utf_cmdid; |
| 763 | u32 dbglog_cfg_cmdid; |
| 764 | u32 pdev_qvit_cmdid; |
| 765 | u32 pdev_ftm_intg_cmdid; |
| 766 | u32 vdev_set_keepalive_cmdid; |
| 767 | u32 vdev_get_keepalive_cmdid; |
| 768 | u32 force_fw_hang_cmdid; |
| 769 | u32 gpio_config_cmdid; |
| 770 | u32 gpio_output_cmdid; |
Rajkumar Manoharan | a57a6a2 | 2014-12-17 12:22:17 +0200 | [diff] [blame] | 771 | u32 pdev_get_temperature_cmdid; |
Michal Kazior | 6d492fe | 2015-01-28 09:57:22 +0200 | [diff] [blame] | 772 | u32 vdev_set_wmm_params_cmdid; |
Marek Puzyniak | ad45c88 | 2015-03-30 09:51:53 +0300 | [diff] [blame] | 773 | u32 tdls_set_state_cmdid; |
| 774 | u32 tdls_peer_update_cmdid; |
Michal Kazior | 5b272e3 | 2015-03-31 10:26:22 +0000 | [diff] [blame] | 775 | u32 adaptive_qcs_cmdid; |
Raja Mani | 2d491e6 | 2015-06-22 20:10:11 +0530 | [diff] [blame] | 776 | u32 scan_update_request_cmdid; |
| 777 | u32 vdev_standby_response_cmdid; |
| 778 | u32 vdev_resume_response_cmdid; |
| 779 | u32 wlan_peer_caching_add_peer_cmdid; |
| 780 | u32 wlan_peer_caching_evict_peer_cmdid; |
| 781 | u32 wlan_peer_caching_restore_peer_cmdid; |
| 782 | u32 wlan_peer_caching_print_all_peers_info_cmdid; |
| 783 | u32 peer_update_wds_entry_cmdid; |
| 784 | u32 peer_add_proxy_sta_entry_cmdid; |
| 785 | u32 rtt_keepalive_cmdid; |
| 786 | u32 oem_req_cmdid; |
| 787 | u32 nan_cmdid; |
| 788 | u32 vdev_ratemask_cmdid; |
| 789 | u32 qboost_cfg_cmdid; |
| 790 | u32 pdev_smart_ant_enable_cmdid; |
| 791 | u32 pdev_smart_ant_set_rx_antenna_cmdid; |
| 792 | u32 peer_smart_ant_set_tx_antenna_cmdid; |
| 793 | u32 peer_smart_ant_set_train_info_cmdid; |
| 794 | u32 peer_smart_ant_set_node_config_ops_cmdid; |
| 795 | u32 pdev_set_antenna_switch_table_cmdid; |
| 796 | u32 pdev_set_ctl_table_cmdid; |
| 797 | u32 pdev_set_mimogain_table_cmdid; |
| 798 | u32 pdev_ratepwr_table_cmdid; |
| 799 | u32 pdev_ratepwr_chainmsk_table_cmdid; |
| 800 | u32 pdev_fips_cmdid; |
| 801 | u32 tt_set_conf_cmdid; |
| 802 | u32 fwtest_cmdid; |
| 803 | u32 vdev_atf_request_cmdid; |
| 804 | u32 peer_atf_request_cmdid; |
| 805 | u32 pdev_get_ani_cck_config_cmdid; |
| 806 | u32 pdev_get_ani_ofdm_config_cmdid; |
| 807 | u32 pdev_reserve_ast_entry_cmdid; |
| 808 | u32 pdev_get_nfcal_power_cmdid; |
| 809 | u32 pdev_get_tpc_cmdid; |
| 810 | u32 pdev_get_ast_info_cmdid; |
| 811 | u32 vdev_set_dscp_tid_map_cmdid; |
| 812 | u32 pdev_get_info_cmdid; |
| 813 | u32 vdev_get_info_cmdid; |
| 814 | u32 vdev_filter_neighbor_rx_packets_cmdid; |
| 815 | u32 mu_cal_start_cmdid; |
| 816 | u32 set_cca_params_cmdid; |
| 817 | u32 pdev_bss_chan_info_request_cmdid; |
Maharaja | 62f77f0 | 2015-10-21 11:49:18 +0300 | [diff] [blame] | 818 | u32 pdev_enable_adaptive_cca_cmdid; |
Bartosz Markowski | ce42870 | 2013-09-26 17:47:05 +0200 | [diff] [blame] | 819 | }; |
| 820 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 821 | /* |
| 822 | * wmi command groups. |
| 823 | */ |
| 824 | enum wmi_cmd_group { |
| 825 | /* 0 to 2 are reserved */ |
| 826 | WMI_GRP_START = 0x3, |
| 827 | WMI_GRP_SCAN = WMI_GRP_START, |
| 828 | WMI_GRP_PDEV, |
| 829 | WMI_GRP_VDEV, |
| 830 | WMI_GRP_PEER, |
| 831 | WMI_GRP_MGMT, |
| 832 | WMI_GRP_BA_NEG, |
| 833 | WMI_GRP_STA_PS, |
| 834 | WMI_GRP_DFS, |
| 835 | WMI_GRP_ROAM, |
| 836 | WMI_GRP_OFL_SCAN, |
| 837 | WMI_GRP_P2P, |
| 838 | WMI_GRP_AP_PS, |
| 839 | WMI_GRP_RATE_CTRL, |
| 840 | WMI_GRP_PROFILE, |
| 841 | WMI_GRP_SUSPEND, |
| 842 | WMI_GRP_BCN_FILTER, |
| 843 | WMI_GRP_WOW, |
| 844 | WMI_GRP_RTT, |
| 845 | WMI_GRP_SPECTRAL, |
| 846 | WMI_GRP_STATS, |
| 847 | WMI_GRP_ARP_NS_OFL, |
| 848 | WMI_GRP_NLO_OFL, |
| 849 | WMI_GRP_GTK_OFL, |
| 850 | WMI_GRP_CSA_OFL, |
| 851 | WMI_GRP_CHATTER, |
| 852 | WMI_GRP_TID_ADDBA, |
| 853 | WMI_GRP_MISC, |
| 854 | WMI_GRP_GPIO, |
| 855 | }; |
| 856 | |
| 857 | #define WMI_CMD_GRP(grp_id) (((grp_id) << 12) | 0x1) |
| 858 | #define WMI_EVT_GRP_START_ID(grp_id) (((grp_id) << 12) | 0x1) |
| 859 | |
Bartosz Markowski | 34957b2 | 2013-10-15 09:55:31 +0200 | [diff] [blame] | 860 | #define WMI_CMD_UNSUPPORTED 0 |
Bartosz Markowski | b7e3adf | 2013-09-26 17:47:06 +0200 | [diff] [blame] | 861 | |
| 862 | /* Command IDs and command events for MAIN FW. */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 863 | enum wmi_cmd_id { |
| 864 | WMI_INIT_CMDID = 0x1, |
| 865 | |
| 866 | /* Scan specific commands */ |
| 867 | WMI_START_SCAN_CMDID = WMI_CMD_GRP(WMI_GRP_SCAN), |
| 868 | WMI_STOP_SCAN_CMDID, |
| 869 | WMI_SCAN_CHAN_LIST_CMDID, |
| 870 | WMI_SCAN_SCH_PRIO_TBL_CMDID, |
| 871 | |
| 872 | /* PDEV (physical device) specific commands */ |
| 873 | WMI_PDEV_SET_REGDOMAIN_CMDID = WMI_CMD_GRP(WMI_GRP_PDEV), |
| 874 | WMI_PDEV_SET_CHANNEL_CMDID, |
| 875 | WMI_PDEV_SET_PARAM_CMDID, |
| 876 | WMI_PDEV_PKTLOG_ENABLE_CMDID, |
| 877 | WMI_PDEV_PKTLOG_DISABLE_CMDID, |
| 878 | WMI_PDEV_SET_WMM_PARAMS_CMDID, |
| 879 | WMI_PDEV_SET_HT_CAP_IE_CMDID, |
| 880 | WMI_PDEV_SET_VHT_CAP_IE_CMDID, |
| 881 | WMI_PDEV_SET_DSCP_TID_MAP_CMDID, |
| 882 | WMI_PDEV_SET_QUIET_MODE_CMDID, |
| 883 | WMI_PDEV_GREEN_AP_PS_ENABLE_CMDID, |
| 884 | WMI_PDEV_GET_TPC_CONFIG_CMDID, |
| 885 | WMI_PDEV_SET_BASE_MACADDR_CMDID, |
| 886 | |
| 887 | /* VDEV (virtual device) specific commands */ |
| 888 | WMI_VDEV_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_VDEV), |
| 889 | WMI_VDEV_DELETE_CMDID, |
| 890 | WMI_VDEV_START_REQUEST_CMDID, |
| 891 | WMI_VDEV_RESTART_REQUEST_CMDID, |
| 892 | WMI_VDEV_UP_CMDID, |
| 893 | WMI_VDEV_STOP_CMDID, |
| 894 | WMI_VDEV_DOWN_CMDID, |
| 895 | WMI_VDEV_SET_PARAM_CMDID, |
| 896 | WMI_VDEV_INSTALL_KEY_CMDID, |
| 897 | |
| 898 | /* peer specific commands */ |
| 899 | WMI_PEER_CREATE_CMDID = WMI_CMD_GRP(WMI_GRP_PEER), |
| 900 | WMI_PEER_DELETE_CMDID, |
| 901 | WMI_PEER_FLUSH_TIDS_CMDID, |
| 902 | WMI_PEER_SET_PARAM_CMDID, |
| 903 | WMI_PEER_ASSOC_CMDID, |
| 904 | WMI_PEER_ADD_WDS_ENTRY_CMDID, |
| 905 | WMI_PEER_REMOVE_WDS_ENTRY_CMDID, |
| 906 | WMI_PEER_MCAST_GROUP_CMDID, |
| 907 | |
| 908 | /* beacon/management specific commands */ |
| 909 | WMI_BCN_TX_CMDID = WMI_CMD_GRP(WMI_GRP_MGMT), |
| 910 | WMI_PDEV_SEND_BCN_CMDID, |
| 911 | WMI_BCN_TMPL_CMDID, |
| 912 | WMI_BCN_FILTER_RX_CMDID, |
| 913 | WMI_PRB_REQ_FILTER_RX_CMDID, |
| 914 | WMI_MGMT_TX_CMDID, |
| 915 | WMI_PRB_TMPL_CMDID, |
| 916 | |
| 917 | /* commands to directly control BA negotiation directly from host. */ |
| 918 | WMI_ADDBA_CLEAR_RESP_CMDID = WMI_CMD_GRP(WMI_GRP_BA_NEG), |
| 919 | WMI_ADDBA_SEND_CMDID, |
| 920 | WMI_ADDBA_STATUS_CMDID, |
| 921 | WMI_DELBA_SEND_CMDID, |
| 922 | WMI_ADDBA_SET_RESP_CMDID, |
| 923 | WMI_SEND_SINGLEAMSDU_CMDID, |
| 924 | |
| 925 | /* Station power save specific config */ |
| 926 | WMI_STA_POWERSAVE_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_STA_PS), |
| 927 | WMI_STA_POWERSAVE_PARAM_CMDID, |
| 928 | WMI_STA_MIMO_PS_MODE_CMDID, |
| 929 | |
| 930 | /** DFS-specific commands */ |
| 931 | WMI_PDEV_DFS_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_DFS), |
| 932 | WMI_PDEV_DFS_DISABLE_CMDID, |
| 933 | |
| 934 | /* Roaming specific commands */ |
| 935 | WMI_ROAM_SCAN_MODE = WMI_CMD_GRP(WMI_GRP_ROAM), |
| 936 | WMI_ROAM_SCAN_RSSI_THRESHOLD, |
| 937 | WMI_ROAM_SCAN_PERIOD, |
| 938 | WMI_ROAM_SCAN_RSSI_CHANGE_THRESHOLD, |
| 939 | WMI_ROAM_AP_PROFILE, |
| 940 | |
| 941 | /* offload scan specific commands */ |
| 942 | WMI_OFL_SCAN_ADD_AP_PROFILE = WMI_CMD_GRP(WMI_GRP_OFL_SCAN), |
| 943 | WMI_OFL_SCAN_REMOVE_AP_PROFILE, |
| 944 | WMI_OFL_SCAN_PERIOD, |
| 945 | |
| 946 | /* P2P specific commands */ |
| 947 | WMI_P2P_DEV_SET_DEVICE_INFO = WMI_CMD_GRP(WMI_GRP_P2P), |
| 948 | WMI_P2P_DEV_SET_DISCOVERABILITY, |
| 949 | WMI_P2P_GO_SET_BEACON_IE, |
| 950 | WMI_P2P_GO_SET_PROBE_RESP_IE, |
| 951 | WMI_P2P_SET_VENDOR_IE_DATA_CMDID, |
| 952 | |
| 953 | /* AP power save specific config */ |
| 954 | WMI_AP_PS_PEER_PARAM_CMDID = WMI_CMD_GRP(WMI_GRP_AP_PS), |
| 955 | WMI_AP_PS_PEER_UAPSD_COEX_CMDID, |
| 956 | |
| 957 | /* Rate-control specific commands */ |
| 958 | WMI_PEER_RATE_RETRY_SCHED_CMDID = |
| 959 | WMI_CMD_GRP(WMI_GRP_RATE_CTRL), |
| 960 | |
| 961 | /* WLAN Profiling commands. */ |
| 962 | WMI_WLAN_PROFILE_TRIGGER_CMDID = WMI_CMD_GRP(WMI_GRP_PROFILE), |
| 963 | WMI_WLAN_PROFILE_SET_HIST_INTVL_CMDID, |
| 964 | WMI_WLAN_PROFILE_GET_PROFILE_DATA_CMDID, |
| 965 | WMI_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID, |
| 966 | WMI_WLAN_PROFILE_LIST_PROFILE_ID_CMDID, |
| 967 | |
| 968 | /* Suspend resume command Ids */ |
| 969 | WMI_PDEV_SUSPEND_CMDID = WMI_CMD_GRP(WMI_GRP_SUSPEND), |
| 970 | WMI_PDEV_RESUME_CMDID, |
| 971 | |
| 972 | /* Beacon filter commands */ |
| 973 | WMI_ADD_BCN_FILTER_CMDID = WMI_CMD_GRP(WMI_GRP_BCN_FILTER), |
| 974 | WMI_RMV_BCN_FILTER_CMDID, |
| 975 | |
| 976 | /* WOW Specific WMI commands*/ |
| 977 | WMI_WOW_ADD_WAKE_PATTERN_CMDID = WMI_CMD_GRP(WMI_GRP_WOW), |
| 978 | WMI_WOW_DEL_WAKE_PATTERN_CMDID, |
| 979 | WMI_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID, |
| 980 | WMI_WOW_ENABLE_CMDID, |
| 981 | WMI_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID, |
| 982 | |
| 983 | /* RTT measurement related cmd */ |
| 984 | WMI_RTT_MEASREQ_CMDID = WMI_CMD_GRP(WMI_GRP_RTT), |
| 985 | WMI_RTT_TSF_CMDID, |
| 986 | |
| 987 | /* spectral scan commands */ |
| 988 | WMI_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID = WMI_CMD_GRP(WMI_GRP_SPECTRAL), |
| 989 | WMI_VDEV_SPECTRAL_SCAN_ENABLE_CMDID, |
| 990 | |
| 991 | /* F/W stats */ |
| 992 | WMI_REQUEST_STATS_CMDID = WMI_CMD_GRP(WMI_GRP_STATS), |
| 993 | |
| 994 | /* ARP OFFLOAD REQUEST*/ |
| 995 | WMI_SET_ARP_NS_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_ARP_NS_OFL), |
| 996 | |
| 997 | /* NS offload confid*/ |
| 998 | WMI_NETWORK_LIST_OFFLOAD_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_NLO_OFL), |
| 999 | |
| 1000 | /* GTK offload Specific WMI commands*/ |
| 1001 | WMI_GTK_OFFLOAD_CMDID = WMI_CMD_GRP(WMI_GRP_GTK_OFL), |
| 1002 | |
| 1003 | /* CSA offload Specific WMI commands*/ |
| 1004 | WMI_CSA_OFFLOAD_ENABLE_CMDID = WMI_CMD_GRP(WMI_GRP_CSA_OFL), |
| 1005 | WMI_CSA_OFFLOAD_CHANSWITCH_CMDID, |
| 1006 | |
| 1007 | /* Chatter commands*/ |
| 1008 | WMI_CHATTER_SET_MODE_CMDID = WMI_CMD_GRP(WMI_GRP_CHATTER), |
| 1009 | |
| 1010 | /* addba specific commands */ |
| 1011 | WMI_PEER_TID_ADDBA_CMDID = WMI_CMD_GRP(WMI_GRP_TID_ADDBA), |
| 1012 | WMI_PEER_TID_DELBA_CMDID, |
| 1013 | |
| 1014 | /* set station mimo powersave method */ |
| 1015 | WMI_STA_DTIM_PS_METHOD_CMDID, |
| 1016 | /* Configure the Station UAPSD AC Auto Trigger Parameters */ |
| 1017 | WMI_STA_UAPSD_AUTO_TRIG_CMDID, |
| 1018 | |
| 1019 | /* STA Keep alive parameter configuration, |
| 1020 | Requires WMI_SERVICE_STA_KEEP_ALIVE */ |
| 1021 | WMI_STA_KEEPALIVE_CMD, |
| 1022 | |
| 1023 | /* misc command group */ |
| 1024 | WMI_ECHO_CMDID = WMI_CMD_GRP(WMI_GRP_MISC), |
| 1025 | WMI_PDEV_UTF_CMDID, |
| 1026 | WMI_DBGLOG_CFG_CMDID, |
| 1027 | WMI_PDEV_QVIT_CMDID, |
| 1028 | WMI_PDEV_FTM_INTG_CMDID, |
| 1029 | WMI_VDEV_SET_KEEPALIVE_CMDID, |
| 1030 | WMI_VDEV_GET_KEEPALIVE_CMDID, |
Michal Kazior | 9cfbce7 | 2013-07-16 09:54:36 +0200 | [diff] [blame] | 1031 | WMI_FORCE_FW_HANG_CMDID, |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1032 | |
| 1033 | /* GPIO Configuration */ |
| 1034 | WMI_GPIO_CONFIG_CMDID = WMI_CMD_GRP(WMI_GRP_GPIO), |
| 1035 | WMI_GPIO_OUTPUT_CMDID, |
| 1036 | }; |
| 1037 | |
| 1038 | enum wmi_event_id { |
| 1039 | WMI_SERVICE_READY_EVENTID = 0x1, |
| 1040 | WMI_READY_EVENTID, |
| 1041 | |
| 1042 | /* Scan specific events */ |
| 1043 | WMI_SCAN_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_SCAN), |
| 1044 | |
| 1045 | /* PDEV specific events */ |
| 1046 | WMI_PDEV_TPC_CONFIG_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PDEV), |
| 1047 | WMI_CHAN_INFO_EVENTID, |
| 1048 | WMI_PHYERR_EVENTID, |
| 1049 | |
| 1050 | /* VDEV specific events */ |
| 1051 | WMI_VDEV_START_RESP_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_VDEV), |
| 1052 | WMI_VDEV_STOPPED_EVENTID, |
| 1053 | WMI_VDEV_INSTALL_KEY_COMPLETE_EVENTID, |
| 1054 | |
| 1055 | /* peer specific events */ |
| 1056 | WMI_PEER_STA_KICKOUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_PEER), |
| 1057 | |
| 1058 | /* beacon/mgmt specific events */ |
| 1059 | WMI_MGMT_RX_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MGMT), |
| 1060 | WMI_HOST_SWBA_EVENTID, |
| 1061 | WMI_TBTTOFFSET_UPDATE_EVENTID, |
| 1062 | |
| 1063 | /* ADDBA Related WMI Events*/ |
| 1064 | WMI_TX_DELBA_COMPLETE_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_BA_NEG), |
| 1065 | WMI_TX_ADDBA_COMPLETE_EVENTID, |
| 1066 | |
| 1067 | /* Roam event to trigger roaming on host */ |
| 1068 | WMI_ROAM_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_ROAM), |
| 1069 | WMI_PROFILE_MATCH, |
| 1070 | |
| 1071 | /* WoW */ |
| 1072 | WMI_WOW_WAKEUP_HOST_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_WOW), |
| 1073 | |
| 1074 | /* RTT */ |
| 1075 | WMI_RTT_MEASUREMENT_REPORT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_RTT), |
| 1076 | WMI_TSF_MEASUREMENT_REPORT_EVENTID, |
| 1077 | WMI_RTT_ERROR_REPORT_EVENTID, |
| 1078 | |
| 1079 | /* GTK offload */ |
| 1080 | WMI_GTK_OFFLOAD_STATUS_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GTK_OFL), |
| 1081 | WMI_GTK_REKEY_FAIL_EVENTID, |
| 1082 | |
| 1083 | /* CSA IE received event */ |
| 1084 | WMI_CSA_HANDLING_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_CSA_OFL), |
| 1085 | |
| 1086 | /* Misc events */ |
| 1087 | WMI_ECHO_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_MISC), |
| 1088 | WMI_PDEV_UTF_EVENTID, |
| 1089 | WMI_DEBUG_MESG_EVENTID, |
| 1090 | WMI_UPDATE_STATS_EVENTID, |
| 1091 | WMI_DEBUG_PRINT_EVENTID, |
| 1092 | WMI_DCS_INTERFERENCE_EVENTID, |
| 1093 | WMI_PDEV_QVIT_EVENTID, |
| 1094 | WMI_WLAN_PROFILE_DATA_EVENTID, |
| 1095 | WMI_PDEV_FTM_INTG_EVENTID, |
| 1096 | WMI_WLAN_FREQ_AVOID_EVENTID, |
| 1097 | WMI_VDEV_GET_KEEPALIVE_EVENTID, |
| 1098 | |
| 1099 | /* GPIO Event */ |
| 1100 | WMI_GPIO_INPUT_EVENTID = WMI_EVT_GRP_START_ID(WMI_GRP_GPIO), |
| 1101 | }; |
| 1102 | |
Bartosz Markowski | b7e3adf | 2013-09-26 17:47:06 +0200 | [diff] [blame] | 1103 | /* Command IDs and command events for 10.X firmware */ |
| 1104 | enum wmi_10x_cmd_id { |
| 1105 | WMI_10X_START_CMDID = 0x9000, |
| 1106 | WMI_10X_END_CMDID = 0x9FFF, |
| 1107 | |
| 1108 | /* initialize the wlan sub system */ |
| 1109 | WMI_10X_INIT_CMDID, |
| 1110 | |
| 1111 | /* Scan specific commands */ |
| 1112 | |
| 1113 | WMI_10X_START_SCAN_CMDID = WMI_10X_START_CMDID, |
| 1114 | WMI_10X_STOP_SCAN_CMDID, |
| 1115 | WMI_10X_SCAN_CHAN_LIST_CMDID, |
| 1116 | WMI_10X_ECHO_CMDID, |
| 1117 | |
| 1118 | /* PDEV(physical device) specific commands */ |
| 1119 | WMI_10X_PDEV_SET_REGDOMAIN_CMDID, |
| 1120 | WMI_10X_PDEV_SET_CHANNEL_CMDID, |
| 1121 | WMI_10X_PDEV_SET_PARAM_CMDID, |
| 1122 | WMI_10X_PDEV_PKTLOG_ENABLE_CMDID, |
| 1123 | WMI_10X_PDEV_PKTLOG_DISABLE_CMDID, |
| 1124 | WMI_10X_PDEV_SET_WMM_PARAMS_CMDID, |
| 1125 | WMI_10X_PDEV_SET_HT_CAP_IE_CMDID, |
| 1126 | WMI_10X_PDEV_SET_VHT_CAP_IE_CMDID, |
| 1127 | WMI_10X_PDEV_SET_BASE_MACADDR_CMDID, |
| 1128 | WMI_10X_PDEV_SET_DSCP_TID_MAP_CMDID, |
| 1129 | WMI_10X_PDEV_SET_QUIET_MODE_CMDID, |
| 1130 | WMI_10X_PDEV_GREEN_AP_PS_ENABLE_CMDID, |
| 1131 | WMI_10X_PDEV_GET_TPC_CONFIG_CMDID, |
| 1132 | |
| 1133 | /* VDEV(virtual device) specific commands */ |
| 1134 | WMI_10X_VDEV_CREATE_CMDID, |
| 1135 | WMI_10X_VDEV_DELETE_CMDID, |
| 1136 | WMI_10X_VDEV_START_REQUEST_CMDID, |
| 1137 | WMI_10X_VDEV_RESTART_REQUEST_CMDID, |
| 1138 | WMI_10X_VDEV_UP_CMDID, |
| 1139 | WMI_10X_VDEV_STOP_CMDID, |
| 1140 | WMI_10X_VDEV_DOWN_CMDID, |
| 1141 | WMI_10X_VDEV_STANDBY_RESPONSE_CMDID, |
| 1142 | WMI_10X_VDEV_RESUME_RESPONSE_CMDID, |
| 1143 | WMI_10X_VDEV_SET_PARAM_CMDID, |
| 1144 | WMI_10X_VDEV_INSTALL_KEY_CMDID, |
| 1145 | |
| 1146 | /* peer specific commands */ |
| 1147 | WMI_10X_PEER_CREATE_CMDID, |
| 1148 | WMI_10X_PEER_DELETE_CMDID, |
| 1149 | WMI_10X_PEER_FLUSH_TIDS_CMDID, |
| 1150 | WMI_10X_PEER_SET_PARAM_CMDID, |
| 1151 | WMI_10X_PEER_ASSOC_CMDID, |
| 1152 | WMI_10X_PEER_ADD_WDS_ENTRY_CMDID, |
| 1153 | WMI_10X_PEER_REMOVE_WDS_ENTRY_CMDID, |
| 1154 | WMI_10X_PEER_MCAST_GROUP_CMDID, |
| 1155 | |
| 1156 | /* beacon/management specific commands */ |
| 1157 | |
| 1158 | WMI_10X_BCN_TX_CMDID, |
| 1159 | WMI_10X_BCN_PRB_TMPL_CMDID, |
| 1160 | WMI_10X_BCN_FILTER_RX_CMDID, |
| 1161 | WMI_10X_PRB_REQ_FILTER_RX_CMDID, |
| 1162 | WMI_10X_MGMT_TX_CMDID, |
| 1163 | |
| 1164 | /* commands to directly control ba negotiation directly from host. */ |
| 1165 | WMI_10X_ADDBA_CLEAR_RESP_CMDID, |
| 1166 | WMI_10X_ADDBA_SEND_CMDID, |
| 1167 | WMI_10X_ADDBA_STATUS_CMDID, |
| 1168 | WMI_10X_DELBA_SEND_CMDID, |
| 1169 | WMI_10X_ADDBA_SET_RESP_CMDID, |
| 1170 | WMI_10X_SEND_SINGLEAMSDU_CMDID, |
| 1171 | |
| 1172 | /* Station power save specific config */ |
| 1173 | WMI_10X_STA_POWERSAVE_MODE_CMDID, |
| 1174 | WMI_10X_STA_POWERSAVE_PARAM_CMDID, |
| 1175 | WMI_10X_STA_MIMO_PS_MODE_CMDID, |
| 1176 | |
| 1177 | /* set debug log config */ |
| 1178 | WMI_10X_DBGLOG_CFG_CMDID, |
| 1179 | |
| 1180 | /* DFS-specific commands */ |
| 1181 | WMI_10X_PDEV_DFS_ENABLE_CMDID, |
| 1182 | WMI_10X_PDEV_DFS_DISABLE_CMDID, |
| 1183 | |
| 1184 | /* QVIT specific command id */ |
| 1185 | WMI_10X_PDEV_QVIT_CMDID, |
| 1186 | |
| 1187 | /* Offload Scan and Roaming related commands */ |
| 1188 | WMI_10X_ROAM_SCAN_MODE, |
| 1189 | WMI_10X_ROAM_SCAN_RSSI_THRESHOLD, |
| 1190 | WMI_10X_ROAM_SCAN_PERIOD, |
| 1191 | WMI_10X_ROAM_SCAN_RSSI_CHANGE_THRESHOLD, |
| 1192 | WMI_10X_ROAM_AP_PROFILE, |
| 1193 | WMI_10X_OFL_SCAN_ADD_AP_PROFILE, |
| 1194 | WMI_10X_OFL_SCAN_REMOVE_AP_PROFILE, |
| 1195 | WMI_10X_OFL_SCAN_PERIOD, |
| 1196 | |
| 1197 | /* P2P specific commands */ |
| 1198 | WMI_10X_P2P_DEV_SET_DEVICE_INFO, |
| 1199 | WMI_10X_P2P_DEV_SET_DISCOVERABILITY, |
| 1200 | WMI_10X_P2P_GO_SET_BEACON_IE, |
| 1201 | WMI_10X_P2P_GO_SET_PROBE_RESP_IE, |
| 1202 | |
| 1203 | /* AP power save specific config */ |
| 1204 | WMI_10X_AP_PS_PEER_PARAM_CMDID, |
| 1205 | WMI_10X_AP_PS_PEER_UAPSD_COEX_CMDID, |
| 1206 | |
| 1207 | /* Rate-control specific commands */ |
| 1208 | WMI_10X_PEER_RATE_RETRY_SCHED_CMDID, |
| 1209 | |
| 1210 | /* WLAN Profiling commands. */ |
| 1211 | WMI_10X_WLAN_PROFILE_TRIGGER_CMDID, |
| 1212 | WMI_10X_WLAN_PROFILE_SET_HIST_INTVL_CMDID, |
| 1213 | WMI_10X_WLAN_PROFILE_GET_PROFILE_DATA_CMDID, |
| 1214 | WMI_10X_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID, |
| 1215 | WMI_10X_WLAN_PROFILE_LIST_PROFILE_ID_CMDID, |
| 1216 | |
| 1217 | /* Suspend resume command Ids */ |
| 1218 | WMI_10X_PDEV_SUSPEND_CMDID, |
| 1219 | WMI_10X_PDEV_RESUME_CMDID, |
| 1220 | |
| 1221 | /* Beacon filter commands */ |
| 1222 | WMI_10X_ADD_BCN_FILTER_CMDID, |
| 1223 | WMI_10X_RMV_BCN_FILTER_CMDID, |
| 1224 | |
| 1225 | /* WOW Specific WMI commands*/ |
| 1226 | WMI_10X_WOW_ADD_WAKE_PATTERN_CMDID, |
| 1227 | WMI_10X_WOW_DEL_WAKE_PATTERN_CMDID, |
| 1228 | WMI_10X_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID, |
| 1229 | WMI_10X_WOW_ENABLE_CMDID, |
| 1230 | WMI_10X_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID, |
| 1231 | |
| 1232 | /* RTT measurement related cmd */ |
| 1233 | WMI_10X_RTT_MEASREQ_CMDID, |
| 1234 | WMI_10X_RTT_TSF_CMDID, |
| 1235 | |
| 1236 | /* transmit beacon by value */ |
| 1237 | WMI_10X_PDEV_SEND_BCN_CMDID, |
| 1238 | |
| 1239 | /* F/W stats */ |
| 1240 | WMI_10X_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID, |
| 1241 | WMI_10X_VDEV_SPECTRAL_SCAN_ENABLE_CMDID, |
| 1242 | WMI_10X_REQUEST_STATS_CMDID, |
| 1243 | |
| 1244 | /* GPIO Configuration */ |
| 1245 | WMI_10X_GPIO_CONFIG_CMDID, |
| 1246 | WMI_10X_GPIO_OUTPUT_CMDID, |
| 1247 | |
| 1248 | WMI_10X_PDEV_UTF_CMDID = WMI_10X_END_CMDID - 1, |
| 1249 | }; |
| 1250 | |
| 1251 | enum wmi_10x_event_id { |
| 1252 | WMI_10X_SERVICE_READY_EVENTID = 0x8000, |
| 1253 | WMI_10X_READY_EVENTID, |
| 1254 | WMI_10X_START_EVENTID = 0x9000, |
| 1255 | WMI_10X_END_EVENTID = 0x9FFF, |
| 1256 | |
| 1257 | /* Scan specific events */ |
| 1258 | WMI_10X_SCAN_EVENTID = WMI_10X_START_EVENTID, |
| 1259 | WMI_10X_ECHO_EVENTID, |
| 1260 | WMI_10X_DEBUG_MESG_EVENTID, |
| 1261 | WMI_10X_UPDATE_STATS_EVENTID, |
| 1262 | |
| 1263 | /* Instantaneous RSSI event */ |
| 1264 | WMI_10X_INST_RSSI_STATS_EVENTID, |
| 1265 | |
| 1266 | /* VDEV specific events */ |
| 1267 | WMI_10X_VDEV_START_RESP_EVENTID, |
| 1268 | WMI_10X_VDEV_STANDBY_REQ_EVENTID, |
| 1269 | WMI_10X_VDEV_RESUME_REQ_EVENTID, |
| 1270 | WMI_10X_VDEV_STOPPED_EVENTID, |
| 1271 | |
| 1272 | /* peer specific events */ |
| 1273 | WMI_10X_PEER_STA_KICKOUT_EVENTID, |
| 1274 | |
| 1275 | /* beacon/mgmt specific events */ |
| 1276 | WMI_10X_HOST_SWBA_EVENTID, |
| 1277 | WMI_10X_TBTTOFFSET_UPDATE_EVENTID, |
| 1278 | WMI_10X_MGMT_RX_EVENTID, |
| 1279 | |
| 1280 | /* Channel stats event */ |
| 1281 | WMI_10X_CHAN_INFO_EVENTID, |
| 1282 | |
| 1283 | /* PHY Error specific WMI event */ |
| 1284 | WMI_10X_PHYERR_EVENTID, |
| 1285 | |
| 1286 | /* Roam event to trigger roaming on host */ |
| 1287 | WMI_10X_ROAM_EVENTID, |
| 1288 | |
| 1289 | /* matching AP found from list of profiles */ |
| 1290 | WMI_10X_PROFILE_MATCH, |
| 1291 | |
| 1292 | /* debug print message used for tracing FW code while debugging */ |
| 1293 | WMI_10X_DEBUG_PRINT_EVENTID, |
| 1294 | /* VI spoecific event */ |
| 1295 | WMI_10X_PDEV_QVIT_EVENTID, |
| 1296 | /* FW code profile data in response to profile request */ |
| 1297 | WMI_10X_WLAN_PROFILE_DATA_EVENTID, |
| 1298 | |
| 1299 | /*RTT related event ID*/ |
| 1300 | WMI_10X_RTT_MEASUREMENT_REPORT_EVENTID, |
| 1301 | WMI_10X_TSF_MEASUREMENT_REPORT_EVENTID, |
| 1302 | WMI_10X_RTT_ERROR_REPORT_EVENTID, |
| 1303 | |
| 1304 | WMI_10X_WOW_WAKEUP_HOST_EVENTID, |
| 1305 | WMI_10X_DCS_INTERFERENCE_EVENTID, |
| 1306 | |
| 1307 | /* TPC config for the current operating channel */ |
| 1308 | WMI_10X_PDEV_TPC_CONFIG_EVENTID, |
| 1309 | |
| 1310 | WMI_10X_GPIO_INPUT_EVENTID, |
| 1311 | WMI_10X_PDEV_UTF_EVENTID = WMI_10X_END_EVENTID-1, |
| 1312 | }; |
| 1313 | |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 1314 | enum wmi_10_2_cmd_id { |
| 1315 | WMI_10_2_START_CMDID = 0x9000, |
| 1316 | WMI_10_2_END_CMDID = 0x9FFF, |
| 1317 | WMI_10_2_INIT_CMDID, |
| 1318 | WMI_10_2_START_SCAN_CMDID = WMI_10_2_START_CMDID, |
| 1319 | WMI_10_2_STOP_SCAN_CMDID, |
| 1320 | WMI_10_2_SCAN_CHAN_LIST_CMDID, |
| 1321 | WMI_10_2_ECHO_CMDID, |
| 1322 | WMI_10_2_PDEV_SET_REGDOMAIN_CMDID, |
| 1323 | WMI_10_2_PDEV_SET_CHANNEL_CMDID, |
| 1324 | WMI_10_2_PDEV_SET_PARAM_CMDID, |
| 1325 | WMI_10_2_PDEV_PKTLOG_ENABLE_CMDID, |
| 1326 | WMI_10_2_PDEV_PKTLOG_DISABLE_CMDID, |
| 1327 | WMI_10_2_PDEV_SET_WMM_PARAMS_CMDID, |
| 1328 | WMI_10_2_PDEV_SET_HT_CAP_IE_CMDID, |
| 1329 | WMI_10_2_PDEV_SET_VHT_CAP_IE_CMDID, |
| 1330 | WMI_10_2_PDEV_SET_BASE_MACADDR_CMDID, |
| 1331 | WMI_10_2_PDEV_SET_QUIET_MODE_CMDID, |
| 1332 | WMI_10_2_PDEV_GREEN_AP_PS_ENABLE_CMDID, |
| 1333 | WMI_10_2_PDEV_GET_TPC_CONFIG_CMDID, |
| 1334 | WMI_10_2_VDEV_CREATE_CMDID, |
| 1335 | WMI_10_2_VDEV_DELETE_CMDID, |
| 1336 | WMI_10_2_VDEV_START_REQUEST_CMDID, |
| 1337 | WMI_10_2_VDEV_RESTART_REQUEST_CMDID, |
| 1338 | WMI_10_2_VDEV_UP_CMDID, |
| 1339 | WMI_10_2_VDEV_STOP_CMDID, |
| 1340 | WMI_10_2_VDEV_DOWN_CMDID, |
| 1341 | WMI_10_2_VDEV_STANDBY_RESPONSE_CMDID, |
| 1342 | WMI_10_2_VDEV_RESUME_RESPONSE_CMDID, |
| 1343 | WMI_10_2_VDEV_SET_PARAM_CMDID, |
| 1344 | WMI_10_2_VDEV_INSTALL_KEY_CMDID, |
| 1345 | WMI_10_2_VDEV_SET_DSCP_TID_MAP_CMDID, |
| 1346 | WMI_10_2_PEER_CREATE_CMDID, |
| 1347 | WMI_10_2_PEER_DELETE_CMDID, |
| 1348 | WMI_10_2_PEER_FLUSH_TIDS_CMDID, |
| 1349 | WMI_10_2_PEER_SET_PARAM_CMDID, |
| 1350 | WMI_10_2_PEER_ASSOC_CMDID, |
| 1351 | WMI_10_2_PEER_ADD_WDS_ENTRY_CMDID, |
| 1352 | WMI_10_2_PEER_UPDATE_WDS_ENTRY_CMDID, |
| 1353 | WMI_10_2_PEER_REMOVE_WDS_ENTRY_CMDID, |
| 1354 | WMI_10_2_PEER_MCAST_GROUP_CMDID, |
| 1355 | WMI_10_2_BCN_TX_CMDID, |
| 1356 | WMI_10_2_BCN_PRB_TMPL_CMDID, |
| 1357 | WMI_10_2_BCN_FILTER_RX_CMDID, |
| 1358 | WMI_10_2_PRB_REQ_FILTER_RX_CMDID, |
| 1359 | WMI_10_2_MGMT_TX_CMDID, |
| 1360 | WMI_10_2_ADDBA_CLEAR_RESP_CMDID, |
| 1361 | WMI_10_2_ADDBA_SEND_CMDID, |
| 1362 | WMI_10_2_ADDBA_STATUS_CMDID, |
| 1363 | WMI_10_2_DELBA_SEND_CMDID, |
| 1364 | WMI_10_2_ADDBA_SET_RESP_CMDID, |
| 1365 | WMI_10_2_SEND_SINGLEAMSDU_CMDID, |
| 1366 | WMI_10_2_STA_POWERSAVE_MODE_CMDID, |
| 1367 | WMI_10_2_STA_POWERSAVE_PARAM_CMDID, |
| 1368 | WMI_10_2_STA_MIMO_PS_MODE_CMDID, |
| 1369 | WMI_10_2_DBGLOG_CFG_CMDID, |
| 1370 | WMI_10_2_PDEV_DFS_ENABLE_CMDID, |
| 1371 | WMI_10_2_PDEV_DFS_DISABLE_CMDID, |
| 1372 | WMI_10_2_PDEV_QVIT_CMDID, |
| 1373 | WMI_10_2_ROAM_SCAN_MODE, |
| 1374 | WMI_10_2_ROAM_SCAN_RSSI_THRESHOLD, |
| 1375 | WMI_10_2_ROAM_SCAN_PERIOD, |
| 1376 | WMI_10_2_ROAM_SCAN_RSSI_CHANGE_THRESHOLD, |
| 1377 | WMI_10_2_ROAM_AP_PROFILE, |
| 1378 | WMI_10_2_OFL_SCAN_ADD_AP_PROFILE, |
| 1379 | WMI_10_2_OFL_SCAN_REMOVE_AP_PROFILE, |
| 1380 | WMI_10_2_OFL_SCAN_PERIOD, |
| 1381 | WMI_10_2_P2P_DEV_SET_DEVICE_INFO, |
| 1382 | WMI_10_2_P2P_DEV_SET_DISCOVERABILITY, |
| 1383 | WMI_10_2_P2P_GO_SET_BEACON_IE, |
| 1384 | WMI_10_2_P2P_GO_SET_PROBE_RESP_IE, |
| 1385 | WMI_10_2_AP_PS_PEER_PARAM_CMDID, |
| 1386 | WMI_10_2_AP_PS_PEER_UAPSD_COEX_CMDID, |
| 1387 | WMI_10_2_PEER_RATE_RETRY_SCHED_CMDID, |
| 1388 | WMI_10_2_WLAN_PROFILE_TRIGGER_CMDID, |
| 1389 | WMI_10_2_WLAN_PROFILE_SET_HIST_INTVL_CMDID, |
| 1390 | WMI_10_2_WLAN_PROFILE_GET_PROFILE_DATA_CMDID, |
| 1391 | WMI_10_2_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID, |
| 1392 | WMI_10_2_WLAN_PROFILE_LIST_PROFILE_ID_CMDID, |
| 1393 | WMI_10_2_PDEV_SUSPEND_CMDID, |
| 1394 | WMI_10_2_PDEV_RESUME_CMDID, |
| 1395 | WMI_10_2_ADD_BCN_FILTER_CMDID, |
| 1396 | WMI_10_2_RMV_BCN_FILTER_CMDID, |
| 1397 | WMI_10_2_WOW_ADD_WAKE_PATTERN_CMDID, |
| 1398 | WMI_10_2_WOW_DEL_WAKE_PATTERN_CMDID, |
| 1399 | WMI_10_2_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID, |
| 1400 | WMI_10_2_WOW_ENABLE_CMDID, |
| 1401 | WMI_10_2_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID, |
| 1402 | WMI_10_2_RTT_MEASREQ_CMDID, |
| 1403 | WMI_10_2_RTT_TSF_CMDID, |
| 1404 | WMI_10_2_RTT_KEEPALIVE_CMDID, |
| 1405 | WMI_10_2_PDEV_SEND_BCN_CMDID, |
| 1406 | WMI_10_2_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID, |
| 1407 | WMI_10_2_VDEV_SPECTRAL_SCAN_ENABLE_CMDID, |
| 1408 | WMI_10_2_REQUEST_STATS_CMDID, |
| 1409 | WMI_10_2_GPIO_CONFIG_CMDID, |
| 1410 | WMI_10_2_GPIO_OUTPUT_CMDID, |
| 1411 | WMI_10_2_VDEV_RATEMASK_CMDID, |
| 1412 | WMI_10_2_PDEV_SMART_ANT_ENABLE_CMDID, |
| 1413 | WMI_10_2_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID, |
| 1414 | WMI_10_2_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID, |
| 1415 | WMI_10_2_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID, |
| 1416 | WMI_10_2_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID, |
| 1417 | WMI_10_2_FORCE_FW_HANG_CMDID, |
| 1418 | WMI_10_2_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID, |
| 1419 | WMI_10_2_PDEV_SET_CTL_TABLE_CMDID, |
| 1420 | WMI_10_2_PDEV_SET_MIMOGAIN_TABLE_CMDID, |
| 1421 | WMI_10_2_PDEV_RATEPWR_TABLE_CMDID, |
| 1422 | WMI_10_2_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID, |
Rajkumar Manoharan | a57a6a2 | 2014-12-17 12:22:17 +0200 | [diff] [blame] | 1423 | WMI_10_2_PDEV_GET_INFO, |
| 1424 | WMI_10_2_VDEV_GET_INFO, |
| 1425 | WMI_10_2_VDEV_ATF_REQUEST_CMDID, |
| 1426 | WMI_10_2_PEER_ATF_REQUEST_CMDID, |
| 1427 | WMI_10_2_PDEV_GET_TEMPERATURE_CMDID, |
Maharaja | 62f77f0 | 2015-10-21 11:49:18 +0300 | [diff] [blame] | 1428 | WMI_10_2_MU_CAL_START_CMDID, |
| 1429 | WMI_10_2_SET_LTEU_CONFIG_CMDID, |
| 1430 | WMI_10_2_SET_CCA_PARAMS, |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 1431 | WMI_10_2_PDEV_UTF_CMDID = WMI_10_2_END_CMDID - 1, |
| 1432 | }; |
| 1433 | |
| 1434 | enum wmi_10_2_event_id { |
| 1435 | WMI_10_2_SERVICE_READY_EVENTID = 0x8000, |
| 1436 | WMI_10_2_READY_EVENTID, |
| 1437 | WMI_10_2_DEBUG_MESG_EVENTID, |
| 1438 | WMI_10_2_START_EVENTID = 0x9000, |
| 1439 | WMI_10_2_END_EVENTID = 0x9FFF, |
| 1440 | WMI_10_2_SCAN_EVENTID = WMI_10_2_START_EVENTID, |
| 1441 | WMI_10_2_ECHO_EVENTID, |
| 1442 | WMI_10_2_UPDATE_STATS_EVENTID, |
| 1443 | WMI_10_2_INST_RSSI_STATS_EVENTID, |
| 1444 | WMI_10_2_VDEV_START_RESP_EVENTID, |
| 1445 | WMI_10_2_VDEV_STANDBY_REQ_EVENTID, |
| 1446 | WMI_10_2_VDEV_RESUME_REQ_EVENTID, |
| 1447 | WMI_10_2_VDEV_STOPPED_EVENTID, |
| 1448 | WMI_10_2_PEER_STA_KICKOUT_EVENTID, |
| 1449 | WMI_10_2_HOST_SWBA_EVENTID, |
| 1450 | WMI_10_2_TBTTOFFSET_UPDATE_EVENTID, |
| 1451 | WMI_10_2_MGMT_RX_EVENTID, |
| 1452 | WMI_10_2_CHAN_INFO_EVENTID, |
| 1453 | WMI_10_2_PHYERR_EVENTID, |
| 1454 | WMI_10_2_ROAM_EVENTID, |
| 1455 | WMI_10_2_PROFILE_MATCH, |
| 1456 | WMI_10_2_DEBUG_PRINT_EVENTID, |
| 1457 | WMI_10_2_PDEV_QVIT_EVENTID, |
| 1458 | WMI_10_2_WLAN_PROFILE_DATA_EVENTID, |
| 1459 | WMI_10_2_RTT_MEASUREMENT_REPORT_EVENTID, |
| 1460 | WMI_10_2_TSF_MEASUREMENT_REPORT_EVENTID, |
| 1461 | WMI_10_2_RTT_ERROR_REPORT_EVENTID, |
| 1462 | WMI_10_2_RTT_KEEPALIVE_EVENTID, |
| 1463 | WMI_10_2_WOW_WAKEUP_HOST_EVENTID, |
| 1464 | WMI_10_2_DCS_INTERFERENCE_EVENTID, |
| 1465 | WMI_10_2_PDEV_TPC_CONFIG_EVENTID, |
| 1466 | WMI_10_2_GPIO_INPUT_EVENTID, |
| 1467 | WMI_10_2_PEER_RATECODE_LIST_EVENTID, |
| 1468 | WMI_10_2_GENERIC_BUFFER_EVENTID, |
| 1469 | WMI_10_2_MCAST_BUF_RELEASE_EVENTID, |
| 1470 | WMI_10_2_MCAST_LIST_AGEOUT_EVENTID, |
| 1471 | WMI_10_2_WDS_PEER_EVENTID, |
Rajkumar Manoharan | a57a6a2 | 2014-12-17 12:22:17 +0200 | [diff] [blame] | 1472 | WMI_10_2_PEER_STA_PS_STATECHG_EVENTID, |
| 1473 | WMI_10_2_PDEV_TEMPERATURE_EVENTID, |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 1474 | WMI_10_2_PDEV_UTF_EVENTID = WMI_10_2_END_EVENTID - 1, |
| 1475 | }; |
| 1476 | |
Raja Mani | 2d491e6 | 2015-06-22 20:10:11 +0530 | [diff] [blame] | 1477 | enum wmi_10_4_cmd_id { |
| 1478 | WMI_10_4_START_CMDID = 0x9000, |
| 1479 | WMI_10_4_END_CMDID = 0x9FFF, |
| 1480 | WMI_10_4_INIT_CMDID, |
| 1481 | WMI_10_4_START_SCAN_CMDID = WMI_10_4_START_CMDID, |
| 1482 | WMI_10_4_STOP_SCAN_CMDID, |
| 1483 | WMI_10_4_SCAN_CHAN_LIST_CMDID, |
| 1484 | WMI_10_4_SCAN_SCH_PRIO_TBL_CMDID, |
| 1485 | WMI_10_4_SCAN_UPDATE_REQUEST_CMDID, |
| 1486 | WMI_10_4_ECHO_CMDID, |
| 1487 | WMI_10_4_PDEV_SET_REGDOMAIN_CMDID, |
| 1488 | WMI_10_4_PDEV_SET_CHANNEL_CMDID, |
| 1489 | WMI_10_4_PDEV_SET_PARAM_CMDID, |
| 1490 | WMI_10_4_PDEV_PKTLOG_ENABLE_CMDID, |
| 1491 | WMI_10_4_PDEV_PKTLOG_DISABLE_CMDID, |
| 1492 | WMI_10_4_PDEV_SET_WMM_PARAMS_CMDID, |
| 1493 | WMI_10_4_PDEV_SET_HT_CAP_IE_CMDID, |
| 1494 | WMI_10_4_PDEV_SET_VHT_CAP_IE_CMDID, |
| 1495 | WMI_10_4_PDEV_SET_BASE_MACADDR_CMDID, |
| 1496 | WMI_10_4_PDEV_SET_DSCP_TID_MAP_CMDID, |
| 1497 | WMI_10_4_PDEV_SET_QUIET_MODE_CMDID, |
| 1498 | WMI_10_4_PDEV_GREEN_AP_PS_ENABLE_CMDID, |
| 1499 | WMI_10_4_PDEV_GET_TPC_CONFIG_CMDID, |
| 1500 | WMI_10_4_VDEV_CREATE_CMDID, |
| 1501 | WMI_10_4_VDEV_DELETE_CMDID, |
| 1502 | WMI_10_4_VDEV_START_REQUEST_CMDID, |
| 1503 | WMI_10_4_VDEV_RESTART_REQUEST_CMDID, |
| 1504 | WMI_10_4_VDEV_UP_CMDID, |
| 1505 | WMI_10_4_VDEV_STOP_CMDID, |
| 1506 | WMI_10_4_VDEV_DOWN_CMDID, |
| 1507 | WMI_10_4_VDEV_STANDBY_RESPONSE_CMDID, |
| 1508 | WMI_10_4_VDEV_RESUME_RESPONSE_CMDID, |
| 1509 | WMI_10_4_VDEV_SET_PARAM_CMDID, |
| 1510 | WMI_10_4_VDEV_INSTALL_KEY_CMDID, |
| 1511 | WMI_10_4_WLAN_PEER_CACHING_ADD_PEER_CMDID, |
| 1512 | WMI_10_4_WLAN_PEER_CACHING_EVICT_PEER_CMDID, |
| 1513 | WMI_10_4_WLAN_PEER_CACHING_RESTORE_PEER_CMDID, |
| 1514 | WMI_10_4_WLAN_PEER_CACHING_PRINT_ALL_PEERS_INFO_CMDID, |
| 1515 | WMI_10_4_PEER_CREATE_CMDID, |
| 1516 | WMI_10_4_PEER_DELETE_CMDID, |
| 1517 | WMI_10_4_PEER_FLUSH_TIDS_CMDID, |
| 1518 | WMI_10_4_PEER_SET_PARAM_CMDID, |
| 1519 | WMI_10_4_PEER_ASSOC_CMDID, |
| 1520 | WMI_10_4_PEER_ADD_WDS_ENTRY_CMDID, |
| 1521 | WMI_10_4_PEER_UPDATE_WDS_ENTRY_CMDID, |
| 1522 | WMI_10_4_PEER_REMOVE_WDS_ENTRY_CMDID, |
| 1523 | WMI_10_4_PEER_ADD_PROXY_STA_ENTRY_CMDID, |
| 1524 | WMI_10_4_PEER_MCAST_GROUP_CMDID, |
| 1525 | WMI_10_4_BCN_TX_CMDID, |
| 1526 | WMI_10_4_PDEV_SEND_BCN_CMDID, |
| 1527 | WMI_10_4_BCN_PRB_TMPL_CMDID, |
| 1528 | WMI_10_4_BCN_FILTER_RX_CMDID, |
| 1529 | WMI_10_4_PRB_REQ_FILTER_RX_CMDID, |
| 1530 | WMI_10_4_MGMT_TX_CMDID, |
| 1531 | WMI_10_4_PRB_TMPL_CMDID, |
| 1532 | WMI_10_4_ADDBA_CLEAR_RESP_CMDID, |
| 1533 | WMI_10_4_ADDBA_SEND_CMDID, |
| 1534 | WMI_10_4_ADDBA_STATUS_CMDID, |
| 1535 | WMI_10_4_DELBA_SEND_CMDID, |
| 1536 | WMI_10_4_ADDBA_SET_RESP_CMDID, |
| 1537 | WMI_10_4_SEND_SINGLEAMSDU_CMDID, |
| 1538 | WMI_10_4_STA_POWERSAVE_MODE_CMDID, |
| 1539 | WMI_10_4_STA_POWERSAVE_PARAM_CMDID, |
| 1540 | WMI_10_4_STA_MIMO_PS_MODE_CMDID, |
| 1541 | WMI_10_4_DBGLOG_CFG_CMDID, |
| 1542 | WMI_10_4_PDEV_DFS_ENABLE_CMDID, |
| 1543 | WMI_10_4_PDEV_DFS_DISABLE_CMDID, |
| 1544 | WMI_10_4_PDEV_QVIT_CMDID, |
| 1545 | WMI_10_4_ROAM_SCAN_MODE, |
| 1546 | WMI_10_4_ROAM_SCAN_RSSI_THRESHOLD, |
| 1547 | WMI_10_4_ROAM_SCAN_PERIOD, |
| 1548 | WMI_10_4_ROAM_SCAN_RSSI_CHANGE_THRESHOLD, |
| 1549 | WMI_10_4_ROAM_AP_PROFILE, |
| 1550 | WMI_10_4_OFL_SCAN_ADD_AP_PROFILE, |
| 1551 | WMI_10_4_OFL_SCAN_REMOVE_AP_PROFILE, |
| 1552 | WMI_10_4_OFL_SCAN_PERIOD, |
| 1553 | WMI_10_4_P2P_DEV_SET_DEVICE_INFO, |
| 1554 | WMI_10_4_P2P_DEV_SET_DISCOVERABILITY, |
| 1555 | WMI_10_4_P2P_GO_SET_BEACON_IE, |
| 1556 | WMI_10_4_P2P_GO_SET_PROBE_RESP_IE, |
| 1557 | WMI_10_4_P2P_SET_VENDOR_IE_DATA_CMDID, |
| 1558 | WMI_10_4_AP_PS_PEER_PARAM_CMDID, |
| 1559 | WMI_10_4_AP_PS_PEER_UAPSD_COEX_CMDID, |
| 1560 | WMI_10_4_PEER_RATE_RETRY_SCHED_CMDID, |
| 1561 | WMI_10_4_WLAN_PROFILE_TRIGGER_CMDID, |
| 1562 | WMI_10_4_WLAN_PROFILE_SET_HIST_INTVL_CMDID, |
| 1563 | WMI_10_4_WLAN_PROFILE_GET_PROFILE_DATA_CMDID, |
| 1564 | WMI_10_4_WLAN_PROFILE_ENABLE_PROFILE_ID_CMDID, |
| 1565 | WMI_10_4_WLAN_PROFILE_LIST_PROFILE_ID_CMDID, |
| 1566 | WMI_10_4_PDEV_SUSPEND_CMDID, |
| 1567 | WMI_10_4_PDEV_RESUME_CMDID, |
| 1568 | WMI_10_4_ADD_BCN_FILTER_CMDID, |
| 1569 | WMI_10_4_RMV_BCN_FILTER_CMDID, |
| 1570 | WMI_10_4_WOW_ADD_WAKE_PATTERN_CMDID, |
| 1571 | WMI_10_4_WOW_DEL_WAKE_PATTERN_CMDID, |
| 1572 | WMI_10_4_WOW_ENABLE_DISABLE_WAKE_EVENT_CMDID, |
| 1573 | WMI_10_4_WOW_ENABLE_CMDID, |
| 1574 | WMI_10_4_WOW_HOSTWAKEUP_FROM_SLEEP_CMDID, |
| 1575 | WMI_10_4_RTT_MEASREQ_CMDID, |
| 1576 | WMI_10_4_RTT_TSF_CMDID, |
| 1577 | WMI_10_4_RTT_KEEPALIVE_CMDID, |
| 1578 | WMI_10_4_OEM_REQ_CMDID, |
| 1579 | WMI_10_4_NAN_CMDID, |
| 1580 | WMI_10_4_VDEV_SPECTRAL_SCAN_CONFIGURE_CMDID, |
| 1581 | WMI_10_4_VDEV_SPECTRAL_SCAN_ENABLE_CMDID, |
| 1582 | WMI_10_4_REQUEST_STATS_CMDID, |
| 1583 | WMI_10_4_GPIO_CONFIG_CMDID, |
| 1584 | WMI_10_4_GPIO_OUTPUT_CMDID, |
| 1585 | WMI_10_4_VDEV_RATEMASK_CMDID, |
| 1586 | WMI_10_4_CSA_OFFLOAD_ENABLE_CMDID, |
| 1587 | WMI_10_4_GTK_OFFLOAD_CMDID, |
| 1588 | WMI_10_4_QBOOST_CFG_CMDID, |
| 1589 | WMI_10_4_CSA_OFFLOAD_CHANSWITCH_CMDID, |
| 1590 | WMI_10_4_PDEV_SMART_ANT_ENABLE_CMDID, |
| 1591 | WMI_10_4_PDEV_SMART_ANT_SET_RX_ANTENNA_CMDID, |
| 1592 | WMI_10_4_PEER_SMART_ANT_SET_TX_ANTENNA_CMDID, |
| 1593 | WMI_10_4_PEER_SMART_ANT_SET_TRAIN_INFO_CMDID, |
| 1594 | WMI_10_4_PEER_SMART_ANT_SET_NODE_CONFIG_OPS_CMDID, |
| 1595 | WMI_10_4_VDEV_SET_KEEPALIVE_CMDID, |
| 1596 | WMI_10_4_VDEV_GET_KEEPALIVE_CMDID, |
| 1597 | WMI_10_4_FORCE_FW_HANG_CMDID, |
| 1598 | WMI_10_4_PDEV_SET_ANTENNA_SWITCH_TABLE_CMDID, |
| 1599 | WMI_10_4_PDEV_SET_CTL_TABLE_CMDID, |
| 1600 | WMI_10_4_PDEV_SET_MIMOGAIN_TABLE_CMDID, |
| 1601 | WMI_10_4_PDEV_RATEPWR_TABLE_CMDID, |
| 1602 | WMI_10_4_PDEV_RATEPWR_CHAINMSK_TABLE_CMDID, |
| 1603 | WMI_10_4_PDEV_FIPS_CMDID, |
| 1604 | WMI_10_4_TT_SET_CONF_CMDID, |
| 1605 | WMI_10_4_FWTEST_CMDID, |
| 1606 | WMI_10_4_VDEV_ATF_REQUEST_CMDID, |
| 1607 | WMI_10_4_PEER_ATF_REQUEST_CMDID, |
| 1608 | WMI_10_4_PDEV_GET_ANI_CCK_CONFIG_CMDID, |
| 1609 | WMI_10_4_PDEV_GET_ANI_OFDM_CONFIG_CMDID, |
| 1610 | WMI_10_4_PDEV_RESERVE_AST_ENTRY_CMDID, |
| 1611 | WMI_10_4_PDEV_GET_NFCAL_POWER_CMDID, |
| 1612 | WMI_10_4_PDEV_GET_TPC_CMDID, |
| 1613 | WMI_10_4_PDEV_GET_AST_INFO_CMDID, |
| 1614 | WMI_10_4_VDEV_SET_DSCP_TID_MAP_CMDID, |
| 1615 | WMI_10_4_PDEV_GET_TEMPERATURE_CMDID, |
| 1616 | WMI_10_4_PDEV_GET_INFO_CMDID, |
| 1617 | WMI_10_4_VDEV_GET_INFO_CMDID, |
| 1618 | WMI_10_4_VDEV_FILTER_NEIGHBOR_RX_PACKETS_CMDID, |
| 1619 | WMI_10_4_MU_CAL_START_CMDID, |
| 1620 | WMI_10_4_SET_CCA_PARAMS_CMDID, |
| 1621 | WMI_10_4_PDEV_BSS_CHAN_INFO_REQUEST_CMDID, |
Vasanthakumar Thiagarajan | 69d4315 | 2015-10-29 19:11:33 +0530 | [diff] [blame] | 1622 | WMI_10_4_EXT_RESOURCE_CFG_CMDID, |
| 1623 | WMI_10_4_VDEV_SET_IE_CMDID, |
| 1624 | WMI_10_4_SET_LTEU_CONFIG_CMDID, |
Raja Mani | 2d491e6 | 2015-06-22 20:10:11 +0530 | [diff] [blame] | 1625 | WMI_10_4_PDEV_UTF_CMDID = WMI_10_4_END_CMDID - 1, |
| 1626 | }; |
| 1627 | |
| 1628 | enum wmi_10_4_event_id { |
| 1629 | WMI_10_4_SERVICE_READY_EVENTID = 0x8000, |
| 1630 | WMI_10_4_READY_EVENTID, |
| 1631 | WMI_10_4_DEBUG_MESG_EVENTID, |
| 1632 | WMI_10_4_START_EVENTID = 0x9000, |
| 1633 | WMI_10_4_END_EVENTID = 0x9FFF, |
| 1634 | WMI_10_4_SCAN_EVENTID = WMI_10_4_START_EVENTID, |
| 1635 | WMI_10_4_ECHO_EVENTID, |
| 1636 | WMI_10_4_UPDATE_STATS_EVENTID, |
| 1637 | WMI_10_4_INST_RSSI_STATS_EVENTID, |
| 1638 | WMI_10_4_VDEV_START_RESP_EVENTID, |
| 1639 | WMI_10_4_VDEV_STANDBY_REQ_EVENTID, |
| 1640 | WMI_10_4_VDEV_RESUME_REQ_EVENTID, |
| 1641 | WMI_10_4_VDEV_STOPPED_EVENTID, |
| 1642 | WMI_10_4_PEER_STA_KICKOUT_EVENTID, |
| 1643 | WMI_10_4_HOST_SWBA_EVENTID, |
| 1644 | WMI_10_4_TBTTOFFSET_UPDATE_EVENTID, |
| 1645 | WMI_10_4_MGMT_RX_EVENTID, |
| 1646 | WMI_10_4_CHAN_INFO_EVENTID, |
| 1647 | WMI_10_4_PHYERR_EVENTID, |
| 1648 | WMI_10_4_ROAM_EVENTID, |
| 1649 | WMI_10_4_PROFILE_MATCH, |
| 1650 | WMI_10_4_DEBUG_PRINT_EVENTID, |
| 1651 | WMI_10_4_PDEV_QVIT_EVENTID, |
| 1652 | WMI_10_4_WLAN_PROFILE_DATA_EVENTID, |
| 1653 | WMI_10_4_RTT_MEASUREMENT_REPORT_EVENTID, |
| 1654 | WMI_10_4_TSF_MEASUREMENT_REPORT_EVENTID, |
| 1655 | WMI_10_4_RTT_ERROR_REPORT_EVENTID, |
| 1656 | WMI_10_4_RTT_KEEPALIVE_EVENTID, |
| 1657 | WMI_10_4_OEM_CAPABILITY_EVENTID, |
| 1658 | WMI_10_4_OEM_MEASUREMENT_REPORT_EVENTID, |
| 1659 | WMI_10_4_OEM_ERROR_REPORT_EVENTID, |
| 1660 | WMI_10_4_NAN_EVENTID, |
| 1661 | WMI_10_4_WOW_WAKEUP_HOST_EVENTID, |
| 1662 | WMI_10_4_GTK_OFFLOAD_STATUS_EVENTID, |
| 1663 | WMI_10_4_GTK_REKEY_FAIL_EVENTID, |
| 1664 | WMI_10_4_DCS_INTERFERENCE_EVENTID, |
| 1665 | WMI_10_4_PDEV_TPC_CONFIG_EVENTID, |
| 1666 | WMI_10_4_CSA_HANDLING_EVENTID, |
| 1667 | WMI_10_4_GPIO_INPUT_EVENTID, |
| 1668 | WMI_10_4_PEER_RATECODE_LIST_EVENTID, |
| 1669 | WMI_10_4_GENERIC_BUFFER_EVENTID, |
| 1670 | WMI_10_4_MCAST_BUF_RELEASE_EVENTID, |
| 1671 | WMI_10_4_MCAST_LIST_AGEOUT_EVENTID, |
| 1672 | WMI_10_4_VDEV_GET_KEEPALIVE_EVENTID, |
| 1673 | WMI_10_4_WDS_PEER_EVENTID, |
| 1674 | WMI_10_4_PEER_STA_PS_STATECHG_EVENTID, |
| 1675 | WMI_10_4_PDEV_FIPS_EVENTID, |
| 1676 | WMI_10_4_TT_STATS_EVENTID, |
| 1677 | WMI_10_4_PDEV_CHANNEL_HOPPING_EVENTID, |
| 1678 | WMI_10_4_PDEV_ANI_CCK_LEVEL_EVENTID, |
| 1679 | WMI_10_4_PDEV_ANI_OFDM_LEVEL_EVENTID, |
| 1680 | WMI_10_4_PDEV_RESERVE_AST_ENTRY_EVENTID, |
| 1681 | WMI_10_4_PDEV_NFCAL_POWER_EVENTID, |
| 1682 | WMI_10_4_PDEV_TPC_EVENTID, |
| 1683 | WMI_10_4_PDEV_GET_AST_INFO_EVENTID, |
| 1684 | WMI_10_4_PDEV_TEMPERATURE_EVENTID, |
| 1685 | WMI_10_4_PDEV_NFCAL_POWER_ALL_CHANNELS_EVENTID, |
| 1686 | WMI_10_4_PDEV_BSS_CHAN_INFO_EVENTID, |
Vasanthakumar Thiagarajan | 69d4315 | 2015-10-29 19:11:33 +0530 | [diff] [blame] | 1687 | WMI_10_4_MU_REPORT_EVENTID, |
Raja Mani | 2d491e6 | 2015-06-22 20:10:11 +0530 | [diff] [blame] | 1688 | WMI_10_4_PDEV_UTF_EVENTID = WMI_10_4_END_EVENTID - 1, |
| 1689 | }; |
| 1690 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1691 | enum wmi_phy_mode { |
| 1692 | MODE_11A = 0, /* 11a Mode */ |
| 1693 | MODE_11G = 1, /* 11b/g Mode */ |
| 1694 | MODE_11B = 2, /* 11b Mode */ |
| 1695 | MODE_11GONLY = 3, /* 11g only Mode */ |
| 1696 | MODE_11NA_HT20 = 4, /* 11a HT20 mode */ |
| 1697 | MODE_11NG_HT20 = 5, /* 11g HT20 mode */ |
| 1698 | MODE_11NA_HT40 = 6, /* 11a HT40 mode */ |
| 1699 | MODE_11NG_HT40 = 7, /* 11g HT40 mode */ |
| 1700 | MODE_11AC_VHT20 = 8, |
| 1701 | MODE_11AC_VHT40 = 9, |
| 1702 | MODE_11AC_VHT80 = 10, |
| 1703 | /* MODE_11AC_VHT160 = 11, */ |
| 1704 | MODE_11AC_VHT20_2G = 11, |
| 1705 | MODE_11AC_VHT40_2G = 12, |
| 1706 | MODE_11AC_VHT80_2G = 13, |
| 1707 | MODE_UNKNOWN = 14, |
| 1708 | MODE_MAX = 14 |
| 1709 | }; |
| 1710 | |
Kalle Valo | 38a1d47 | 2013-09-08 17:56:14 +0300 | [diff] [blame] | 1711 | static inline const char *ath10k_wmi_phymode_str(enum wmi_phy_mode mode) |
| 1712 | { |
| 1713 | switch (mode) { |
| 1714 | case MODE_11A: |
| 1715 | return "11a"; |
| 1716 | case MODE_11G: |
| 1717 | return "11g"; |
| 1718 | case MODE_11B: |
| 1719 | return "11b"; |
| 1720 | case MODE_11GONLY: |
| 1721 | return "11gonly"; |
| 1722 | case MODE_11NA_HT20: |
| 1723 | return "11na-ht20"; |
| 1724 | case MODE_11NG_HT20: |
| 1725 | return "11ng-ht20"; |
| 1726 | case MODE_11NA_HT40: |
| 1727 | return "11na-ht40"; |
| 1728 | case MODE_11NG_HT40: |
| 1729 | return "11ng-ht40"; |
| 1730 | case MODE_11AC_VHT20: |
| 1731 | return "11ac-vht20"; |
| 1732 | case MODE_11AC_VHT40: |
| 1733 | return "11ac-vht40"; |
| 1734 | case MODE_11AC_VHT80: |
| 1735 | return "11ac-vht80"; |
| 1736 | case MODE_11AC_VHT20_2G: |
| 1737 | return "11ac-vht20-2g"; |
| 1738 | case MODE_11AC_VHT40_2G: |
| 1739 | return "11ac-vht40-2g"; |
| 1740 | case MODE_11AC_VHT80_2G: |
| 1741 | return "11ac-vht80-2g"; |
| 1742 | case MODE_UNKNOWN: |
| 1743 | /* skip */ |
| 1744 | break; |
| 1745 | |
| 1746 | /* no default handler to allow compiler to check that the |
| 1747 | * enum is fully handled */ |
| 1748 | }; |
| 1749 | |
| 1750 | return "<unknown>"; |
| 1751 | } |
| 1752 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1753 | #define WMI_CHAN_LIST_TAG 0x1 |
| 1754 | #define WMI_SSID_LIST_TAG 0x2 |
| 1755 | #define WMI_BSSID_LIST_TAG 0x3 |
| 1756 | #define WMI_IE_TAG 0x4 |
| 1757 | |
| 1758 | struct wmi_channel { |
| 1759 | __le32 mhz; |
| 1760 | __le32 band_center_freq1; |
| 1761 | __le32 band_center_freq2; /* valid for 11ac, 80plus80 */ |
| 1762 | union { |
| 1763 | __le32 flags; /* WMI_CHAN_FLAG_ */ |
| 1764 | struct { |
| 1765 | u8 mode; /* only 6 LSBs */ |
| 1766 | } __packed; |
| 1767 | } __packed; |
| 1768 | union { |
| 1769 | __le32 reginfo0; |
| 1770 | struct { |
Michal Kazior | 0225693 | 2013-10-23 04:02:14 -0700 | [diff] [blame] | 1771 | /* note: power unit is 0.5 dBm */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1772 | u8 min_power; |
| 1773 | u8 max_power; |
| 1774 | u8 reg_power; |
| 1775 | u8 reg_classid; |
| 1776 | } __packed; |
| 1777 | } __packed; |
| 1778 | union { |
| 1779 | __le32 reginfo1; |
| 1780 | struct { |
| 1781 | u8 antenna_max; |
| 1782 | } __packed; |
| 1783 | } __packed; |
| 1784 | } __packed; |
| 1785 | |
| 1786 | struct wmi_channel_arg { |
| 1787 | u32 freq; |
| 1788 | u32 band_center_freq1; |
| 1789 | bool passive; |
| 1790 | bool allow_ibss; |
| 1791 | bool allow_ht; |
| 1792 | bool allow_vht; |
| 1793 | bool ht40plus; |
Marek Puzyniak | e8a50f8 | 2013-11-20 09:59:47 +0200 | [diff] [blame] | 1794 | bool chan_radar; |
Michal Kazior | 0225693 | 2013-10-23 04:02:14 -0700 | [diff] [blame] | 1795 | /* note: power unit is 0.5 dBm */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1796 | u32 min_power; |
| 1797 | u32 max_power; |
| 1798 | u32 max_reg_power; |
| 1799 | u32 max_antenna_gain; |
| 1800 | u32 reg_class_id; |
| 1801 | enum wmi_phy_mode mode; |
| 1802 | }; |
| 1803 | |
| 1804 | enum wmi_channel_change_cause { |
| 1805 | WMI_CHANNEL_CHANGE_CAUSE_NONE = 0, |
| 1806 | WMI_CHANNEL_CHANGE_CAUSE_CSA, |
| 1807 | }; |
| 1808 | |
| 1809 | #define WMI_CHAN_FLAG_HT40_PLUS (1 << 6) |
| 1810 | #define WMI_CHAN_FLAG_PASSIVE (1 << 7) |
| 1811 | #define WMI_CHAN_FLAG_ADHOC_ALLOWED (1 << 8) |
| 1812 | #define WMI_CHAN_FLAG_AP_DISABLED (1 << 9) |
| 1813 | #define WMI_CHAN_FLAG_DFS (1 << 10) |
| 1814 | #define WMI_CHAN_FLAG_ALLOW_HT (1 << 11) |
| 1815 | #define WMI_CHAN_FLAG_ALLOW_VHT (1 << 12) |
| 1816 | |
| 1817 | /* Indicate reason for channel switch */ |
| 1818 | #define WMI_CHANNEL_CHANGE_CAUSE_CSA (1 << 13) |
| 1819 | |
Raja Mani | 5c8726e | 2015-06-22 20:22:26 +0530 | [diff] [blame] | 1820 | #define WMI_MAX_SPATIAL_STREAM 3 /* default max ss */ |
| 1821 | #define WMI_10_4_MAX_SPATIAL_STREAM 4 |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1822 | |
| 1823 | /* HT Capabilities*/ |
| 1824 | #define WMI_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */ |
| 1825 | #define WMI_HT_CAP_HT20_SGI 0x0002 /* Short Guard Interval with HT20 */ |
| 1826 | #define WMI_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */ |
| 1827 | #define WMI_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */ |
| 1828 | #define WMI_HT_CAP_TX_STBC_MASK_SHIFT 3 |
| 1829 | #define WMI_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */ |
| 1830 | #define WMI_HT_CAP_RX_STBC_MASK_SHIFT 4 |
| 1831 | #define WMI_HT_CAP_LDPC 0x0040 /* LDPC supported */ |
| 1832 | #define WMI_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */ |
| 1833 | #define WMI_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */ |
| 1834 | #define WMI_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8 |
| 1835 | #define WMI_HT_CAP_HT40_SGI 0x0800 |
| 1836 | |
| 1837 | #define WMI_HT_CAP_DEFAULT_ALL (WMI_HT_CAP_ENABLED | \ |
| 1838 | WMI_HT_CAP_HT20_SGI | \ |
| 1839 | WMI_HT_CAP_HT40_SGI | \ |
| 1840 | WMI_HT_CAP_TX_STBC | \ |
| 1841 | WMI_HT_CAP_RX_STBC | \ |
| 1842 | WMI_HT_CAP_LDPC) |
| 1843 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1844 | /* |
| 1845 | * WMI_VHT_CAP_* these maps to ieee 802.11ac vht capability information |
| 1846 | * field. The fields not defined here are not supported, or reserved. |
| 1847 | * Do not change these masks and if you have to add new one follow the |
| 1848 | * bitmask as specified by 802.11ac draft. |
| 1849 | */ |
| 1850 | |
| 1851 | #define WMI_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003 |
| 1852 | #define WMI_VHT_CAP_RX_LDPC 0x00000010 |
| 1853 | #define WMI_VHT_CAP_SGI_80MHZ 0x00000020 |
| 1854 | #define WMI_VHT_CAP_TX_STBC 0x00000080 |
| 1855 | #define WMI_VHT_CAP_RX_STBC_MASK 0x00000300 |
| 1856 | #define WMI_VHT_CAP_RX_STBC_MASK_SHIFT 8 |
| 1857 | #define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000 |
| 1858 | #define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIFT 23 |
| 1859 | #define WMI_VHT_CAP_RX_FIXED_ANT 0x10000000 |
| 1860 | #define WMI_VHT_CAP_TX_FIXED_ANT 0x20000000 |
| 1861 | |
| 1862 | /* The following also refer for max HT AMSDU */ |
| 1863 | #define WMI_VHT_CAP_MAX_MPDU_LEN_3839 0x00000000 |
| 1864 | #define WMI_VHT_CAP_MAX_MPDU_LEN_7935 0x00000001 |
| 1865 | #define WMI_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002 |
| 1866 | |
| 1867 | #define WMI_VHT_CAP_DEFAULT_ALL (WMI_VHT_CAP_MAX_MPDU_LEN_11454 | \ |
| 1868 | WMI_VHT_CAP_RX_LDPC | \ |
| 1869 | WMI_VHT_CAP_SGI_80MHZ | \ |
| 1870 | WMI_VHT_CAP_TX_STBC | \ |
| 1871 | WMI_VHT_CAP_RX_STBC_MASK | \ |
| 1872 | WMI_VHT_CAP_MAX_AMPDU_LEN_EXP | \ |
| 1873 | WMI_VHT_CAP_RX_FIXED_ANT | \ |
| 1874 | WMI_VHT_CAP_TX_FIXED_ANT) |
| 1875 | |
| 1876 | /* |
| 1877 | * Interested readers refer to Rx/Tx MCS Map definition as defined in |
| 1878 | * 802.11ac |
| 1879 | */ |
| 1880 | #define WMI_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1)) |
| 1881 | #define WMI_VHT_MAX_SUPP_RATE_MASK 0x1fff0000 |
| 1882 | #define WMI_VHT_MAX_SUPP_RATE_MASK_SHIFT 16 |
| 1883 | |
| 1884 | enum { |
| 1885 | REGDMN_MODE_11A = 0x00001, /* 11a channels */ |
| 1886 | REGDMN_MODE_TURBO = 0x00002, /* 11a turbo-only channels */ |
| 1887 | REGDMN_MODE_11B = 0x00004, /* 11b channels */ |
| 1888 | REGDMN_MODE_PUREG = 0x00008, /* 11g channels (OFDM only) */ |
| 1889 | REGDMN_MODE_11G = 0x00008, /* XXX historical */ |
| 1890 | REGDMN_MODE_108G = 0x00020, /* 11a+Turbo channels */ |
| 1891 | REGDMN_MODE_108A = 0x00040, /* 11g+Turbo channels */ |
| 1892 | REGDMN_MODE_XR = 0x00100, /* XR channels */ |
| 1893 | REGDMN_MODE_11A_HALF_RATE = 0x00200, /* 11A half rate channels */ |
| 1894 | REGDMN_MODE_11A_QUARTER_RATE = 0x00400, /* 11A quarter rate channels */ |
| 1895 | REGDMN_MODE_11NG_HT20 = 0x00800, /* 11N-G HT20 channels */ |
| 1896 | REGDMN_MODE_11NA_HT20 = 0x01000, /* 11N-A HT20 channels */ |
| 1897 | REGDMN_MODE_11NG_HT40PLUS = 0x02000, /* 11N-G HT40 + channels */ |
| 1898 | REGDMN_MODE_11NG_HT40MINUS = 0x04000, /* 11N-G HT40 - channels */ |
| 1899 | REGDMN_MODE_11NA_HT40PLUS = 0x08000, /* 11N-A HT40 + channels */ |
| 1900 | REGDMN_MODE_11NA_HT40MINUS = 0x10000, /* 11N-A HT40 - channels */ |
| 1901 | REGDMN_MODE_11AC_VHT20 = 0x20000, /* 5Ghz, VHT20 */ |
| 1902 | REGDMN_MODE_11AC_VHT40PLUS = 0x40000, /* 5Ghz, VHT40 + channels */ |
| 1903 | REGDMN_MODE_11AC_VHT40MINUS = 0x80000, /* 5Ghz VHT40 - channels */ |
| 1904 | REGDMN_MODE_11AC_VHT80 = 0x100000, /* 5Ghz, VHT80 channels */ |
| 1905 | REGDMN_MODE_ALL = 0xffffffff |
| 1906 | }; |
| 1907 | |
| 1908 | #define REGDMN_CAP1_CHAN_HALF_RATE 0x00000001 |
| 1909 | #define REGDMN_CAP1_CHAN_QUARTER_RATE 0x00000002 |
| 1910 | #define REGDMN_CAP1_CHAN_HAL49GHZ 0x00000004 |
| 1911 | |
| 1912 | /* regulatory capabilities */ |
| 1913 | #define REGDMN_EEPROM_EEREGCAP_EN_FCC_MIDBAND 0x0040 |
| 1914 | #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_EVEN 0x0080 |
| 1915 | #define REGDMN_EEPROM_EEREGCAP_EN_KK_U2 0x0100 |
| 1916 | #define REGDMN_EEPROM_EEREGCAP_EN_KK_MIDBAND 0x0200 |
| 1917 | #define REGDMN_EEPROM_EEREGCAP_EN_KK_U1_ODD 0x0400 |
| 1918 | #define REGDMN_EEPROM_EEREGCAP_EN_KK_NEW_11A 0x0800 |
| 1919 | |
| 1920 | struct hal_reg_capabilities { |
| 1921 | /* regdomain value specified in EEPROM */ |
| 1922 | __le32 eeprom_rd; |
| 1923 | /*regdomain */ |
| 1924 | __le32 eeprom_rd_ext; |
| 1925 | /* CAP1 capabilities bit map. */ |
| 1926 | __le32 regcap1; |
| 1927 | /* REGDMN EEPROM CAP. */ |
| 1928 | __le32 regcap2; |
| 1929 | /* REGDMN MODE */ |
| 1930 | __le32 wireless_modes; |
| 1931 | __le32 low_2ghz_chan; |
| 1932 | __le32 high_2ghz_chan; |
| 1933 | __le32 low_5ghz_chan; |
| 1934 | __le32 high_5ghz_chan; |
| 1935 | } __packed; |
| 1936 | |
| 1937 | enum wlan_mode_capability { |
| 1938 | WHAL_WLAN_11A_CAPABILITY = 0x1, |
| 1939 | WHAL_WLAN_11G_CAPABILITY = 0x2, |
| 1940 | WHAL_WLAN_11AG_CAPABILITY = 0x3, |
| 1941 | }; |
| 1942 | |
| 1943 | /* structure used by FW for requesting host memory */ |
| 1944 | struct wlan_host_mem_req { |
| 1945 | /* ID of the request */ |
| 1946 | __le32 req_id; |
| 1947 | /* size of the of each unit */ |
| 1948 | __le32 unit_size; |
| 1949 | /* flags to indicate that |
| 1950 | * the number units is dependent |
| 1951 | * on number of resources(num vdevs num peers .. etc) |
| 1952 | */ |
| 1953 | __le32 num_unit_info; |
| 1954 | /* |
| 1955 | * actual number of units to allocate . if flags in the num_unit_info |
| 1956 | * indicate that number of units is tied to number of a particular |
| 1957 | * resource to allocate then num_units filed is set to 0 and host |
| 1958 | * will derive the number units from number of the resources it is |
| 1959 | * requesting. |
| 1960 | */ |
| 1961 | __le32 num_units; |
| 1962 | } __packed; |
| 1963 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1964 | /* |
| 1965 | * The following struct holds optional payload for |
| 1966 | * wmi_service_ready_event,e.g., 11ac pass some of the |
| 1967 | * device capability to the host. |
| 1968 | */ |
| 1969 | struct wmi_service_ready_event { |
| 1970 | __le32 sw_version; |
| 1971 | __le32 sw_version_1; |
| 1972 | __le32 abi_version; |
| 1973 | /* WMI_PHY_CAPABILITY */ |
| 1974 | __le32 phy_capability; |
| 1975 | /* Maximum number of frag table entries that SW will populate less 1 */ |
| 1976 | __le32 max_frag_entry; |
Michal Kazior | c4f8c83 | 2014-09-04 10:18:32 +0200 | [diff] [blame] | 1977 | __le32 wmi_service_bitmap[16]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 1978 | __le32 num_rf_chains; |
| 1979 | /* |
| 1980 | * The following field is only valid for service type |
| 1981 | * WMI_SERVICE_11AC |
| 1982 | */ |
| 1983 | __le32 ht_cap_info; /* WMI HT Capability */ |
| 1984 | __le32 vht_cap_info; /* VHT capability info field of 802.11ac */ |
| 1985 | __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */ |
| 1986 | __le32 hw_min_tx_power; |
| 1987 | __le32 hw_max_tx_power; |
| 1988 | struct hal_reg_capabilities hal_reg_capabilities; |
| 1989 | __le32 sys_cap_info; |
| 1990 | __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */ |
| 1991 | /* |
| 1992 | * Max beacon and Probe Response IE offload size |
| 1993 | * (includes optional P2P IEs) |
| 1994 | */ |
| 1995 | __le32 max_bcn_ie_size; |
| 1996 | /* |
| 1997 | * request to host to allocate a chuck of memory and pss it down to FW |
| 1998 | * via WM_INIT. FW uses this as FW extesnsion memory for saving its |
| 1999 | * data structures. Only valid for low latency interfaces like PCIE |
| 2000 | * where FW can access this memory directly (or) by DMA. |
| 2001 | */ |
| 2002 | __le32 num_mem_reqs; |
Michal Kazior | 5c01aa3d | 2014-09-18 15:21:24 +0200 | [diff] [blame] | 2003 | struct wlan_host_mem_req mem_reqs[0]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2004 | } __packed; |
| 2005 | |
Bartosz Markowski | 6f97d25 | 2013-09-26 17:47:09 +0200 | [diff] [blame] | 2006 | /* This is the definition from 10.X firmware branch */ |
Michal Kazior | 5c01aa3d | 2014-09-18 15:21:24 +0200 | [diff] [blame] | 2007 | struct wmi_10x_service_ready_event { |
Bartosz Markowski | 6f97d25 | 2013-09-26 17:47:09 +0200 | [diff] [blame] | 2008 | __le32 sw_version; |
| 2009 | __le32 abi_version; |
| 2010 | |
| 2011 | /* WMI_PHY_CAPABILITY */ |
| 2012 | __le32 phy_capability; |
| 2013 | |
| 2014 | /* Maximum number of frag table entries that SW will populate less 1 */ |
| 2015 | __le32 max_frag_entry; |
Michal Kazior | c4f8c83 | 2014-09-04 10:18:32 +0200 | [diff] [blame] | 2016 | __le32 wmi_service_bitmap[16]; |
Bartosz Markowski | 6f97d25 | 2013-09-26 17:47:09 +0200 | [diff] [blame] | 2017 | __le32 num_rf_chains; |
| 2018 | |
| 2019 | /* |
| 2020 | * The following field is only valid for service type |
| 2021 | * WMI_SERVICE_11AC |
| 2022 | */ |
| 2023 | __le32 ht_cap_info; /* WMI HT Capability */ |
| 2024 | __le32 vht_cap_info; /* VHT capability info field of 802.11ac */ |
| 2025 | __le32 vht_supp_mcs; /* VHT Supported MCS Set field Rx/Tx same */ |
| 2026 | __le32 hw_min_tx_power; |
| 2027 | __le32 hw_max_tx_power; |
| 2028 | |
| 2029 | struct hal_reg_capabilities hal_reg_capabilities; |
| 2030 | |
| 2031 | __le32 sys_cap_info; |
| 2032 | __le32 min_pkt_size_enable; /* Enterprise mode short pkt enable */ |
| 2033 | |
| 2034 | /* |
| 2035 | * request to host to allocate a chuck of memory and pss it down to FW |
| 2036 | * via WM_INIT. FW uses this as FW extesnsion memory for saving its |
| 2037 | * data structures. Only valid for low latency interfaces like PCIE |
| 2038 | * where FW can access this memory directly (or) by DMA. |
| 2039 | */ |
| 2040 | __le32 num_mem_reqs; |
| 2041 | |
Michal Kazior | 5c01aa3d | 2014-09-18 15:21:24 +0200 | [diff] [blame] | 2042 | struct wlan_host_mem_req mem_reqs[0]; |
Bartosz Markowski | 6f97d25 | 2013-09-26 17:47:09 +0200 | [diff] [blame] | 2043 | } __packed; |
| 2044 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2045 | #define WMI_SERVICE_READY_TIMEOUT_HZ (5*HZ) |
| 2046 | #define WMI_UNIFIED_READY_TIMEOUT_HZ (5*HZ) |
| 2047 | |
| 2048 | struct wmi_ready_event { |
| 2049 | __le32 sw_version; |
| 2050 | __le32 abi_version; |
| 2051 | struct wmi_mac_addr mac_addr; |
| 2052 | __le32 status; |
| 2053 | } __packed; |
| 2054 | |
| 2055 | struct wmi_resource_config { |
| 2056 | /* number of virtual devices (VAPs) to support */ |
| 2057 | __le32 num_vdevs; |
| 2058 | |
| 2059 | /* number of peer nodes to support */ |
| 2060 | __le32 num_peers; |
| 2061 | |
| 2062 | /* |
| 2063 | * In offload mode target supports features like WOW, chatter and |
| 2064 | * other protocol offloads. In order to support them some |
| 2065 | * functionalities like reorder buffering, PN checking need to be |
| 2066 | * done in target. This determines maximum number of peers suported |
| 2067 | * by target in offload mode |
| 2068 | */ |
| 2069 | __le32 num_offload_peers; |
| 2070 | |
| 2071 | /* For target-based RX reordering */ |
| 2072 | __le32 num_offload_reorder_bufs; |
| 2073 | |
| 2074 | /* number of keys per peer */ |
| 2075 | __le32 num_peer_keys; |
| 2076 | |
| 2077 | /* total number of TX/RX data TIDs */ |
| 2078 | __le32 num_tids; |
| 2079 | |
| 2080 | /* |
| 2081 | * max skid for resolving hash collisions |
| 2082 | * |
| 2083 | * The address search table is sparse, so that if two MAC addresses |
| 2084 | * result in the same hash value, the second of these conflicting |
| 2085 | * entries can slide to the next index in the address search table, |
| 2086 | * and use it, if it is unoccupied. This ast_skid_limit parameter |
| 2087 | * specifies the upper bound on how many subsequent indices to search |
| 2088 | * over to find an unoccupied space. |
| 2089 | */ |
| 2090 | __le32 ast_skid_limit; |
| 2091 | |
| 2092 | /* |
| 2093 | * the nominal chain mask for transmit |
| 2094 | * |
| 2095 | * The chain mask may be modified dynamically, e.g. to operate AP |
| 2096 | * tx with a reduced number of chains if no clients are associated. |
| 2097 | * This configuration parameter specifies the nominal chain-mask that |
| 2098 | * should be used when not operating with a reduced set of tx chains. |
| 2099 | */ |
| 2100 | __le32 tx_chain_mask; |
| 2101 | |
| 2102 | /* |
| 2103 | * the nominal chain mask for receive |
| 2104 | * |
| 2105 | * The chain mask may be modified dynamically, e.g. for a client |
| 2106 | * to use a reduced number of chains for receive if the traffic to |
| 2107 | * the client is low enough that it doesn't require downlink MIMO |
| 2108 | * or antenna diversity. |
| 2109 | * This configuration parameter specifies the nominal chain-mask that |
| 2110 | * should be used when not operating with a reduced set of rx chains. |
| 2111 | */ |
| 2112 | __le32 rx_chain_mask; |
| 2113 | |
| 2114 | /* |
| 2115 | * what rx reorder timeout (ms) to use for the AC |
| 2116 | * |
| 2117 | * Each WMM access class (voice, video, best-effort, background) will |
| 2118 | * have its own timeout value to dictate how long to wait for missing |
| 2119 | * rx MPDUs to arrive before flushing subsequent MPDUs that have |
| 2120 | * already been received. |
| 2121 | * This parameter specifies the timeout in milliseconds for each |
| 2122 | * class. |
| 2123 | */ |
| 2124 | __le32 rx_timeout_pri_vi; |
| 2125 | __le32 rx_timeout_pri_vo; |
| 2126 | __le32 rx_timeout_pri_be; |
| 2127 | __le32 rx_timeout_pri_bk; |
| 2128 | |
| 2129 | /* |
| 2130 | * what mode the rx should decap packets to |
| 2131 | * |
| 2132 | * MAC can decap to RAW (no decap), native wifi or Ethernet types |
| 2133 | * THis setting also determines the default TX behavior, however TX |
| 2134 | * behavior can be modified on a per VAP basis during VAP init |
| 2135 | */ |
| 2136 | __le32 rx_decap_mode; |
| 2137 | |
Geert Uytterhoeven | 8e4a4f5 | 2014-03-11 11:23:45 +0100 | [diff] [blame] | 2138 | /* what is the maximum number of scan requests that can be queued */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2139 | __le32 scan_max_pending_reqs; |
| 2140 | |
| 2141 | /* maximum VDEV that could use BMISS offload */ |
| 2142 | __le32 bmiss_offload_max_vdev; |
| 2143 | |
| 2144 | /* maximum VDEV that could use offload roaming */ |
| 2145 | __le32 roam_offload_max_vdev; |
| 2146 | |
| 2147 | /* maximum AP profiles that would push to offload roaming */ |
| 2148 | __le32 roam_offload_max_ap_profiles; |
| 2149 | |
| 2150 | /* |
| 2151 | * how many groups to use for mcast->ucast conversion |
| 2152 | * |
| 2153 | * The target's WAL maintains a table to hold information regarding |
| 2154 | * which peers belong to a given multicast group, so that if |
| 2155 | * multicast->unicast conversion is enabled, the target can convert |
| 2156 | * multicast tx frames to a series of unicast tx frames, to each |
| 2157 | * peer within the multicast group. |
| 2158 | This num_mcast_groups configuration parameter tells the target how |
| 2159 | * many multicast groups to provide storage for within its multicast |
| 2160 | * group membership table. |
| 2161 | */ |
| 2162 | __le32 num_mcast_groups; |
| 2163 | |
| 2164 | /* |
| 2165 | * size to alloc for the mcast membership table |
| 2166 | * |
| 2167 | * This num_mcast_table_elems configuration parameter tells the |
| 2168 | * target how many peer elements it needs to provide storage for in |
| 2169 | * its multicast group membership table. |
| 2170 | * These multicast group membership table elements are shared by the |
| 2171 | * multicast groups stored within the table. |
| 2172 | */ |
| 2173 | __le32 num_mcast_table_elems; |
| 2174 | |
| 2175 | /* |
| 2176 | * whether/how to do multicast->unicast conversion |
| 2177 | * |
| 2178 | * This configuration parameter specifies whether the target should |
| 2179 | * perform multicast --> unicast conversion on transmit, and if so, |
| 2180 | * what to do if it finds no entries in its multicast group |
| 2181 | * membership table for the multicast IP address in the tx frame. |
| 2182 | * Configuration value: |
| 2183 | * 0 -> Do not perform multicast to unicast conversion. |
| 2184 | * 1 -> Convert multicast frames to unicast, if the IP multicast |
| 2185 | * address from the tx frame is found in the multicast group |
| 2186 | * membership table. If the IP multicast address is not found, |
| 2187 | * drop the frame. |
| 2188 | * 2 -> Convert multicast frames to unicast, if the IP multicast |
| 2189 | * address from the tx frame is found in the multicast group |
| 2190 | * membership table. If the IP multicast address is not found, |
| 2191 | * transmit the frame as multicast. |
| 2192 | */ |
| 2193 | __le32 mcast2ucast_mode; |
| 2194 | |
| 2195 | /* |
| 2196 | * how much memory to allocate for a tx PPDU dbg log |
| 2197 | * |
| 2198 | * This parameter controls how much memory the target will allocate |
| 2199 | * to store a log of tx PPDU meta-information (how large the PPDU |
| 2200 | * was, when it was sent, whether it was successful, etc.) |
| 2201 | */ |
| 2202 | __le32 tx_dbg_log_size; |
| 2203 | |
| 2204 | /* how many AST entries to be allocated for WDS */ |
| 2205 | __le32 num_wds_entries; |
| 2206 | |
| 2207 | /* |
| 2208 | * MAC DMA burst size, e.g., For target PCI limit can be |
| 2209 | * 0 -default, 1 256B |
| 2210 | */ |
| 2211 | __le32 dma_burst_size; |
| 2212 | |
| 2213 | /* |
| 2214 | * Fixed delimiters to be inserted after every MPDU to |
| 2215 | * account for interface latency to avoid underrun. |
| 2216 | */ |
| 2217 | __le32 mac_aggr_delim; |
| 2218 | |
| 2219 | /* |
| 2220 | * determine whether target is responsible for detecting duplicate |
| 2221 | * non-aggregate MPDU and timing out stale fragments. |
| 2222 | * |
| 2223 | * A-MPDU reordering is always performed on the target. |
| 2224 | * |
| 2225 | * 0: target responsible for frag timeout and dup checking |
| 2226 | * 1: host responsible for frag timeout and dup checking |
| 2227 | */ |
| 2228 | __le32 rx_skip_defrag_timeout_dup_detection_check; |
| 2229 | |
| 2230 | /* |
| 2231 | * Configuration for VoW : |
| 2232 | * No of Video Nodes to be supported |
| 2233 | * and Max no of descriptors for each Video link (node). |
| 2234 | */ |
| 2235 | __le32 vow_config; |
| 2236 | |
| 2237 | /* maximum VDEV that could use GTK offload */ |
| 2238 | __le32 gtk_offload_max_vdev; |
| 2239 | |
| 2240 | /* Number of msdu descriptors target should use */ |
| 2241 | __le32 num_msdu_desc; |
| 2242 | |
| 2243 | /* |
| 2244 | * Max. number of Tx fragments per MSDU |
| 2245 | * This parameter controls the max number of Tx fragments per MSDU. |
| 2246 | * This is sent by the target as part of the WMI_SERVICE_READY event |
| 2247 | * and is overriden by the OS shim as required. |
| 2248 | */ |
| 2249 | __le32 max_frag_entries; |
| 2250 | } __packed; |
| 2251 | |
Bartosz Markowski | 12b2b9e | 2013-09-26 17:47:13 +0200 | [diff] [blame] | 2252 | struct wmi_resource_config_10x { |
| 2253 | /* number of virtual devices (VAPs) to support */ |
| 2254 | __le32 num_vdevs; |
| 2255 | |
| 2256 | /* number of peer nodes to support */ |
| 2257 | __le32 num_peers; |
| 2258 | |
| 2259 | /* number of keys per peer */ |
| 2260 | __le32 num_peer_keys; |
| 2261 | |
| 2262 | /* total number of TX/RX data TIDs */ |
| 2263 | __le32 num_tids; |
| 2264 | |
| 2265 | /* |
| 2266 | * max skid for resolving hash collisions |
| 2267 | * |
| 2268 | * The address search table is sparse, so that if two MAC addresses |
| 2269 | * result in the same hash value, the second of these conflicting |
| 2270 | * entries can slide to the next index in the address search table, |
| 2271 | * and use it, if it is unoccupied. This ast_skid_limit parameter |
| 2272 | * specifies the upper bound on how many subsequent indices to search |
| 2273 | * over to find an unoccupied space. |
| 2274 | */ |
| 2275 | __le32 ast_skid_limit; |
| 2276 | |
| 2277 | /* |
| 2278 | * the nominal chain mask for transmit |
| 2279 | * |
| 2280 | * The chain mask may be modified dynamically, e.g. to operate AP |
| 2281 | * tx with a reduced number of chains if no clients are associated. |
| 2282 | * This configuration parameter specifies the nominal chain-mask that |
| 2283 | * should be used when not operating with a reduced set of tx chains. |
| 2284 | */ |
| 2285 | __le32 tx_chain_mask; |
| 2286 | |
| 2287 | /* |
| 2288 | * the nominal chain mask for receive |
| 2289 | * |
| 2290 | * The chain mask may be modified dynamically, e.g. for a client |
| 2291 | * to use a reduced number of chains for receive if the traffic to |
| 2292 | * the client is low enough that it doesn't require downlink MIMO |
| 2293 | * or antenna diversity. |
| 2294 | * This configuration parameter specifies the nominal chain-mask that |
| 2295 | * should be used when not operating with a reduced set of rx chains. |
| 2296 | */ |
| 2297 | __le32 rx_chain_mask; |
| 2298 | |
| 2299 | /* |
| 2300 | * what rx reorder timeout (ms) to use for the AC |
| 2301 | * |
| 2302 | * Each WMM access class (voice, video, best-effort, background) will |
| 2303 | * have its own timeout value to dictate how long to wait for missing |
| 2304 | * rx MPDUs to arrive before flushing subsequent MPDUs that have |
| 2305 | * already been received. |
| 2306 | * This parameter specifies the timeout in milliseconds for each |
| 2307 | * class. |
| 2308 | */ |
| 2309 | __le32 rx_timeout_pri_vi; |
| 2310 | __le32 rx_timeout_pri_vo; |
| 2311 | __le32 rx_timeout_pri_be; |
| 2312 | __le32 rx_timeout_pri_bk; |
| 2313 | |
| 2314 | /* |
| 2315 | * what mode the rx should decap packets to |
| 2316 | * |
| 2317 | * MAC can decap to RAW (no decap), native wifi or Ethernet types |
| 2318 | * THis setting also determines the default TX behavior, however TX |
| 2319 | * behavior can be modified on a per VAP basis during VAP init |
| 2320 | */ |
| 2321 | __le32 rx_decap_mode; |
| 2322 | |
Geert Uytterhoeven | 8e4a4f5 | 2014-03-11 11:23:45 +0100 | [diff] [blame] | 2323 | /* what is the maximum number of scan requests that can be queued */ |
Bartosz Markowski | 12b2b9e | 2013-09-26 17:47:13 +0200 | [diff] [blame] | 2324 | __le32 scan_max_pending_reqs; |
| 2325 | |
| 2326 | /* maximum VDEV that could use BMISS offload */ |
| 2327 | __le32 bmiss_offload_max_vdev; |
| 2328 | |
| 2329 | /* maximum VDEV that could use offload roaming */ |
| 2330 | __le32 roam_offload_max_vdev; |
| 2331 | |
| 2332 | /* maximum AP profiles that would push to offload roaming */ |
| 2333 | __le32 roam_offload_max_ap_profiles; |
| 2334 | |
| 2335 | /* |
| 2336 | * how many groups to use for mcast->ucast conversion |
| 2337 | * |
| 2338 | * The target's WAL maintains a table to hold information regarding |
| 2339 | * which peers belong to a given multicast group, so that if |
| 2340 | * multicast->unicast conversion is enabled, the target can convert |
| 2341 | * multicast tx frames to a series of unicast tx frames, to each |
| 2342 | * peer within the multicast group. |
| 2343 | This num_mcast_groups configuration parameter tells the target how |
| 2344 | * many multicast groups to provide storage for within its multicast |
| 2345 | * group membership table. |
| 2346 | */ |
| 2347 | __le32 num_mcast_groups; |
| 2348 | |
| 2349 | /* |
| 2350 | * size to alloc for the mcast membership table |
| 2351 | * |
| 2352 | * This num_mcast_table_elems configuration parameter tells the |
| 2353 | * target how many peer elements it needs to provide storage for in |
| 2354 | * its multicast group membership table. |
| 2355 | * These multicast group membership table elements are shared by the |
| 2356 | * multicast groups stored within the table. |
| 2357 | */ |
| 2358 | __le32 num_mcast_table_elems; |
| 2359 | |
| 2360 | /* |
| 2361 | * whether/how to do multicast->unicast conversion |
| 2362 | * |
| 2363 | * This configuration parameter specifies whether the target should |
| 2364 | * perform multicast --> unicast conversion on transmit, and if so, |
| 2365 | * what to do if it finds no entries in its multicast group |
| 2366 | * membership table for the multicast IP address in the tx frame. |
| 2367 | * Configuration value: |
| 2368 | * 0 -> Do not perform multicast to unicast conversion. |
| 2369 | * 1 -> Convert multicast frames to unicast, if the IP multicast |
| 2370 | * address from the tx frame is found in the multicast group |
| 2371 | * membership table. If the IP multicast address is not found, |
| 2372 | * drop the frame. |
| 2373 | * 2 -> Convert multicast frames to unicast, if the IP multicast |
| 2374 | * address from the tx frame is found in the multicast group |
| 2375 | * membership table. If the IP multicast address is not found, |
| 2376 | * transmit the frame as multicast. |
| 2377 | */ |
| 2378 | __le32 mcast2ucast_mode; |
| 2379 | |
| 2380 | /* |
| 2381 | * how much memory to allocate for a tx PPDU dbg log |
| 2382 | * |
| 2383 | * This parameter controls how much memory the target will allocate |
| 2384 | * to store a log of tx PPDU meta-information (how large the PPDU |
| 2385 | * was, when it was sent, whether it was successful, etc.) |
| 2386 | */ |
| 2387 | __le32 tx_dbg_log_size; |
| 2388 | |
| 2389 | /* how many AST entries to be allocated for WDS */ |
| 2390 | __le32 num_wds_entries; |
| 2391 | |
| 2392 | /* |
| 2393 | * MAC DMA burst size, e.g., For target PCI limit can be |
| 2394 | * 0 -default, 1 256B |
| 2395 | */ |
| 2396 | __le32 dma_burst_size; |
| 2397 | |
| 2398 | /* |
| 2399 | * Fixed delimiters to be inserted after every MPDU to |
| 2400 | * account for interface latency to avoid underrun. |
| 2401 | */ |
| 2402 | __le32 mac_aggr_delim; |
| 2403 | |
| 2404 | /* |
| 2405 | * determine whether target is responsible for detecting duplicate |
| 2406 | * non-aggregate MPDU and timing out stale fragments. |
| 2407 | * |
| 2408 | * A-MPDU reordering is always performed on the target. |
| 2409 | * |
| 2410 | * 0: target responsible for frag timeout and dup checking |
| 2411 | * 1: host responsible for frag timeout and dup checking |
| 2412 | */ |
| 2413 | __le32 rx_skip_defrag_timeout_dup_detection_check; |
| 2414 | |
| 2415 | /* |
| 2416 | * Configuration for VoW : |
| 2417 | * No of Video Nodes to be supported |
| 2418 | * and Max no of descriptors for each Video link (node). |
| 2419 | */ |
| 2420 | __le32 vow_config; |
| 2421 | |
| 2422 | /* Number of msdu descriptors target should use */ |
| 2423 | __le32 num_msdu_desc; |
| 2424 | |
| 2425 | /* |
| 2426 | * Max. number of Tx fragments per MSDU |
| 2427 | * This parameter controls the max number of Tx fragments per MSDU. |
| 2428 | * This is sent by the target as part of the WMI_SERVICE_READY event |
| 2429 | * and is overriden by the OS shim as required. |
| 2430 | */ |
| 2431 | __le32 max_frag_entries; |
| 2432 | } __packed; |
| 2433 | |
Rajkumar Manoharan | 4a16fbe | 2014-12-17 12:21:12 +0200 | [diff] [blame] | 2434 | enum wmi_10_2_feature_mask { |
| 2435 | WMI_10_2_RX_BATCH_MODE = BIT(0), |
| 2436 | WMI_10_2_ATF_CONFIG = BIT(1), |
Yanbo Li | de0c789b | 2015-04-15 15:28:08 +0300 | [diff] [blame] | 2437 | WMI_10_2_COEX_GPIO = BIT(3), |
Mohammed Shafi Shajakhan | de46c01 | 2016-01-13 21:16:28 +0530 | [diff] [blame] | 2438 | WMI_10_2_PEER_STATS = BIT(7), |
Rajkumar Manoharan | 4a16fbe | 2014-12-17 12:21:12 +0200 | [diff] [blame] | 2439 | }; |
| 2440 | |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 2441 | struct wmi_resource_config_10_2 { |
| 2442 | struct wmi_resource_config_10x common; |
| 2443 | __le32 max_peer_ext_stats; |
| 2444 | __le32 smart_ant_cap; /* 0-disable, 1-enable */ |
| 2445 | __le32 bk_min_free; |
| 2446 | __le32 be_min_free; |
| 2447 | __le32 vi_min_free; |
| 2448 | __le32 vo_min_free; |
Rajkumar Manoharan | 4a16fbe | 2014-12-17 12:21:12 +0200 | [diff] [blame] | 2449 | __le32 feature_mask; |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 2450 | } __packed; |
Bartosz Markowski | 12b2b9e | 2013-09-26 17:47:13 +0200 | [diff] [blame] | 2451 | |
Raja Mani | b039941 | 2015-06-22 20:10:17 +0530 | [diff] [blame] | 2452 | #define NUM_UNITS_IS_NUM_VDEVS BIT(0) |
| 2453 | #define NUM_UNITS_IS_NUM_PEERS BIT(1) |
| 2454 | #define NUM_UNITS_IS_NUM_ACTIVE_PEERS BIT(2) |
Bartosz Markowski | b3effe6 | 2013-09-26 17:47:11 +0200 | [diff] [blame] | 2455 | |
Raja Mani | d1e52a8 | 2015-06-22 20:10:15 +0530 | [diff] [blame] | 2456 | struct wmi_resource_config_10_4 { |
| 2457 | /* Number of virtual devices (VAPs) to support */ |
| 2458 | __le32 num_vdevs; |
| 2459 | |
| 2460 | /* Number of peer nodes to support */ |
| 2461 | __le32 num_peers; |
| 2462 | |
| 2463 | /* Number of active peer nodes to support */ |
| 2464 | __le32 num_active_peers; |
| 2465 | |
| 2466 | /* In offload mode, target supports features like WOW, chatter and other |
| 2467 | * protocol offloads. In order to support them some functionalities like |
| 2468 | * reorder buffering, PN checking need to be done in target. |
| 2469 | * This determines maximum number of peers supported by target in |
| 2470 | * offload mode. |
| 2471 | */ |
| 2472 | __le32 num_offload_peers; |
| 2473 | |
| 2474 | /* Number of reorder buffers available for doing target based reorder |
| 2475 | * Rx reorder buffering |
| 2476 | */ |
| 2477 | __le32 num_offload_reorder_buffs; |
| 2478 | |
| 2479 | /* Number of keys per peer */ |
| 2480 | __le32 num_peer_keys; |
| 2481 | |
| 2482 | /* Total number of TX/RX data TIDs */ |
| 2483 | __le32 num_tids; |
| 2484 | |
| 2485 | /* Max skid for resolving hash collisions. |
| 2486 | * The address search table is sparse, so that if two MAC addresses |
| 2487 | * result in the same hash value, the second of these conflicting |
| 2488 | * entries can slide to the next index in the address search table, |
| 2489 | * and use it, if it is unoccupied. This ast_skid_limit parameter |
| 2490 | * specifies the upper bound on how many subsequent indices to search |
| 2491 | * over to find an unoccupied space. |
| 2492 | */ |
| 2493 | __le32 ast_skid_limit; |
| 2494 | |
| 2495 | /* The nominal chain mask for transmit. |
| 2496 | * The chain mask may be modified dynamically, e.g. to operate AP tx |
| 2497 | * with a reduced number of chains if no clients are associated. |
| 2498 | * This configuration parameter specifies the nominal chain-mask that |
| 2499 | * should be used when not operating with a reduced set of tx chains. |
| 2500 | */ |
| 2501 | __le32 tx_chain_mask; |
| 2502 | |
| 2503 | /* The nominal chain mask for receive. |
| 2504 | * The chain mask may be modified dynamically, e.g. for a client to use |
| 2505 | * a reduced number of chains for receive if the traffic to the client |
| 2506 | * is low enough that it doesn't require downlink MIMO or antenna |
| 2507 | * diversity. This configuration parameter specifies the nominal |
| 2508 | * chain-mask that should be used when not operating with a reduced |
| 2509 | * set of rx chains. |
| 2510 | */ |
| 2511 | __le32 rx_chain_mask; |
| 2512 | |
| 2513 | /* What rx reorder timeout (ms) to use for the AC. |
| 2514 | * Each WMM access class (voice, video, best-effort, background) will |
| 2515 | * have its own timeout value to dictate how long to wait for missing |
| 2516 | * rx MPDUs to arrive before flushing subsequent MPDUs that have already |
| 2517 | * been received. This parameter specifies the timeout in milliseconds |
| 2518 | * for each class. |
| 2519 | */ |
| 2520 | __le32 rx_timeout_pri[4]; |
| 2521 | |
| 2522 | /* What mode the rx should decap packets to. |
| 2523 | * MAC can decap to RAW (no decap), native wifi or Ethernet types. |
| 2524 | * This setting also determines the default TX behavior, however TX |
| 2525 | * behavior can be modified on a per VAP basis during VAP init |
| 2526 | */ |
| 2527 | __le32 rx_decap_mode; |
| 2528 | |
| 2529 | __le32 scan_max_pending_req; |
| 2530 | |
| 2531 | __le32 bmiss_offload_max_vdev; |
| 2532 | |
| 2533 | __le32 roam_offload_max_vdev; |
| 2534 | |
| 2535 | __le32 roam_offload_max_ap_profiles; |
| 2536 | |
| 2537 | /* How many groups to use for mcast->ucast conversion. |
| 2538 | * The target's WAL maintains a table to hold information regarding |
| 2539 | * which peers belong to a given multicast group, so that if |
| 2540 | * multicast->unicast conversion is enabled, the target can convert |
| 2541 | * multicast tx frames to a series of unicast tx frames, to each peer |
| 2542 | * within the multicast group. This num_mcast_groups configuration |
| 2543 | * parameter tells the target how many multicast groups to provide |
| 2544 | * storage for within its multicast group membership table. |
| 2545 | */ |
| 2546 | __le32 num_mcast_groups; |
| 2547 | |
| 2548 | /* Size to alloc for the mcast membership table. |
| 2549 | * This num_mcast_table_elems configuration parameter tells the target |
| 2550 | * how many peer elements it needs to provide storage for in its |
| 2551 | * multicast group membership table. These multicast group membership |
| 2552 | * table elements are shared by the multicast groups stored within |
| 2553 | * the table. |
| 2554 | */ |
| 2555 | __le32 num_mcast_table_elems; |
| 2556 | |
| 2557 | /* Whether/how to do multicast->unicast conversion. |
| 2558 | * This configuration parameter specifies whether the target should |
| 2559 | * perform multicast --> unicast conversion on transmit, and if so, |
| 2560 | * what to do if it finds no entries in its multicast group membership |
| 2561 | * table for the multicast IP address in the tx frame. |
| 2562 | * Configuration value: |
| 2563 | * 0 -> Do not perform multicast to unicast conversion. |
| 2564 | * 1 -> Convert multicast frames to unicast, if the IP multicast address |
| 2565 | * from the tx frame is found in the multicast group membership |
| 2566 | * table. If the IP multicast address is not found, drop the frame |
| 2567 | * 2 -> Convert multicast frames to unicast, if the IP multicast address |
| 2568 | * from the tx frame is found in the multicast group membership |
| 2569 | * table. If the IP multicast address is not found, transmit the |
| 2570 | * frame as multicast. |
| 2571 | */ |
| 2572 | __le32 mcast2ucast_mode; |
| 2573 | |
| 2574 | /* How much memory to allocate for a tx PPDU dbg log. |
| 2575 | * This parameter controls how much memory the target will allocate to |
| 2576 | * store a log of tx PPDU meta-information (how large the PPDU was, |
| 2577 | * when it was sent, whether it was successful, etc.) |
| 2578 | */ |
| 2579 | __le32 tx_dbg_log_size; |
| 2580 | |
| 2581 | /* How many AST entries to be allocated for WDS */ |
| 2582 | __le32 num_wds_entries; |
| 2583 | |
| 2584 | /* MAC DMA burst size. 0 -default, 1 -256B */ |
| 2585 | __le32 dma_burst_size; |
| 2586 | |
| 2587 | /* Fixed delimiters to be inserted after every MPDU to account for |
| 2588 | * interface latency to avoid underrun. |
| 2589 | */ |
| 2590 | __le32 mac_aggr_delim; |
| 2591 | |
| 2592 | /* Determine whether target is responsible for detecting duplicate |
| 2593 | * non-aggregate MPDU and timing out stale fragments. A-MPDU reordering |
| 2594 | * is always performed on the target. |
| 2595 | * |
| 2596 | * 0: target responsible for frag timeout and dup checking |
| 2597 | * 1: host responsible for frag timeout and dup checking |
| 2598 | */ |
| 2599 | __le32 rx_skip_defrag_timeout_dup_detection_check; |
| 2600 | |
| 2601 | /* Configuration for VoW : No of Video nodes to be supported and max |
| 2602 | * no of descriptors for each video link (node). |
| 2603 | */ |
| 2604 | __le32 vow_config; |
| 2605 | |
| 2606 | /* Maximum vdev that could use gtk offload */ |
| 2607 | __le32 gtk_offload_max_vdev; |
| 2608 | |
| 2609 | /* Number of msdu descriptors target should use */ |
| 2610 | __le32 num_msdu_desc; |
| 2611 | |
| 2612 | /* Max number of tx fragments per MSDU. |
| 2613 | * This parameter controls the max number of tx fragments per MSDU. |
| 2614 | * This will passed by target as part of the WMI_SERVICE_READY event |
| 2615 | * and is overridden by the OS shim as required. |
| 2616 | */ |
| 2617 | __le32 max_frag_entries; |
| 2618 | |
| 2619 | /* Max number of extended peer stats. |
| 2620 | * This parameter controls the max number of peers for which extended |
| 2621 | * statistics are supported by target |
| 2622 | */ |
| 2623 | __le32 max_peer_ext_stats; |
| 2624 | |
| 2625 | /* Smart antenna capabilities information. |
| 2626 | * 1 - Smart antenna is enabled |
| 2627 | * 0 - Smart antenna is disabled |
| 2628 | * In future this can contain smart antenna specific capabilities. |
| 2629 | */ |
| 2630 | __le32 smart_ant_cap; |
| 2631 | |
| 2632 | /* User can configure the buffers allocated for each AC (BE, BK, VI, VO) |
| 2633 | * during init. |
| 2634 | */ |
| 2635 | __le32 bk_minfree; |
| 2636 | __le32 be_minfree; |
| 2637 | __le32 vi_minfree; |
| 2638 | __le32 vo_minfree; |
| 2639 | |
| 2640 | /* Rx batch mode capability. |
| 2641 | * 1 - Rx batch mode enabled |
| 2642 | * 0 - Rx batch mode disabled |
| 2643 | */ |
| 2644 | __le32 rx_batchmode; |
| 2645 | |
| 2646 | /* Thermal throttling capability. |
| 2647 | * 1 - Capable of thermal throttling |
| 2648 | * 0 - Not capable of thermal throttling |
| 2649 | */ |
| 2650 | __le32 tt_support; |
| 2651 | |
| 2652 | /* ATF configuration. |
| 2653 | * 1 - Enable ATF |
| 2654 | * 0 - Disable ATF |
| 2655 | */ |
| 2656 | __le32 atf_config; |
| 2657 | |
| 2658 | /* Configure padding to manage IP header un-alignment |
| 2659 | * 1 - Enable padding |
| 2660 | * 0 - Disable padding |
| 2661 | */ |
| 2662 | __le32 iphdr_pad_config; |
| 2663 | |
| 2664 | /* qwrap configuration |
| 2665 | * 1 - This is qwrap configuration |
| 2666 | * 0 - This is not qwrap |
| 2667 | */ |
| 2668 | __le32 qwrap_config; |
| 2669 | } __packed; |
| 2670 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2671 | /* strucutre describing host memory chunk. */ |
| 2672 | struct host_memory_chunk { |
| 2673 | /* id of the request that is passed up in service ready */ |
| 2674 | __le32 req_id; |
| 2675 | /* the physical address the memory chunk */ |
| 2676 | __le32 ptr; |
| 2677 | /* size of the chunk */ |
| 2678 | __le32 size; |
| 2679 | } __packed; |
| 2680 | |
Michal Kazior | cf9fca8 | 2014-09-18 15:21:22 +0200 | [diff] [blame] | 2681 | struct wmi_host_mem_chunks { |
| 2682 | __le32 count; |
| 2683 | /* some fw revisions require at least 1 chunk regardless of count */ |
| 2684 | struct host_memory_chunk items[1]; |
| 2685 | } __packed; |
| 2686 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2687 | struct wmi_init_cmd { |
| 2688 | struct wmi_resource_config resource_config; |
Michal Kazior | cf9fca8 | 2014-09-18 15:21:22 +0200 | [diff] [blame] | 2689 | struct wmi_host_mem_chunks mem_chunks; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2690 | } __packed; |
| 2691 | |
Bartosz Markowski | 12b2b9e | 2013-09-26 17:47:13 +0200 | [diff] [blame] | 2692 | /* _10x stucture is from 10.X FW API */ |
| 2693 | struct wmi_init_cmd_10x { |
| 2694 | struct wmi_resource_config_10x resource_config; |
Michal Kazior | cf9fca8 | 2014-09-18 15:21:22 +0200 | [diff] [blame] | 2695 | struct wmi_host_mem_chunks mem_chunks; |
Bartosz Markowski | 12b2b9e | 2013-09-26 17:47:13 +0200 | [diff] [blame] | 2696 | } __packed; |
| 2697 | |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 2698 | struct wmi_init_cmd_10_2 { |
| 2699 | struct wmi_resource_config_10_2 resource_config; |
Michal Kazior | cf9fca8 | 2014-09-18 15:21:22 +0200 | [diff] [blame] | 2700 | struct wmi_host_mem_chunks mem_chunks; |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 2701 | } __packed; |
| 2702 | |
Raja Mani | d1e52a8 | 2015-06-22 20:10:15 +0530 | [diff] [blame] | 2703 | struct wmi_init_cmd_10_4 { |
| 2704 | struct wmi_resource_config_10_4 resource_config; |
| 2705 | struct wmi_host_mem_chunks mem_chunks; |
| 2706 | } __packed; |
| 2707 | |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 2708 | struct wmi_chan_list_entry { |
| 2709 | __le16 freq; |
| 2710 | u8 phy_mode; /* valid for 10.2 only */ |
| 2711 | u8 reserved; |
| 2712 | } __packed; |
| 2713 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2714 | /* TLV for channel list */ |
| 2715 | struct wmi_chan_list { |
| 2716 | __le32 tag; /* WMI_CHAN_LIST_TAG */ |
| 2717 | __le32 num_chan; |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 2718 | struct wmi_chan_list_entry channel_list[0]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2719 | } __packed; |
| 2720 | |
| 2721 | struct wmi_bssid_list { |
| 2722 | __le32 tag; /* WMI_BSSID_LIST_TAG */ |
| 2723 | __le32 num_bssid; |
| 2724 | struct wmi_mac_addr bssid_list[0]; |
| 2725 | } __packed; |
| 2726 | |
| 2727 | struct wmi_ie_data { |
| 2728 | __le32 tag; /* WMI_IE_TAG */ |
| 2729 | __le32 ie_len; |
| 2730 | u8 ie_data[0]; |
| 2731 | } __packed; |
| 2732 | |
| 2733 | struct wmi_ssid { |
| 2734 | __le32 ssid_len; |
| 2735 | u8 ssid[32]; |
| 2736 | } __packed; |
| 2737 | |
| 2738 | struct wmi_ssid_list { |
| 2739 | __le32 tag; /* WMI_SSID_LIST_TAG */ |
| 2740 | __le32 num_ssids; |
| 2741 | struct wmi_ssid ssids[0]; |
| 2742 | } __packed; |
| 2743 | |
| 2744 | /* prefix used by scan requestor ids on the host */ |
| 2745 | #define WMI_HOST_SCAN_REQUESTOR_ID_PREFIX 0xA000 |
| 2746 | |
| 2747 | /* prefix used by scan request ids generated on the host */ |
| 2748 | /* host cycles through the lower 12 bits to generate ids */ |
| 2749 | #define WMI_HOST_SCAN_REQ_ID_PREFIX 0xA000 |
| 2750 | |
| 2751 | #define WLAN_SCAN_PARAMS_MAX_SSID 16 |
| 2752 | #define WLAN_SCAN_PARAMS_MAX_BSSID 4 |
| 2753 | #define WLAN_SCAN_PARAMS_MAX_IE_LEN 256 |
| 2754 | |
Michal Kazior | dcca0bd | 2014-11-24 14:58:32 +0100 | [diff] [blame] | 2755 | /* Values lower than this may be refused by some firmware revisions with a scan |
| 2756 | * completion with a timedout reason. |
| 2757 | */ |
| 2758 | #define WMI_SCAN_CHAN_MIN_TIME_MSEC 40 |
| 2759 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2760 | /* Scan priority numbers must be sequential, starting with 0 */ |
| 2761 | enum wmi_scan_priority { |
| 2762 | WMI_SCAN_PRIORITY_VERY_LOW = 0, |
| 2763 | WMI_SCAN_PRIORITY_LOW, |
| 2764 | WMI_SCAN_PRIORITY_MEDIUM, |
| 2765 | WMI_SCAN_PRIORITY_HIGH, |
| 2766 | WMI_SCAN_PRIORITY_VERY_HIGH, |
| 2767 | WMI_SCAN_PRIORITY_COUNT /* number of priorities supported */ |
| 2768 | }; |
| 2769 | |
Michal Kazior | a6aa5da | 2014-09-18 15:21:27 +0200 | [diff] [blame] | 2770 | struct wmi_start_scan_common { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2771 | /* Scan ID */ |
| 2772 | __le32 scan_id; |
| 2773 | /* Scan requestor ID */ |
| 2774 | __le32 scan_req_id; |
| 2775 | /* VDEV id(interface) that is requesting scan */ |
| 2776 | __le32 vdev_id; |
| 2777 | /* Scan Priority, input to scan scheduler */ |
| 2778 | __le32 scan_priority; |
| 2779 | /* Scan events subscription */ |
| 2780 | __le32 notify_scan_events; |
| 2781 | /* dwell time in msec on active channels */ |
| 2782 | __le32 dwell_time_active; |
| 2783 | /* dwell time in msec on passive channels */ |
| 2784 | __le32 dwell_time_passive; |
| 2785 | /* |
| 2786 | * min time in msec on the BSS channel,only valid if atleast one |
| 2787 | * VDEV is active |
| 2788 | */ |
| 2789 | __le32 min_rest_time; |
| 2790 | /* |
| 2791 | * max rest time in msec on the BSS channel,only valid if at least |
| 2792 | * one VDEV is active |
| 2793 | */ |
| 2794 | /* |
| 2795 | * the scanner will rest on the bss channel at least min_rest_time |
| 2796 | * after min_rest_time the scanner will start checking for tx/rx |
| 2797 | * activity on all VDEVs. if there is no activity the scanner will |
| 2798 | * switch to off channel. if there is activity the scanner will let |
| 2799 | * the radio on the bss channel until max_rest_time expires.at |
| 2800 | * max_rest_time scanner will switch to off channel irrespective of |
| 2801 | * activity. activity is determined by the idle_time parameter. |
| 2802 | */ |
| 2803 | __le32 max_rest_time; |
| 2804 | /* |
| 2805 | * time before sending next set of probe requests. |
| 2806 | * The scanner keeps repeating probe requests transmission with |
| 2807 | * period specified by repeat_probe_time. |
| 2808 | * The number of probe requests specified depends on the ssid_list |
| 2809 | * and bssid_list |
| 2810 | */ |
| 2811 | __le32 repeat_probe_time; |
| 2812 | /* time in msec between 2 consequetive probe requests with in a set. */ |
| 2813 | __le32 probe_spacing_time; |
| 2814 | /* |
| 2815 | * data inactivity time in msec on bss channel that will be used by |
| 2816 | * scanner for measuring the inactivity. |
| 2817 | */ |
| 2818 | __le32 idle_time; |
| 2819 | /* maximum time in msec allowed for scan */ |
| 2820 | __le32 max_scan_time; |
| 2821 | /* |
| 2822 | * delay in msec before sending first probe request after switching |
| 2823 | * to a channel |
| 2824 | */ |
| 2825 | __le32 probe_delay; |
| 2826 | /* Scan control flags */ |
| 2827 | __le32 scan_ctrl_flags; |
Michal Kazior | a6aa5da | 2014-09-18 15:21:27 +0200 | [diff] [blame] | 2828 | } __packed; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2829 | |
Michal Kazior | a6aa5da | 2014-09-18 15:21:27 +0200 | [diff] [blame] | 2830 | struct wmi_start_scan_tlvs { |
| 2831 | /* TLV parameters. These includes channel list, ssid list, bssid list, |
| 2832 | * extra ies. |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2833 | */ |
Michal Kazior | a6aa5da | 2014-09-18 15:21:27 +0200 | [diff] [blame] | 2834 | u8 tlvs[0]; |
| 2835 | } __packed; |
| 2836 | |
| 2837 | struct wmi_start_scan_cmd { |
| 2838 | struct wmi_start_scan_common common; |
| 2839 | __le32 burst_duration_ms; |
| 2840 | struct wmi_start_scan_tlvs tlvs; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2841 | } __packed; |
| 2842 | |
Bartosz Markowski | 89b7e76 | 2013-09-26 17:47:17 +0200 | [diff] [blame] | 2843 | /* This is the definition from 10.X firmware branch */ |
Michal Kazior | a6aa5da | 2014-09-18 15:21:27 +0200 | [diff] [blame] | 2844 | struct wmi_10x_start_scan_cmd { |
| 2845 | struct wmi_start_scan_common common; |
| 2846 | struct wmi_start_scan_tlvs tlvs; |
Bartosz Markowski | 89b7e76 | 2013-09-26 17:47:17 +0200 | [diff] [blame] | 2847 | } __packed; |
| 2848 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2849 | struct wmi_ssid_arg { |
| 2850 | int len; |
| 2851 | const u8 *ssid; |
| 2852 | }; |
| 2853 | |
| 2854 | struct wmi_bssid_arg { |
| 2855 | const u8 *bssid; |
| 2856 | }; |
| 2857 | |
| 2858 | struct wmi_start_scan_arg { |
| 2859 | u32 scan_id; |
| 2860 | u32 scan_req_id; |
| 2861 | u32 vdev_id; |
| 2862 | u32 scan_priority; |
| 2863 | u32 notify_scan_events; |
| 2864 | u32 dwell_time_active; |
| 2865 | u32 dwell_time_passive; |
| 2866 | u32 min_rest_time; |
| 2867 | u32 max_rest_time; |
| 2868 | u32 repeat_probe_time; |
| 2869 | u32 probe_spacing_time; |
| 2870 | u32 idle_time; |
| 2871 | u32 max_scan_time; |
| 2872 | u32 probe_delay; |
| 2873 | u32 scan_ctrl_flags; |
Michal Kazior | dbd3f9f | 2015-03-31 11:03:48 +0000 | [diff] [blame] | 2874 | u32 burst_duration_ms; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2875 | |
| 2876 | u32 ie_len; |
| 2877 | u32 n_channels; |
| 2878 | u32 n_ssids; |
| 2879 | u32 n_bssids; |
| 2880 | |
| 2881 | u8 ie[WLAN_SCAN_PARAMS_MAX_IE_LEN]; |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 2882 | u16 channels[64]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2883 | struct wmi_ssid_arg ssids[WLAN_SCAN_PARAMS_MAX_SSID]; |
| 2884 | struct wmi_bssid_arg bssids[WLAN_SCAN_PARAMS_MAX_BSSID]; |
| 2885 | }; |
| 2886 | |
| 2887 | /* scan control flags */ |
| 2888 | |
| 2889 | /* passively scan all channels including active channels */ |
| 2890 | #define WMI_SCAN_FLAG_PASSIVE 0x1 |
| 2891 | /* add wild card ssid probe request even though ssid_list is specified. */ |
| 2892 | #define WMI_SCAN_ADD_BCAST_PROBE_REQ 0x2 |
| 2893 | /* add cck rates to rates/xrate ie for the generated probe request */ |
| 2894 | #define WMI_SCAN_ADD_CCK_RATES 0x4 |
| 2895 | /* add ofdm rates to rates/xrate ie for the generated probe request */ |
| 2896 | #define WMI_SCAN_ADD_OFDM_RATES 0x8 |
| 2897 | /* To enable indication of Chan load and Noise floor to host */ |
| 2898 | #define WMI_SCAN_CHAN_STAT_EVENT 0x10 |
| 2899 | /* Filter Probe request frames */ |
| 2900 | #define WMI_SCAN_FILTER_PROBE_REQ 0x20 |
| 2901 | /* When set, DFS channels will not be scanned */ |
| 2902 | #define WMI_SCAN_BYPASS_DFS_CHN 0x40 |
| 2903 | /* Different FW scan engine may choose to bail out on errors. |
| 2904 | * Allow the driver to have influence over that. */ |
| 2905 | #define WMI_SCAN_CONTINUE_ON_ERROR 0x80 |
| 2906 | |
| 2907 | /* WMI_SCAN_CLASS_MASK must be the same value as IEEE80211_SCAN_CLASS_MASK */ |
| 2908 | #define WMI_SCAN_CLASS_MASK 0xFF000000 |
| 2909 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2910 | enum wmi_stop_scan_type { |
| 2911 | WMI_SCAN_STOP_ONE = 0x00000000, /* stop by scan_id */ |
| 2912 | WMI_SCAN_STOP_VDEV_ALL = 0x01000000, /* stop by vdev_id */ |
| 2913 | WMI_SCAN_STOP_ALL = 0x04000000, /* stop all scans */ |
| 2914 | }; |
| 2915 | |
| 2916 | struct wmi_stop_scan_cmd { |
| 2917 | __le32 scan_req_id; |
| 2918 | __le32 scan_id; |
| 2919 | __le32 req_type; |
| 2920 | __le32 vdev_id; |
| 2921 | } __packed; |
| 2922 | |
| 2923 | struct wmi_stop_scan_arg { |
| 2924 | u32 req_id; |
| 2925 | enum wmi_stop_scan_type req_type; |
| 2926 | union { |
| 2927 | u32 scan_id; |
| 2928 | u32 vdev_id; |
| 2929 | } u; |
| 2930 | }; |
| 2931 | |
| 2932 | struct wmi_scan_chan_list_cmd { |
| 2933 | __le32 num_scan_chans; |
| 2934 | struct wmi_channel chan_info[0]; |
| 2935 | } __packed; |
| 2936 | |
| 2937 | struct wmi_scan_chan_list_arg { |
| 2938 | u32 n_channels; |
| 2939 | struct wmi_channel_arg *channels; |
| 2940 | }; |
| 2941 | |
| 2942 | enum wmi_bss_filter { |
| 2943 | WMI_BSS_FILTER_NONE = 0, /* no beacons forwarded */ |
| 2944 | WMI_BSS_FILTER_ALL, /* all beacons forwarded */ |
| 2945 | WMI_BSS_FILTER_PROFILE, /* only beacons matching profile */ |
| 2946 | WMI_BSS_FILTER_ALL_BUT_PROFILE, /* all but beacons matching profile */ |
| 2947 | WMI_BSS_FILTER_CURRENT_BSS, /* only beacons matching current BSS */ |
| 2948 | WMI_BSS_FILTER_ALL_BUT_BSS, /* all but beacons matching BSS */ |
| 2949 | WMI_BSS_FILTER_PROBED_SSID, /* beacons matching probed ssid */ |
| 2950 | WMI_BSS_FILTER_LAST_BSS, /* marker only */ |
| 2951 | }; |
| 2952 | |
| 2953 | enum wmi_scan_event_type { |
Raja Mani | b2297ba | 2015-06-22 20:22:23 +0530 | [diff] [blame] | 2954 | WMI_SCAN_EVENT_STARTED = BIT(0), |
| 2955 | WMI_SCAN_EVENT_COMPLETED = BIT(1), |
| 2956 | WMI_SCAN_EVENT_BSS_CHANNEL = BIT(2), |
| 2957 | WMI_SCAN_EVENT_FOREIGN_CHANNEL = BIT(3), |
| 2958 | WMI_SCAN_EVENT_DEQUEUED = BIT(4), |
| 2959 | /* possibly by high-prio scan */ |
| 2960 | WMI_SCAN_EVENT_PREEMPTED = BIT(5), |
| 2961 | WMI_SCAN_EVENT_START_FAILED = BIT(6), |
| 2962 | WMI_SCAN_EVENT_RESTARTED = BIT(7), |
| 2963 | WMI_SCAN_EVENT_FOREIGN_CHANNEL_EXIT = BIT(8), |
| 2964 | WMI_SCAN_EVENT_MAX = BIT(15), |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2965 | }; |
| 2966 | |
| 2967 | enum wmi_scan_completion_reason { |
| 2968 | WMI_SCAN_REASON_COMPLETED, |
| 2969 | WMI_SCAN_REASON_CANCELLED, |
| 2970 | WMI_SCAN_REASON_PREEMPTED, |
| 2971 | WMI_SCAN_REASON_TIMEDOUT, |
Raja Mani | b2297ba | 2015-06-22 20:22:23 +0530 | [diff] [blame] | 2972 | WMI_SCAN_REASON_INTERNAL_FAILURE, |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 2973 | WMI_SCAN_REASON_MAX, |
| 2974 | }; |
| 2975 | |
| 2976 | struct wmi_scan_event { |
| 2977 | __le32 event_type; /* %WMI_SCAN_EVENT_ */ |
| 2978 | __le32 reason; /* %WMI_SCAN_REASON_ */ |
| 2979 | __le32 channel_freq; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */ |
| 2980 | __le32 scan_req_id; |
| 2981 | __le32 scan_id; |
| 2982 | __le32 vdev_id; |
| 2983 | } __packed; |
| 2984 | |
| 2985 | /* |
| 2986 | * This defines how much headroom is kept in the |
| 2987 | * receive frame between the descriptor and the |
| 2988 | * payload, in order for the WMI PHY error and |
| 2989 | * management handler to insert header contents. |
| 2990 | * |
| 2991 | * This is in bytes. |
| 2992 | */ |
| 2993 | #define WMI_MGMT_RX_HDR_HEADROOM 52 |
| 2994 | |
| 2995 | /* |
| 2996 | * This event will be used for sending scan results |
| 2997 | * as well as rx mgmt frames to the host. The rx buffer |
| 2998 | * will be sent as part of this WMI event. It would be a |
| 2999 | * good idea to pass all the fields in the RX status |
| 3000 | * descriptor up to the host. |
| 3001 | */ |
Michal Kazior | 0d9b043 | 2013-08-09 10:13:33 +0200 | [diff] [blame] | 3002 | struct wmi_mgmt_rx_hdr_v1 { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3003 | __le32 channel; |
| 3004 | __le32 snr; |
| 3005 | __le32 rate; |
| 3006 | __le32 phy_mode; |
| 3007 | __le32 buf_len; |
| 3008 | __le32 status; /* %WMI_RX_STATUS_ */ |
| 3009 | } __packed; |
| 3010 | |
Michal Kazior | 0d9b043 | 2013-08-09 10:13:33 +0200 | [diff] [blame] | 3011 | struct wmi_mgmt_rx_hdr_v2 { |
| 3012 | struct wmi_mgmt_rx_hdr_v1 v1; |
| 3013 | __le32 rssi_ctl[4]; |
| 3014 | } __packed; |
| 3015 | |
| 3016 | struct wmi_mgmt_rx_event_v1 { |
| 3017 | struct wmi_mgmt_rx_hdr_v1 hdr; |
| 3018 | u8 buf[0]; |
| 3019 | } __packed; |
| 3020 | |
| 3021 | struct wmi_mgmt_rx_event_v2 { |
| 3022 | struct wmi_mgmt_rx_hdr_v2 hdr; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3023 | u8 buf[0]; |
| 3024 | } __packed; |
| 3025 | |
Raja Mani | 1c09296 | 2015-06-22 20:10:16 +0530 | [diff] [blame] | 3026 | struct wmi_10_4_mgmt_rx_hdr { |
| 3027 | __le32 channel; |
| 3028 | __le32 snr; |
| 3029 | u8 rssi_ctl[4]; |
| 3030 | __le32 rate; |
| 3031 | __le32 phy_mode; |
| 3032 | __le32 buf_len; |
| 3033 | __le32 status; |
| 3034 | } __packed; |
| 3035 | |
| 3036 | struct wmi_10_4_mgmt_rx_event { |
| 3037 | struct wmi_10_4_mgmt_rx_hdr hdr; |
| 3038 | u8 buf[0]; |
| 3039 | } __packed; |
| 3040 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3041 | #define WMI_RX_STATUS_OK 0x00 |
| 3042 | #define WMI_RX_STATUS_ERR_CRC 0x01 |
| 3043 | #define WMI_RX_STATUS_ERR_DECRYPT 0x08 |
| 3044 | #define WMI_RX_STATUS_ERR_MIC 0x10 |
| 3045 | #define WMI_RX_STATUS_ERR_KEY_CACHE_MISS 0x20 |
| 3046 | |
Raja Mani | 991adf7 | 2015-08-14 11:13:29 +0300 | [diff] [blame] | 3047 | #define PHY_ERROR_GEN_SPECTRAL_SCAN 0x26 |
| 3048 | #define PHY_ERROR_GEN_FALSE_RADAR_EXT 0x24 |
| 3049 | #define PHY_ERROR_GEN_RADAR 0x05 |
| 3050 | |
Raja Mani | 2b0a2e0 | 2015-08-14 11:13:34 +0300 | [diff] [blame] | 3051 | #define PHY_ERROR_10_4_RADAR_MASK 0x4 |
| 3052 | #define PHY_ERROR_10_4_SPECTRAL_SCAN_MASK 0x4000000 |
| 3053 | |
Raja Mani | 991adf7 | 2015-08-14 11:13:29 +0300 | [diff] [blame] | 3054 | enum phy_err_type { |
| 3055 | PHY_ERROR_UNKNOWN, |
| 3056 | PHY_ERROR_SPECTRAL_SCAN, |
| 3057 | PHY_ERROR_FALSE_RADAR_EXT, |
| 3058 | PHY_ERROR_RADAR |
| 3059 | }; |
Janusz Dziedzic | 9702c68 | 2013-11-20 09:59:41 +0200 | [diff] [blame] | 3060 | |
Michal Kazior | 2332d0a | 2014-09-18 15:21:25 +0200 | [diff] [blame] | 3061 | struct wmi_phyerr { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3062 | __le32 tsf_timestamp; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3063 | __le16 freq1; |
| 3064 | __le16 freq2; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3065 | u8 rssi_combined; |
| 3066 | u8 chan_width_mhz; |
| 3067 | u8 phy_err_code; |
| 3068 | u8 rsvd0; |
Michal Kazior | 2332d0a | 2014-09-18 15:21:25 +0200 | [diff] [blame] | 3069 | __le32 rssi_chains[4]; |
| 3070 | __le16 nf_chains[4]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3071 | __le32 buf_len; |
Michal Kazior | 2332d0a | 2014-09-18 15:21:25 +0200 | [diff] [blame] | 3072 | u8 buf[0]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3073 | } __packed; |
| 3074 | |
Michal Kazior | 2332d0a | 2014-09-18 15:21:25 +0200 | [diff] [blame] | 3075 | struct wmi_phyerr_event { |
| 3076 | __le32 num_phyerrs; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3077 | __le32 tsf_l32; |
| 3078 | __le32 tsf_u32; |
Michal Kazior | 2332d0a | 2014-09-18 15:21:25 +0200 | [diff] [blame] | 3079 | struct wmi_phyerr phyerrs[0]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3080 | } __packed; |
| 3081 | |
Raja Mani | 2b0a2e0 | 2015-08-14 11:13:34 +0300 | [diff] [blame] | 3082 | struct wmi_10_4_phyerr_event { |
| 3083 | __le32 tsf_l32; |
| 3084 | __le32 tsf_u32; |
| 3085 | __le16 freq1; |
| 3086 | __le16 freq2; |
| 3087 | u8 rssi_combined; |
| 3088 | u8 chan_width_mhz; |
| 3089 | u8 phy_err_code; |
| 3090 | u8 rsvd0; |
| 3091 | __le32 rssi_chains[4]; |
| 3092 | __le16 nf_chains[4]; |
| 3093 | __le32 phy_err_mask[2]; |
| 3094 | __le32 tsf_timestamp; |
| 3095 | __le32 buf_len; |
| 3096 | u8 buf[0]; |
| 3097 | } __packed; |
| 3098 | |
Janusz Dziedzic | 9702c68 | 2013-11-20 09:59:41 +0200 | [diff] [blame] | 3099 | #define PHYERR_TLV_SIG 0xBB |
| 3100 | #define PHYERR_TLV_TAG_SEARCH_FFT_REPORT 0xFB |
| 3101 | #define PHYERR_TLV_TAG_RADAR_PULSE_SUMMARY 0xF8 |
Simon Wunderlich | 855aed1 | 2014-08-02 09:12:54 +0300 | [diff] [blame] | 3102 | #define PHYERR_TLV_TAG_SPECTRAL_SUMMARY_REPORT 0xF9 |
Janusz Dziedzic | 9702c68 | 2013-11-20 09:59:41 +0200 | [diff] [blame] | 3103 | |
| 3104 | struct phyerr_radar_report { |
| 3105 | __le32 reg0; /* RADAR_REPORT_REG0_* */ |
| 3106 | __le32 reg1; /* REDAR_REPORT_REG1_* */ |
| 3107 | } __packed; |
| 3108 | |
| 3109 | #define RADAR_REPORT_REG0_PULSE_IS_CHIRP_MASK 0x80000000 |
| 3110 | #define RADAR_REPORT_REG0_PULSE_IS_CHIRP_LSB 31 |
| 3111 | |
| 3112 | #define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_MASK 0x40000000 |
| 3113 | #define RADAR_REPORT_REG0_PULSE_IS_MAX_WIDTH_LSB 30 |
| 3114 | |
| 3115 | #define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_MASK 0x3FF00000 |
| 3116 | #define RADAR_REPORT_REG0_AGC_TOTAL_GAIN_LSB 20 |
| 3117 | |
| 3118 | #define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_MASK 0x000F0000 |
| 3119 | #define RADAR_REPORT_REG0_PULSE_DELTA_DIFF_LSB 16 |
| 3120 | |
| 3121 | #define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_MASK 0x0000FC00 |
| 3122 | #define RADAR_REPORT_REG0_PULSE_DELTA_PEAK_LSB 10 |
| 3123 | |
| 3124 | #define RADAR_REPORT_REG0_PULSE_SIDX_MASK 0x000003FF |
| 3125 | #define RADAR_REPORT_REG0_PULSE_SIDX_LSB 0 |
| 3126 | |
| 3127 | #define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_MASK 0x80000000 |
| 3128 | #define RADAR_REPORT_REG1_PULSE_SRCH_FFT_VALID_LSB 31 |
| 3129 | |
| 3130 | #define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_MASK 0x7F000000 |
| 3131 | #define RADAR_REPORT_REG1_PULSE_AGC_MB_GAIN_LSB 24 |
| 3132 | |
| 3133 | #define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_MASK 0x00FF0000 |
| 3134 | #define RADAR_REPORT_REG1_PULSE_SUBCHAN_MASK_LSB 16 |
| 3135 | |
| 3136 | #define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_MASK 0x0000FF00 |
| 3137 | #define RADAR_REPORT_REG1_PULSE_TSF_OFFSET_LSB 8 |
| 3138 | |
| 3139 | #define RADAR_REPORT_REG1_PULSE_DUR_MASK 0x000000FF |
| 3140 | #define RADAR_REPORT_REG1_PULSE_DUR_LSB 0 |
| 3141 | |
| 3142 | struct phyerr_fft_report { |
| 3143 | __le32 reg0; /* SEARCH_FFT_REPORT_REG0_ * */ |
| 3144 | __le32 reg1; /* SEARCH_FFT_REPORT_REG1_ * */ |
| 3145 | } __packed; |
| 3146 | |
| 3147 | #define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_MASK 0xFF800000 |
| 3148 | #define SEARCH_FFT_REPORT_REG0_TOTAL_GAIN_DB_LSB 23 |
| 3149 | |
| 3150 | #define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_MASK 0x007FC000 |
| 3151 | #define SEARCH_FFT_REPORT_REG0_BASE_PWR_DB_LSB 14 |
| 3152 | |
| 3153 | #define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_MASK 0x00003000 |
| 3154 | #define SEARCH_FFT_REPORT_REG0_FFT_CHN_IDX_LSB 12 |
| 3155 | |
| 3156 | #define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_MASK 0x00000FFF |
| 3157 | #define SEARCH_FFT_REPORT_REG0_PEAK_SIDX_LSB 0 |
| 3158 | |
| 3159 | #define SEARCH_FFT_REPORT_REG1_RELPWR_DB_MASK 0xFC000000 |
| 3160 | #define SEARCH_FFT_REPORT_REG1_RELPWR_DB_LSB 26 |
| 3161 | |
| 3162 | #define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_MASK 0x03FC0000 |
| 3163 | #define SEARCH_FFT_REPORT_REG1_AVGPWR_DB_LSB 18 |
| 3164 | |
| 3165 | #define SEARCH_FFT_REPORT_REG1_PEAK_MAG_MASK 0x0003FF00 |
| 3166 | #define SEARCH_FFT_REPORT_REG1_PEAK_MAG_LSB 8 |
| 3167 | |
| 3168 | #define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_MASK 0x000000FF |
| 3169 | #define SEARCH_FFT_REPORT_REG1_NUM_STR_BINS_IB_LSB 0 |
| 3170 | |
Janusz Dziedzic | 9702c68 | 2013-11-20 09:59:41 +0200 | [diff] [blame] | 3171 | struct phyerr_tlv { |
| 3172 | __le16 len; |
| 3173 | u8 tag; |
| 3174 | u8 sig; |
| 3175 | } __packed; |
| 3176 | |
| 3177 | #define DFS_RSSI_POSSIBLY_FALSE 50 |
| 3178 | #define DFS_PEAK_MAG_THOLD_POSSIBLY_FALSE 40 |
| 3179 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3180 | struct wmi_mgmt_tx_hdr { |
| 3181 | __le32 vdev_id; |
| 3182 | struct wmi_mac_addr peer_macaddr; |
| 3183 | __le32 tx_rate; |
| 3184 | __le32 tx_power; |
| 3185 | __le32 buf_len; |
| 3186 | } __packed; |
| 3187 | |
| 3188 | struct wmi_mgmt_tx_cmd { |
| 3189 | struct wmi_mgmt_tx_hdr hdr; |
| 3190 | u8 buf[0]; |
| 3191 | } __packed; |
| 3192 | |
| 3193 | struct wmi_echo_event { |
| 3194 | __le32 value; |
| 3195 | } __packed; |
| 3196 | |
| 3197 | struct wmi_echo_cmd { |
| 3198 | __le32 value; |
| 3199 | } __packed; |
| 3200 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3201 | struct wmi_pdev_set_regdomain_cmd { |
| 3202 | __le32 reg_domain; |
| 3203 | __le32 reg_domain_2G; |
| 3204 | __le32 reg_domain_5G; |
| 3205 | __le32 conformance_test_limit_2G; |
| 3206 | __le32 conformance_test_limit_5G; |
| 3207 | } __packed; |
| 3208 | |
Marek Puzyniak | 821af6a | 2014-03-21 17:46:57 +0200 | [diff] [blame] | 3209 | enum wmi_dfs_region { |
| 3210 | /* Uninitialized dfs domain */ |
| 3211 | WMI_UNINIT_DFS_DOMAIN = 0, |
| 3212 | |
| 3213 | /* FCC3 dfs domain */ |
| 3214 | WMI_FCC_DFS_DOMAIN = 1, |
| 3215 | |
| 3216 | /* ETSI dfs domain */ |
| 3217 | WMI_ETSI_DFS_DOMAIN = 2, |
| 3218 | |
| 3219 | /*Japan dfs domain */ |
| 3220 | WMI_MKK4_DFS_DOMAIN = 3, |
| 3221 | }; |
| 3222 | |
| 3223 | struct wmi_pdev_set_regdomain_cmd_10x { |
| 3224 | __le32 reg_domain; |
| 3225 | __le32 reg_domain_2G; |
| 3226 | __le32 reg_domain_5G; |
| 3227 | __le32 conformance_test_limit_2G; |
| 3228 | __le32 conformance_test_limit_5G; |
| 3229 | |
| 3230 | /* dfs domain from wmi_dfs_region */ |
| 3231 | __le32 dfs_domain; |
| 3232 | } __packed; |
| 3233 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3234 | /* Command to set/unset chip in quiet mode */ |
| 3235 | struct wmi_pdev_set_quiet_cmd { |
| 3236 | /* period in TUs */ |
| 3237 | __le32 period; |
| 3238 | |
| 3239 | /* duration in TUs */ |
| 3240 | __le32 duration; |
| 3241 | |
| 3242 | /* offset in TUs */ |
| 3243 | __le32 next_start; |
| 3244 | |
| 3245 | /* enable/disable */ |
| 3246 | __le32 enabled; |
| 3247 | } __packed; |
| 3248 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3249 | /* |
| 3250 | * 802.11g protection mode. |
| 3251 | */ |
| 3252 | enum ath10k_protmode { |
| 3253 | ATH10K_PROT_NONE = 0, /* no protection */ |
| 3254 | ATH10K_PROT_CTSONLY = 1, /* CTS to self */ |
| 3255 | ATH10K_PROT_RTSCTS = 2, /* RTS-CTS */ |
| 3256 | }; |
| 3257 | |
Marek Kwaczynski | e81bd10 | 2014-03-11 12:58:00 +0200 | [diff] [blame] | 3258 | enum wmi_rtscts_profile { |
| 3259 | WMI_RTSCTS_FOR_NO_RATESERIES = 0, |
| 3260 | WMI_RTSCTS_FOR_SECOND_RATESERIES, |
| 3261 | WMI_RTSCTS_ACROSS_SW_RETRIES |
| 3262 | }; |
| 3263 | |
| 3264 | #define WMI_RTSCTS_ENABLED 1 |
| 3265 | #define WMI_RTSCTS_SET_MASK 0x0f |
| 3266 | #define WMI_RTSCTS_SET_LSB 0 |
| 3267 | |
| 3268 | #define WMI_RTSCTS_PROFILE_MASK 0xf0 |
| 3269 | #define WMI_RTSCTS_PROFILE_LSB 4 |
| 3270 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3271 | enum wmi_beacon_gen_mode { |
| 3272 | WMI_BEACON_STAGGERED_MODE = 0, |
| 3273 | WMI_BEACON_BURST_MODE = 1 |
| 3274 | }; |
| 3275 | |
| 3276 | enum wmi_csa_event_ies_present_flag { |
| 3277 | WMI_CSA_IE_PRESENT = 0x00000001, |
| 3278 | WMI_XCSA_IE_PRESENT = 0x00000002, |
| 3279 | WMI_WBW_IE_PRESENT = 0x00000004, |
| 3280 | WMI_CSWARP_IE_PRESENT = 0x00000008, |
| 3281 | }; |
| 3282 | |
| 3283 | /* wmi CSA receive event from beacon frame */ |
| 3284 | struct wmi_csa_event { |
| 3285 | __le32 i_fc_dur; |
| 3286 | /* Bit 0-15: FC */ |
| 3287 | /* Bit 16-31: DUR */ |
| 3288 | struct wmi_mac_addr i_addr1; |
| 3289 | struct wmi_mac_addr i_addr2; |
| 3290 | __le32 csa_ie[2]; |
| 3291 | __le32 xcsa_ie[2]; |
| 3292 | __le32 wb_ie[2]; |
| 3293 | __le32 cswarp_ie; |
| 3294 | __le32 ies_present_flag; /* wmi_csa_event_ies_present_flag */ |
| 3295 | } __packed; |
| 3296 | |
| 3297 | /* the definition of different PDEV parameters */ |
| 3298 | #define PDEV_DEFAULT_STATS_UPDATE_PERIOD 500 |
| 3299 | #define VDEV_DEFAULT_STATS_UPDATE_PERIOD 500 |
| 3300 | #define PEER_DEFAULT_STATS_UPDATE_PERIOD 500 |
| 3301 | |
Bartosz Markowski | 226a339 | 2013-09-26 17:47:16 +0200 | [diff] [blame] | 3302 | struct wmi_pdev_param_map { |
| 3303 | u32 tx_chain_mask; |
| 3304 | u32 rx_chain_mask; |
| 3305 | u32 txpower_limit2g; |
| 3306 | u32 txpower_limit5g; |
| 3307 | u32 txpower_scale; |
| 3308 | u32 beacon_gen_mode; |
| 3309 | u32 beacon_tx_mode; |
| 3310 | u32 resmgr_offchan_mode; |
| 3311 | u32 protection_mode; |
| 3312 | u32 dynamic_bw; |
| 3313 | u32 non_agg_sw_retry_th; |
| 3314 | u32 agg_sw_retry_th; |
| 3315 | u32 sta_kickout_th; |
| 3316 | u32 ac_aggrsize_scaling; |
| 3317 | u32 ltr_enable; |
| 3318 | u32 ltr_ac_latency_be; |
| 3319 | u32 ltr_ac_latency_bk; |
| 3320 | u32 ltr_ac_latency_vi; |
| 3321 | u32 ltr_ac_latency_vo; |
| 3322 | u32 ltr_ac_latency_timeout; |
| 3323 | u32 ltr_sleep_override; |
| 3324 | u32 ltr_rx_override; |
| 3325 | u32 ltr_tx_activity_timeout; |
| 3326 | u32 l1ss_enable; |
| 3327 | u32 dsleep_enable; |
| 3328 | u32 pcielp_txbuf_flush; |
| 3329 | u32 pcielp_txbuf_watermark; |
| 3330 | u32 pcielp_txbuf_tmo_en; |
| 3331 | u32 pcielp_txbuf_tmo_value; |
| 3332 | u32 pdev_stats_update_period; |
| 3333 | u32 vdev_stats_update_period; |
| 3334 | u32 peer_stats_update_period; |
| 3335 | u32 bcnflt_stats_update_period; |
| 3336 | u32 pmf_qos; |
| 3337 | u32 arp_ac_override; |
Bartosz Markowski | 226a339 | 2013-09-26 17:47:16 +0200 | [diff] [blame] | 3338 | u32 dcs; |
| 3339 | u32 ani_enable; |
| 3340 | u32 ani_poll_period; |
| 3341 | u32 ani_listen_period; |
| 3342 | u32 ani_ofdm_level; |
| 3343 | u32 ani_cck_level; |
| 3344 | u32 dyntxchain; |
| 3345 | u32 proxy_sta; |
| 3346 | u32 idle_ps_config; |
| 3347 | u32 power_gating_sleep; |
| 3348 | u32 fast_channel_reset; |
| 3349 | u32 burst_dur; |
| 3350 | u32 burst_enable; |
Peter Oh | a7bd3e9 | 2014-12-02 13:07:14 +0200 | [diff] [blame] | 3351 | u32 cal_period; |
Raja Mani | d86561f | 2015-06-22 20:10:14 +0530 | [diff] [blame] | 3352 | u32 aggr_burst; |
| 3353 | u32 rx_decap_mode; |
| 3354 | u32 smart_antenna_default_antenna; |
| 3355 | u32 igmpmld_override; |
| 3356 | u32 igmpmld_tid; |
| 3357 | u32 antenna_gain; |
| 3358 | u32 rx_filter; |
| 3359 | u32 set_mcast_to_ucast_tid; |
| 3360 | u32 proxy_sta_mode; |
| 3361 | u32 set_mcast2ucast_mode; |
| 3362 | u32 set_mcast2ucast_buffer; |
| 3363 | u32 remove_mcast2ucast_buffer; |
| 3364 | u32 peer_sta_ps_statechg_enable; |
| 3365 | u32 igmpmld_ac_override; |
| 3366 | u32 block_interbss; |
| 3367 | u32 set_disable_reset_cmdid; |
| 3368 | u32 set_msdu_ttl_cmdid; |
| 3369 | u32 set_ppdu_duration_cmdid; |
| 3370 | u32 txbf_sound_period_cmdid; |
| 3371 | u32 set_promisc_mode_cmdid; |
| 3372 | u32 set_burst_mode_cmdid; |
| 3373 | u32 en_stats; |
| 3374 | u32 mu_group_policy; |
| 3375 | u32 noise_detection; |
| 3376 | u32 noise_threshold; |
| 3377 | u32 dpd_enable; |
| 3378 | u32 set_mcast_bcast_echo; |
| 3379 | u32 atf_strict_sch; |
| 3380 | u32 atf_sched_duration; |
| 3381 | u32 ant_plzn; |
| 3382 | u32 mgmt_retry_limit; |
| 3383 | u32 sensitivity_level; |
| 3384 | u32 signed_txpower_2g; |
| 3385 | u32 signed_txpower_5g; |
| 3386 | u32 enable_per_tid_amsdu; |
| 3387 | u32 enable_per_tid_ampdu; |
| 3388 | u32 cca_threshold; |
| 3389 | u32 rts_fixed_rate; |
| 3390 | u32 pdev_reset; |
| 3391 | u32 wapi_mbssid_offset; |
| 3392 | u32 arp_srcaddr; |
| 3393 | u32 arp_dstaddr; |
Bartosz Markowski | 226a339 | 2013-09-26 17:47:16 +0200 | [diff] [blame] | 3394 | }; |
| 3395 | |
| 3396 | #define WMI_PDEV_PARAM_UNSUPPORTED 0 |
| 3397 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3398 | enum wmi_pdev_param { |
Ben Greear | d0e0a55 | 2014-05-14 16:56:14 +0300 | [diff] [blame] | 3399 | /* TX chain mask */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3400 | WMI_PDEV_PARAM_TX_CHAIN_MASK = 0x1, |
Ben Greear | d0e0a55 | 2014-05-14 16:56:14 +0300 | [diff] [blame] | 3401 | /* RX chain mask */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3402 | WMI_PDEV_PARAM_RX_CHAIN_MASK, |
| 3403 | /* TX power limit for 2G Radio */ |
| 3404 | WMI_PDEV_PARAM_TXPOWER_LIMIT2G, |
| 3405 | /* TX power limit for 5G Radio */ |
| 3406 | WMI_PDEV_PARAM_TXPOWER_LIMIT5G, |
| 3407 | /* TX power scale */ |
| 3408 | WMI_PDEV_PARAM_TXPOWER_SCALE, |
| 3409 | /* Beacon generation mode . 0: host, 1: target */ |
| 3410 | WMI_PDEV_PARAM_BEACON_GEN_MODE, |
| 3411 | /* Beacon generation mode . 0: staggered 1: bursted */ |
| 3412 | WMI_PDEV_PARAM_BEACON_TX_MODE, |
| 3413 | /* |
| 3414 | * Resource manager off chan mode . |
| 3415 | * 0: turn off off chan mode. 1: turn on offchan mode |
| 3416 | */ |
| 3417 | WMI_PDEV_PARAM_RESMGR_OFFCHAN_MODE, |
| 3418 | /* |
| 3419 | * Protection mode: |
| 3420 | * 0: no protection 1:use CTS-to-self 2: use RTS/CTS |
| 3421 | */ |
| 3422 | WMI_PDEV_PARAM_PROTECTION_MODE, |
Michal Kazior | c4dd0d0 | 2013-11-13 11:05:10 +0100 | [diff] [blame] | 3423 | /* |
| 3424 | * Dynamic bandwidth - 0: disable, 1: enable |
| 3425 | * |
| 3426 | * When enabled HW rate control tries different bandwidths when |
| 3427 | * retransmitting frames. |
| 3428 | */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3429 | WMI_PDEV_PARAM_DYNAMIC_BW, |
| 3430 | /* Non aggregrate/ 11g sw retry threshold.0-disable */ |
| 3431 | WMI_PDEV_PARAM_NON_AGG_SW_RETRY_TH, |
| 3432 | /* aggregrate sw retry threshold. 0-disable*/ |
| 3433 | WMI_PDEV_PARAM_AGG_SW_RETRY_TH, |
| 3434 | /* Station kickout threshold (non of consecutive failures).0-disable */ |
| 3435 | WMI_PDEV_PARAM_STA_KICKOUT_TH, |
| 3436 | /* Aggerate size scaling configuration per AC */ |
| 3437 | WMI_PDEV_PARAM_AC_AGGRSIZE_SCALING, |
| 3438 | /* LTR enable */ |
| 3439 | WMI_PDEV_PARAM_LTR_ENABLE, |
| 3440 | /* LTR latency for BE, in us */ |
| 3441 | WMI_PDEV_PARAM_LTR_AC_LATENCY_BE, |
| 3442 | /* LTR latency for BK, in us */ |
| 3443 | WMI_PDEV_PARAM_LTR_AC_LATENCY_BK, |
| 3444 | /* LTR latency for VI, in us */ |
| 3445 | WMI_PDEV_PARAM_LTR_AC_LATENCY_VI, |
| 3446 | /* LTR latency for VO, in us */ |
| 3447 | WMI_PDEV_PARAM_LTR_AC_LATENCY_VO, |
| 3448 | /* LTR AC latency timeout, in ms */ |
| 3449 | WMI_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT, |
| 3450 | /* LTR platform latency override, in us */ |
| 3451 | WMI_PDEV_PARAM_LTR_SLEEP_OVERRIDE, |
| 3452 | /* LTR-RX override, in us */ |
| 3453 | WMI_PDEV_PARAM_LTR_RX_OVERRIDE, |
| 3454 | /* Tx activity timeout for LTR, in us */ |
| 3455 | WMI_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT, |
| 3456 | /* L1SS state machine enable */ |
| 3457 | WMI_PDEV_PARAM_L1SS_ENABLE, |
| 3458 | /* Deep sleep state machine enable */ |
| 3459 | WMI_PDEV_PARAM_DSLEEP_ENABLE, |
| 3460 | /* RX buffering flush enable */ |
| 3461 | WMI_PDEV_PARAM_PCIELP_TXBUF_FLUSH, |
| 3462 | /* RX buffering matermark */ |
| 3463 | WMI_PDEV_PARAM_PCIELP_TXBUF_WATERMARK, |
| 3464 | /* RX buffering timeout enable */ |
| 3465 | WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_EN, |
| 3466 | /* RX buffering timeout value */ |
| 3467 | WMI_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE, |
| 3468 | /* pdev level stats update period in ms */ |
| 3469 | WMI_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD, |
| 3470 | /* vdev level stats update period in ms */ |
| 3471 | WMI_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD, |
| 3472 | /* peer level stats update period in ms */ |
| 3473 | WMI_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD, |
| 3474 | /* beacon filter status update period */ |
| 3475 | WMI_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD, |
| 3476 | /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */ |
| 3477 | WMI_PDEV_PARAM_PMF_QOS, |
| 3478 | /* Access category on which ARP frames are sent */ |
| 3479 | WMI_PDEV_PARAM_ARP_AC_OVERRIDE, |
| 3480 | /* DCS configuration */ |
| 3481 | WMI_PDEV_PARAM_DCS, |
| 3482 | /* Enable/Disable ANI on target */ |
| 3483 | WMI_PDEV_PARAM_ANI_ENABLE, |
| 3484 | /* configure the ANI polling period */ |
| 3485 | WMI_PDEV_PARAM_ANI_POLL_PERIOD, |
| 3486 | /* configure the ANI listening period */ |
| 3487 | WMI_PDEV_PARAM_ANI_LISTEN_PERIOD, |
| 3488 | /* configure OFDM immunity level */ |
| 3489 | WMI_PDEV_PARAM_ANI_OFDM_LEVEL, |
| 3490 | /* configure CCK immunity level */ |
| 3491 | WMI_PDEV_PARAM_ANI_CCK_LEVEL, |
| 3492 | /* Enable/Disable CDD for 1x1 STAs in rate control module */ |
| 3493 | WMI_PDEV_PARAM_DYNTXCHAIN, |
| 3494 | /* Enable/Disable proxy STA */ |
| 3495 | WMI_PDEV_PARAM_PROXY_STA, |
| 3496 | /* Enable/Disable low power state when all VDEVs are inactive/idle. */ |
| 3497 | WMI_PDEV_PARAM_IDLE_PS_CONFIG, |
| 3498 | /* Enable/Disable power gating sleep */ |
| 3499 | WMI_PDEV_PARAM_POWER_GATING_SLEEP, |
| 3500 | }; |
| 3501 | |
Bartosz Markowski | 226a339 | 2013-09-26 17:47:16 +0200 | [diff] [blame] | 3502 | enum wmi_10x_pdev_param { |
| 3503 | /* TX chian mask */ |
| 3504 | WMI_10X_PDEV_PARAM_TX_CHAIN_MASK = 0x1, |
| 3505 | /* RX chian mask */ |
| 3506 | WMI_10X_PDEV_PARAM_RX_CHAIN_MASK, |
| 3507 | /* TX power limit for 2G Radio */ |
| 3508 | WMI_10X_PDEV_PARAM_TXPOWER_LIMIT2G, |
| 3509 | /* TX power limit for 5G Radio */ |
| 3510 | WMI_10X_PDEV_PARAM_TXPOWER_LIMIT5G, |
| 3511 | /* TX power scale */ |
| 3512 | WMI_10X_PDEV_PARAM_TXPOWER_SCALE, |
| 3513 | /* Beacon generation mode . 0: host, 1: target */ |
| 3514 | WMI_10X_PDEV_PARAM_BEACON_GEN_MODE, |
| 3515 | /* Beacon generation mode . 0: staggered 1: bursted */ |
| 3516 | WMI_10X_PDEV_PARAM_BEACON_TX_MODE, |
| 3517 | /* |
| 3518 | * Resource manager off chan mode . |
| 3519 | * 0: turn off off chan mode. 1: turn on offchan mode |
| 3520 | */ |
| 3521 | WMI_10X_PDEV_PARAM_RESMGR_OFFCHAN_MODE, |
| 3522 | /* |
| 3523 | * Protection mode: |
| 3524 | * 0: no protection 1:use CTS-to-self 2: use RTS/CTS |
| 3525 | */ |
| 3526 | WMI_10X_PDEV_PARAM_PROTECTION_MODE, |
| 3527 | /* Dynamic bandwidth 0: disable 1: enable */ |
| 3528 | WMI_10X_PDEV_PARAM_DYNAMIC_BW, |
| 3529 | /* Non aggregrate/ 11g sw retry threshold.0-disable */ |
| 3530 | WMI_10X_PDEV_PARAM_NON_AGG_SW_RETRY_TH, |
| 3531 | /* aggregrate sw retry threshold. 0-disable*/ |
| 3532 | WMI_10X_PDEV_PARAM_AGG_SW_RETRY_TH, |
| 3533 | /* Station kickout threshold (non of consecutive failures).0-disable */ |
| 3534 | WMI_10X_PDEV_PARAM_STA_KICKOUT_TH, |
| 3535 | /* Aggerate size scaling configuration per AC */ |
| 3536 | WMI_10X_PDEV_PARAM_AC_AGGRSIZE_SCALING, |
| 3537 | /* LTR enable */ |
| 3538 | WMI_10X_PDEV_PARAM_LTR_ENABLE, |
| 3539 | /* LTR latency for BE, in us */ |
| 3540 | WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BE, |
| 3541 | /* LTR latency for BK, in us */ |
| 3542 | WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_BK, |
| 3543 | /* LTR latency for VI, in us */ |
| 3544 | WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VI, |
| 3545 | /* LTR latency for VO, in us */ |
| 3546 | WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_VO, |
| 3547 | /* LTR AC latency timeout, in ms */ |
| 3548 | WMI_10X_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT, |
| 3549 | /* LTR platform latency override, in us */ |
| 3550 | WMI_10X_PDEV_PARAM_LTR_SLEEP_OVERRIDE, |
| 3551 | /* LTR-RX override, in us */ |
| 3552 | WMI_10X_PDEV_PARAM_LTR_RX_OVERRIDE, |
| 3553 | /* Tx activity timeout for LTR, in us */ |
| 3554 | WMI_10X_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT, |
| 3555 | /* L1SS state machine enable */ |
| 3556 | WMI_10X_PDEV_PARAM_L1SS_ENABLE, |
| 3557 | /* Deep sleep state machine enable */ |
| 3558 | WMI_10X_PDEV_PARAM_DSLEEP_ENABLE, |
| 3559 | /* pdev level stats update period in ms */ |
| 3560 | WMI_10X_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD, |
| 3561 | /* vdev level stats update period in ms */ |
| 3562 | WMI_10X_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD, |
| 3563 | /* peer level stats update period in ms */ |
| 3564 | WMI_10X_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD, |
| 3565 | /* beacon filter status update period */ |
| 3566 | WMI_10X_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD, |
| 3567 | /* QOS Mgmt frame protection MFP/PMF 0: disable, 1: enable */ |
| 3568 | WMI_10X_PDEV_PARAM_PMF_QOS, |
| 3569 | /* Access category on which ARP and DHCP frames are sent */ |
| 3570 | WMI_10X_PDEV_PARAM_ARPDHCP_AC_OVERRIDE, |
| 3571 | /* DCS configuration */ |
| 3572 | WMI_10X_PDEV_PARAM_DCS, |
| 3573 | /* Enable/Disable ANI on target */ |
| 3574 | WMI_10X_PDEV_PARAM_ANI_ENABLE, |
| 3575 | /* configure the ANI polling period */ |
| 3576 | WMI_10X_PDEV_PARAM_ANI_POLL_PERIOD, |
| 3577 | /* configure the ANI listening period */ |
| 3578 | WMI_10X_PDEV_PARAM_ANI_LISTEN_PERIOD, |
| 3579 | /* configure OFDM immunity level */ |
| 3580 | WMI_10X_PDEV_PARAM_ANI_OFDM_LEVEL, |
| 3581 | /* configure CCK immunity level */ |
| 3582 | WMI_10X_PDEV_PARAM_ANI_CCK_LEVEL, |
| 3583 | /* Enable/Disable CDD for 1x1 STAs in rate control module */ |
| 3584 | WMI_10X_PDEV_PARAM_DYNTXCHAIN, |
| 3585 | /* Enable/Disable Fast channel reset*/ |
| 3586 | WMI_10X_PDEV_PARAM_FAST_CHANNEL_RESET, |
| 3587 | /* Set Bursting DUR */ |
| 3588 | WMI_10X_PDEV_PARAM_BURST_DUR, |
| 3589 | /* Set Bursting Enable*/ |
| 3590 | WMI_10X_PDEV_PARAM_BURST_ENABLE, |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 3591 | |
| 3592 | /* following are available as of firmware 10.2 */ |
| 3593 | WMI_10X_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA, |
| 3594 | WMI_10X_PDEV_PARAM_IGMPMLD_OVERRIDE, |
| 3595 | WMI_10X_PDEV_PARAM_IGMPMLD_TID, |
| 3596 | WMI_10X_PDEV_PARAM_ANTENNA_GAIN, |
| 3597 | WMI_10X_PDEV_PARAM_RX_DECAP_MODE, |
| 3598 | WMI_10X_PDEV_PARAM_RX_FILTER, |
| 3599 | WMI_10X_PDEV_PARAM_SET_MCAST_TO_UCAST_TID, |
| 3600 | WMI_10X_PDEV_PARAM_PROXY_STA_MODE, |
| 3601 | WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_MODE, |
| 3602 | WMI_10X_PDEV_PARAM_SET_MCAST2UCAST_BUFFER, |
| 3603 | WMI_10X_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER, |
Peter Oh | b43bf97 | 2014-12-02 13:06:53 +0200 | [diff] [blame] | 3604 | WMI_10X_PDEV_PARAM_PEER_STA_PS_STATECHG_ENABLE, |
| 3605 | WMI_10X_PDEV_PARAM_RTS_FIXED_RATE, |
| 3606 | WMI_10X_PDEV_PARAM_CAL_PERIOD |
Bartosz Markowski | 226a339 | 2013-09-26 17:47:16 +0200 | [diff] [blame] | 3607 | }; |
| 3608 | |
Raja Mani | d86561f | 2015-06-22 20:10:14 +0530 | [diff] [blame] | 3609 | enum wmi_10_4_pdev_param { |
| 3610 | WMI_10_4_PDEV_PARAM_TX_CHAIN_MASK = 0x1, |
| 3611 | WMI_10_4_PDEV_PARAM_RX_CHAIN_MASK, |
| 3612 | WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT2G, |
| 3613 | WMI_10_4_PDEV_PARAM_TXPOWER_LIMIT5G, |
| 3614 | WMI_10_4_PDEV_PARAM_TXPOWER_SCALE, |
| 3615 | WMI_10_4_PDEV_PARAM_BEACON_GEN_MODE, |
| 3616 | WMI_10_4_PDEV_PARAM_BEACON_TX_MODE, |
| 3617 | WMI_10_4_PDEV_PARAM_RESMGR_OFFCHAN_MODE, |
| 3618 | WMI_10_4_PDEV_PARAM_PROTECTION_MODE, |
| 3619 | WMI_10_4_PDEV_PARAM_DYNAMIC_BW, |
| 3620 | WMI_10_4_PDEV_PARAM_NON_AGG_SW_RETRY_TH, |
| 3621 | WMI_10_4_PDEV_PARAM_AGG_SW_RETRY_TH, |
| 3622 | WMI_10_4_PDEV_PARAM_STA_KICKOUT_TH, |
| 3623 | WMI_10_4_PDEV_PARAM_AC_AGGRSIZE_SCALING, |
| 3624 | WMI_10_4_PDEV_PARAM_LTR_ENABLE, |
| 3625 | WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BE, |
| 3626 | WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_BK, |
| 3627 | WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VI, |
| 3628 | WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_VO, |
| 3629 | WMI_10_4_PDEV_PARAM_LTR_AC_LATENCY_TIMEOUT, |
| 3630 | WMI_10_4_PDEV_PARAM_LTR_SLEEP_OVERRIDE, |
| 3631 | WMI_10_4_PDEV_PARAM_LTR_RX_OVERRIDE, |
| 3632 | WMI_10_4_PDEV_PARAM_LTR_TX_ACTIVITY_TIMEOUT, |
| 3633 | WMI_10_4_PDEV_PARAM_L1SS_ENABLE, |
| 3634 | WMI_10_4_PDEV_PARAM_DSLEEP_ENABLE, |
| 3635 | WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_FLUSH, |
| 3636 | WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_WATERMARK, |
| 3637 | WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_EN, |
| 3638 | WMI_10_4_PDEV_PARAM_PCIELP_TXBUF_TMO_VALUE, |
| 3639 | WMI_10_4_PDEV_PARAM_PDEV_STATS_UPDATE_PERIOD, |
| 3640 | WMI_10_4_PDEV_PARAM_VDEV_STATS_UPDATE_PERIOD, |
| 3641 | WMI_10_4_PDEV_PARAM_PEER_STATS_UPDATE_PERIOD, |
| 3642 | WMI_10_4_PDEV_PARAM_BCNFLT_STATS_UPDATE_PERIOD, |
| 3643 | WMI_10_4_PDEV_PARAM_PMF_QOS, |
| 3644 | WMI_10_4_PDEV_PARAM_ARP_AC_OVERRIDE, |
| 3645 | WMI_10_4_PDEV_PARAM_DCS, |
| 3646 | WMI_10_4_PDEV_PARAM_ANI_ENABLE, |
| 3647 | WMI_10_4_PDEV_PARAM_ANI_POLL_PERIOD, |
| 3648 | WMI_10_4_PDEV_PARAM_ANI_LISTEN_PERIOD, |
| 3649 | WMI_10_4_PDEV_PARAM_ANI_OFDM_LEVEL, |
| 3650 | WMI_10_4_PDEV_PARAM_ANI_CCK_LEVEL, |
| 3651 | WMI_10_4_PDEV_PARAM_DYNTXCHAIN, |
| 3652 | WMI_10_4_PDEV_PARAM_PROXY_STA, |
| 3653 | WMI_10_4_PDEV_PARAM_IDLE_PS_CONFIG, |
| 3654 | WMI_10_4_PDEV_PARAM_POWER_GATING_SLEEP, |
| 3655 | WMI_10_4_PDEV_PARAM_AGGR_BURST, |
| 3656 | WMI_10_4_PDEV_PARAM_RX_DECAP_MODE, |
| 3657 | WMI_10_4_PDEV_PARAM_FAST_CHANNEL_RESET, |
| 3658 | WMI_10_4_PDEV_PARAM_BURST_DUR, |
| 3659 | WMI_10_4_PDEV_PARAM_BURST_ENABLE, |
| 3660 | WMI_10_4_PDEV_PARAM_SMART_ANTENNA_DEFAULT_ANTENNA, |
| 3661 | WMI_10_4_PDEV_PARAM_IGMPMLD_OVERRIDE, |
| 3662 | WMI_10_4_PDEV_PARAM_IGMPMLD_TID, |
| 3663 | WMI_10_4_PDEV_PARAM_ANTENNA_GAIN, |
| 3664 | WMI_10_4_PDEV_PARAM_RX_FILTER, |
| 3665 | WMI_10_4_PDEV_SET_MCAST_TO_UCAST_TID, |
| 3666 | WMI_10_4_PDEV_PARAM_PROXY_STA_MODE, |
| 3667 | WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_MODE, |
| 3668 | WMI_10_4_PDEV_PARAM_SET_MCAST2UCAST_BUFFER, |
| 3669 | WMI_10_4_PDEV_PARAM_REMOVE_MCAST2UCAST_BUFFER, |
| 3670 | WMI_10_4_PDEV_PEER_STA_PS_STATECHG_ENABLE, |
| 3671 | WMI_10_4_PDEV_PARAM_IGMPMLD_AC_OVERRIDE, |
| 3672 | WMI_10_4_PDEV_PARAM_BLOCK_INTERBSS, |
| 3673 | WMI_10_4_PDEV_PARAM_SET_DISABLE_RESET_CMDID, |
| 3674 | WMI_10_4_PDEV_PARAM_SET_MSDU_TTL_CMDID, |
| 3675 | WMI_10_4_PDEV_PARAM_SET_PPDU_DURATION_CMDID, |
| 3676 | WMI_10_4_PDEV_PARAM_TXBF_SOUND_PERIOD_CMDID, |
| 3677 | WMI_10_4_PDEV_PARAM_SET_PROMISC_MODE_CMDID, |
| 3678 | WMI_10_4_PDEV_PARAM_SET_BURST_MODE_CMDID, |
| 3679 | WMI_10_4_PDEV_PARAM_EN_STATS, |
| 3680 | WMI_10_4_PDEV_PARAM_MU_GROUP_POLICY, |
| 3681 | WMI_10_4_PDEV_PARAM_NOISE_DETECTION, |
| 3682 | WMI_10_4_PDEV_PARAM_NOISE_THRESHOLD, |
| 3683 | WMI_10_4_PDEV_PARAM_DPD_ENABLE, |
| 3684 | WMI_10_4_PDEV_PARAM_SET_MCAST_BCAST_ECHO, |
| 3685 | WMI_10_4_PDEV_PARAM_ATF_STRICT_SCH, |
| 3686 | WMI_10_4_PDEV_PARAM_ATF_SCHED_DURATION, |
| 3687 | WMI_10_4_PDEV_PARAM_ANT_PLZN, |
| 3688 | WMI_10_4_PDEV_PARAM_MGMT_RETRY_LIMIT, |
| 3689 | WMI_10_4_PDEV_PARAM_SENSITIVITY_LEVEL, |
| 3690 | WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_2G, |
| 3691 | WMI_10_4_PDEV_PARAM_SIGNED_TXPOWER_5G, |
| 3692 | WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMSDU, |
| 3693 | WMI_10_4_PDEV_PARAM_ENABLE_PER_TID_AMPDU, |
| 3694 | WMI_10_4_PDEV_PARAM_CCA_THRESHOLD, |
| 3695 | WMI_10_4_PDEV_PARAM_RTS_FIXED_RATE, |
| 3696 | WMI_10_4_PDEV_PARAM_CAL_PERIOD, |
| 3697 | WMI_10_4_PDEV_PARAM_PDEV_RESET, |
| 3698 | WMI_10_4_PDEV_PARAM_WAPI_MBSSID_OFFSET, |
| 3699 | WMI_10_4_PDEV_PARAM_ARP_SRCADDR, |
| 3700 | WMI_10_4_PDEV_PARAM_ARP_DSTADDR, |
Vasanthakumar Thiagarajan | 52e8ce1 | 2015-10-29 19:11:34 +0530 | [diff] [blame] | 3701 | WMI_10_4_PDEV_PARAM_TXPOWER_DECR_DB, |
| 3702 | WMI_10_4_PDEV_PARAM_RX_BATCHMODE, |
| 3703 | WMI_10_4_PDEV_PARAM_PACKET_AGGR_DELAY, |
| 3704 | WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCH, |
| 3705 | WMI_10_4_PDEV_PARAM_ATF_OBSS_NOISE_SCALING_FACTOR, |
| 3706 | WMI_10_4_PDEV_PARAM_CUST_TXPOWER_SCALE, |
Raja Mani | d86561f | 2015-06-22 20:10:14 +0530 | [diff] [blame] | 3707 | }; |
| 3708 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3709 | struct wmi_pdev_set_param_cmd { |
| 3710 | __le32 param_id; |
| 3711 | __le32 param_value; |
| 3712 | } __packed; |
| 3713 | |
Peter Oh | a7bd3e9 | 2014-12-02 13:07:14 +0200 | [diff] [blame] | 3714 | /* valid period is 1 ~ 60000ms, unit in millisecond */ |
| 3715 | #define WMI_PDEV_PARAM_CAL_PERIOD_MAX 60000 |
| 3716 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3717 | struct wmi_pdev_get_tpc_config_cmd { |
| 3718 | /* parameter */ |
| 3719 | __le32 param; |
| 3720 | } __packed; |
| 3721 | |
Maharaja Kennadyrajan | 2954266 | 2015-10-05 17:56:38 +0300 | [diff] [blame] | 3722 | #define WMI_TPC_CONFIG_PARAM 1 |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3723 | #define WMI_TPC_RATE_MAX 160 |
| 3724 | #define WMI_TPC_TX_N_CHAIN 4 |
Maharaja Kennadyrajan | 2954266 | 2015-10-05 17:56:38 +0300 | [diff] [blame] | 3725 | #define WMI_TPC_PREAM_TABLE_MAX 10 |
| 3726 | #define WMI_TPC_FLAG 3 |
| 3727 | #define WMI_TPC_BUF_SIZE 10 |
| 3728 | |
| 3729 | enum wmi_tpc_table_type { |
| 3730 | WMI_TPC_TABLE_TYPE_CDD = 0, |
| 3731 | WMI_TPC_TABLE_TYPE_STBC = 1, |
| 3732 | WMI_TPC_TABLE_TYPE_TXBF = 2, |
| 3733 | }; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3734 | |
| 3735 | enum wmi_tpc_config_event_flag { |
| 3736 | WMI_TPC_CONFIG_EVENT_FLAG_TABLE_CDD = 0x1, |
| 3737 | WMI_TPC_CONFIG_EVENT_FLAG_TABLE_STBC = 0x2, |
| 3738 | WMI_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF = 0x4, |
| 3739 | }; |
| 3740 | |
| 3741 | struct wmi_pdev_tpc_config_event { |
| 3742 | __le32 reg_domain; |
| 3743 | __le32 chan_freq; |
| 3744 | __le32 phy_mode; |
| 3745 | __le32 twice_antenna_reduction; |
| 3746 | __le32 twice_max_rd_power; |
Kalle Valo | 3b8fc90 | 2015-10-05 17:56:37 +0300 | [diff] [blame] | 3747 | a_sle32 twice_antenna_gain; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3748 | __le32 power_limit; |
| 3749 | __le32 rate_max; |
| 3750 | __le32 num_tx_chain; |
| 3751 | __le32 ctl; |
| 3752 | __le32 flags; |
| 3753 | s8 max_reg_allow_pow[WMI_TPC_TX_N_CHAIN]; |
| 3754 | s8 max_reg_allow_pow_agcdd[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN]; |
| 3755 | s8 max_reg_allow_pow_agstbc[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN]; |
| 3756 | s8 max_reg_allow_pow_agtxbf[WMI_TPC_TX_N_CHAIN][WMI_TPC_TX_N_CHAIN]; |
| 3757 | u8 rates_array[WMI_TPC_RATE_MAX]; |
| 3758 | } __packed; |
| 3759 | |
| 3760 | /* Transmit power scale factor. */ |
| 3761 | enum wmi_tp_scale { |
| 3762 | WMI_TP_SCALE_MAX = 0, /* no scaling (default) */ |
| 3763 | WMI_TP_SCALE_50 = 1, /* 50% of max (-3 dBm) */ |
| 3764 | WMI_TP_SCALE_25 = 2, /* 25% of max (-6 dBm) */ |
| 3765 | WMI_TP_SCALE_12 = 3, /* 12% of max (-9 dBm) */ |
| 3766 | WMI_TP_SCALE_MIN = 4, /* min, but still on */ |
| 3767 | WMI_TP_SCALE_SIZE = 5, /* max num of enum */ |
| 3768 | }; |
| 3769 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3770 | struct wmi_pdev_chanlist_update_event { |
| 3771 | /* number of channels */ |
| 3772 | __le32 num_chan; |
| 3773 | /* array of channels */ |
| 3774 | struct wmi_channel channel_list[1]; |
| 3775 | } __packed; |
| 3776 | |
| 3777 | #define WMI_MAX_DEBUG_MESG (sizeof(u32) * 32) |
| 3778 | |
| 3779 | struct wmi_debug_mesg_event { |
| 3780 | /* message buffer, NULL terminated */ |
| 3781 | char bufp[WMI_MAX_DEBUG_MESG]; |
| 3782 | } __packed; |
| 3783 | |
| 3784 | enum { |
| 3785 | /* P2P device */ |
| 3786 | VDEV_SUBTYPE_P2PDEV = 0, |
| 3787 | /* P2P client */ |
| 3788 | VDEV_SUBTYPE_P2PCLI, |
| 3789 | /* P2P GO */ |
| 3790 | VDEV_SUBTYPE_P2PGO, |
| 3791 | /* BT3.0 HS */ |
| 3792 | VDEV_SUBTYPE_BT, |
| 3793 | }; |
| 3794 | |
| 3795 | struct wmi_pdev_set_channel_cmd { |
| 3796 | /* idnore power , only use flags , mode and freq */ |
| 3797 | struct wmi_channel chan; |
| 3798 | } __packed; |
| 3799 | |
Rajkumar Manoharan | 9017445 | 2014-10-03 08:02:33 +0300 | [diff] [blame] | 3800 | struct wmi_pdev_pktlog_enable_cmd { |
| 3801 | __le32 ev_bitmap; |
| 3802 | } __packed; |
| 3803 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3804 | /* Customize the DSCP (bit) to TID (0-7) mapping for QOS */ |
| 3805 | #define WMI_DSCP_MAP_MAX (64) |
| 3806 | struct wmi_pdev_set_dscp_tid_map_cmd { |
| 3807 | /* map indicating DSCP to TID conversion */ |
| 3808 | __le32 dscp_to_tid_map[WMI_DSCP_MAP_MAX]; |
| 3809 | } __packed; |
| 3810 | |
| 3811 | enum mcast_bcast_rate_id { |
| 3812 | WMI_SET_MCAST_RATE, |
| 3813 | WMI_SET_BCAST_RATE |
| 3814 | }; |
| 3815 | |
| 3816 | struct mcast_bcast_rate { |
| 3817 | enum mcast_bcast_rate_id rate_id; |
| 3818 | __le32 rate; |
| 3819 | } __packed; |
| 3820 | |
| 3821 | struct wmi_wmm_params { |
| 3822 | __le32 cwmin; |
| 3823 | __le32 cwmax; |
| 3824 | __le32 aifs; |
| 3825 | __le32 txop; |
| 3826 | __le32 acm; |
| 3827 | __le32 no_ack; |
| 3828 | } __packed; |
| 3829 | |
| 3830 | struct wmi_pdev_set_wmm_params { |
| 3831 | struct wmi_wmm_params ac_be; |
| 3832 | struct wmi_wmm_params ac_bk; |
| 3833 | struct wmi_wmm_params ac_vi; |
| 3834 | struct wmi_wmm_params ac_vo; |
| 3835 | } __packed; |
| 3836 | |
| 3837 | struct wmi_wmm_params_arg { |
| 3838 | u32 cwmin; |
| 3839 | u32 cwmax; |
| 3840 | u32 aifs; |
| 3841 | u32 txop; |
| 3842 | u32 acm; |
| 3843 | u32 no_ack; |
| 3844 | }; |
| 3845 | |
Michal Kazior | 5e752e4 | 2015-01-19 09:53:41 +0100 | [diff] [blame] | 3846 | struct wmi_wmm_params_all_arg { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3847 | struct wmi_wmm_params_arg ac_be; |
| 3848 | struct wmi_wmm_params_arg ac_bk; |
| 3849 | struct wmi_wmm_params_arg ac_vi; |
| 3850 | struct wmi_wmm_params_arg ac_vo; |
| 3851 | }; |
| 3852 | |
Michal Kazior | b91251f | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 3853 | struct wmi_pdev_stats_tx { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3854 | /* Num HTT cookies queued to dispatch list */ |
| 3855 | __le32 comp_queued; |
| 3856 | |
| 3857 | /* Num HTT cookies dispatched */ |
| 3858 | __le32 comp_delivered; |
| 3859 | |
| 3860 | /* Num MSDU queued to WAL */ |
| 3861 | __le32 msdu_enqued; |
| 3862 | |
| 3863 | /* Num MPDU queue to WAL */ |
| 3864 | __le32 mpdu_enqued; |
| 3865 | |
| 3866 | /* Num MSDUs dropped by WMM limit */ |
| 3867 | __le32 wmm_drop; |
| 3868 | |
| 3869 | /* Num Local frames queued */ |
| 3870 | __le32 local_enqued; |
| 3871 | |
| 3872 | /* Num Local frames done */ |
| 3873 | __le32 local_freed; |
| 3874 | |
| 3875 | /* Num queued to HW */ |
| 3876 | __le32 hw_queued; |
| 3877 | |
| 3878 | /* Num PPDU reaped from HW */ |
| 3879 | __le32 hw_reaped; |
| 3880 | |
| 3881 | /* Num underruns */ |
| 3882 | __le32 underrun; |
| 3883 | |
| 3884 | /* Num PPDUs cleaned up in TX abort */ |
| 3885 | __le32 tx_abort; |
| 3886 | |
| 3887 | /* Num MPDUs requed by SW */ |
| 3888 | __le32 mpdus_requed; |
| 3889 | |
| 3890 | /* excessive retries */ |
| 3891 | __le32 tx_ko; |
| 3892 | |
| 3893 | /* data hw rate code */ |
| 3894 | __le32 data_rc; |
| 3895 | |
| 3896 | /* Scheduler self triggers */ |
| 3897 | __le32 self_triggers; |
| 3898 | |
| 3899 | /* frames dropped due to excessive sw retries */ |
| 3900 | __le32 sw_retry_failure; |
| 3901 | |
| 3902 | /* illegal rate phy errors */ |
| 3903 | __le32 illgl_rate_phy_err; |
| 3904 | |
| 3905 | /* wal pdev continous xretry */ |
| 3906 | __le32 pdev_cont_xretry; |
| 3907 | |
| 3908 | /* wal pdev continous xretry */ |
| 3909 | __le32 pdev_tx_timeout; |
| 3910 | |
| 3911 | /* wal pdev resets */ |
| 3912 | __le32 pdev_resets; |
| 3913 | |
Bartosz Markowski | 34d714e | 2014-03-28 14:35:16 +0200 | [diff] [blame] | 3914 | /* frames dropped due to non-availability of stateless TIDs */ |
| 3915 | __le32 stateless_tid_alloc_failure; |
| 3916 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 3917 | __le32 phy_underrun; |
| 3918 | |
| 3919 | /* MPDU is more than txop limit */ |
| 3920 | __le32 txop_ovf; |
| 3921 | } __packed; |
| 3922 | |
Manikanta Pubbisetty | 98dd2b9 | 2015-10-28 21:38:33 +0200 | [diff] [blame] | 3923 | struct wmi_10_4_pdev_stats_tx { |
| 3924 | /* Num HTT cookies queued to dispatch list */ |
| 3925 | __le32 comp_queued; |
| 3926 | |
| 3927 | /* Num HTT cookies dispatched */ |
| 3928 | __le32 comp_delivered; |
| 3929 | |
| 3930 | /* Num MSDU queued to WAL */ |
| 3931 | __le32 msdu_enqued; |
| 3932 | |
| 3933 | /* Num MPDU queue to WAL */ |
| 3934 | __le32 mpdu_enqued; |
| 3935 | |
| 3936 | /* Num MSDUs dropped by WMM limit */ |
| 3937 | __le32 wmm_drop; |
| 3938 | |
| 3939 | /* Num Local frames queued */ |
| 3940 | __le32 local_enqued; |
| 3941 | |
| 3942 | /* Num Local frames done */ |
| 3943 | __le32 local_freed; |
| 3944 | |
| 3945 | /* Num queued to HW */ |
| 3946 | __le32 hw_queued; |
| 3947 | |
| 3948 | /* Num PPDU reaped from HW */ |
| 3949 | __le32 hw_reaped; |
| 3950 | |
| 3951 | /* Num underruns */ |
| 3952 | __le32 underrun; |
| 3953 | |
| 3954 | /* HW Paused. */ |
| 3955 | __le32 hw_paused; |
| 3956 | |
| 3957 | /* Num PPDUs cleaned up in TX abort */ |
| 3958 | __le32 tx_abort; |
| 3959 | |
| 3960 | /* Num MPDUs requed by SW */ |
| 3961 | __le32 mpdus_requed; |
| 3962 | |
| 3963 | /* excessive retries */ |
| 3964 | __le32 tx_ko; |
| 3965 | |
| 3966 | /* data hw rate code */ |
| 3967 | __le32 data_rc; |
| 3968 | |
| 3969 | /* Scheduler self triggers */ |
| 3970 | __le32 self_triggers; |
| 3971 | |
| 3972 | /* frames dropped due to excessive sw retries */ |
| 3973 | __le32 sw_retry_failure; |
| 3974 | |
| 3975 | /* illegal rate phy errors */ |
| 3976 | __le32 illgl_rate_phy_err; |
| 3977 | |
| 3978 | /* wal pdev continuous xretry */ |
| 3979 | __le32 pdev_cont_xretry; |
| 3980 | |
| 3981 | /* wal pdev tx timeouts */ |
| 3982 | __le32 pdev_tx_timeout; |
| 3983 | |
| 3984 | /* wal pdev resets */ |
| 3985 | __le32 pdev_resets; |
| 3986 | |
| 3987 | /* frames dropped due to non-availability of stateless TIDs */ |
| 3988 | __le32 stateless_tid_alloc_failure; |
| 3989 | |
| 3990 | __le32 phy_underrun; |
| 3991 | |
| 3992 | /* MPDU is more than txop limit */ |
| 3993 | __le32 txop_ovf; |
| 3994 | |
| 3995 | /* Number of Sequences posted */ |
| 3996 | __le32 seq_posted; |
| 3997 | |
| 3998 | /* Number of Sequences failed queueing */ |
| 3999 | __le32 seq_failed_queueing; |
| 4000 | |
| 4001 | /* Number of Sequences completed */ |
| 4002 | __le32 seq_completed; |
| 4003 | |
| 4004 | /* Number of Sequences restarted */ |
| 4005 | __le32 seq_restarted; |
| 4006 | |
| 4007 | /* Number of MU Sequences posted */ |
| 4008 | __le32 mu_seq_posted; |
| 4009 | |
| 4010 | /* Num MPDUs flushed by SW, HWPAUSED,SW TXABORT(Reset,channel change) */ |
| 4011 | __le32 mpdus_sw_flush; |
| 4012 | |
| 4013 | /* Num MPDUs filtered by HW, all filter condition (TTL expired) */ |
| 4014 | __le32 mpdus_hw_filter; |
| 4015 | |
| 4016 | /* Num MPDUs truncated by PDG |
| 4017 | * (TXOP, TBTT, PPDU_duration based on rate, dyn_bw) |
| 4018 | */ |
| 4019 | __le32 mpdus_truncated; |
| 4020 | |
| 4021 | /* Num MPDUs that was tried but didn't receive ACK or BA */ |
| 4022 | __le32 mpdus_ack_failed; |
| 4023 | |
| 4024 | /* Num MPDUs that was dropped due to expiry. */ |
| 4025 | __le32 mpdus_expired; |
| 4026 | } __packed; |
| 4027 | |
Michal Kazior | b91251f | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4028 | struct wmi_pdev_stats_rx { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4029 | /* Cnts any change in ring routing mid-ppdu */ |
| 4030 | __le32 mid_ppdu_route_change; |
| 4031 | |
| 4032 | /* Total number of statuses processed */ |
| 4033 | __le32 status_rcvd; |
| 4034 | |
| 4035 | /* Extra frags on rings 0-3 */ |
| 4036 | __le32 r0_frags; |
| 4037 | __le32 r1_frags; |
| 4038 | __le32 r2_frags; |
| 4039 | __le32 r3_frags; |
| 4040 | |
| 4041 | /* MSDUs / MPDUs delivered to HTT */ |
| 4042 | __le32 htt_msdus; |
| 4043 | __le32 htt_mpdus; |
| 4044 | |
| 4045 | /* MSDUs / MPDUs delivered to local stack */ |
| 4046 | __le32 loc_msdus; |
| 4047 | __le32 loc_mpdus; |
| 4048 | |
| 4049 | /* AMSDUs that have more MSDUs than the status ring size */ |
| 4050 | __le32 oversize_amsdu; |
| 4051 | |
| 4052 | /* Number of PHY errors */ |
| 4053 | __le32 phy_errs; |
| 4054 | |
| 4055 | /* Number of PHY errors drops */ |
| 4056 | __le32 phy_err_drop; |
| 4057 | |
| 4058 | /* Number of mpdu errors - FCS, MIC, ENC etc. */ |
| 4059 | __le32 mpdu_errs; |
| 4060 | } __packed; |
| 4061 | |
Michal Kazior | b91251f | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4062 | struct wmi_pdev_stats_peer { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4063 | /* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */ |
| 4064 | __le32 dummy; |
| 4065 | } __packed; |
| 4066 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4067 | enum wmi_stats_id { |
Michal Kazior | eed5541 | 2015-02-15 16:50:41 +0200 | [diff] [blame] | 4068 | WMI_STAT_PEER = BIT(0), |
| 4069 | WMI_STAT_AP = BIT(1), |
| 4070 | WMI_STAT_PDEV = BIT(2), |
| 4071 | WMI_STAT_VDEV = BIT(3), |
| 4072 | WMI_STAT_BCNFLT = BIT(4), |
| 4073 | WMI_STAT_VDEV_RATE = BIT(5), |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4074 | }; |
| 4075 | |
Ben Greear | db9cdda | 2014-03-28 14:35:15 +0200 | [diff] [blame] | 4076 | struct wlan_inst_rssi_args { |
| 4077 | __le16 cfg_retry_count; |
| 4078 | __le16 retry_count; |
| 4079 | }; |
| 4080 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4081 | struct wmi_request_stats_cmd { |
| 4082 | __le32 stats_id; |
| 4083 | |
Ben Greear | db9cdda | 2014-03-28 14:35:15 +0200 | [diff] [blame] | 4084 | __le32 vdev_id; |
| 4085 | |
| 4086 | /* peer MAC address */ |
| 4087 | struct wmi_mac_addr peer_macaddr; |
| 4088 | |
| 4089 | /* Instantaneous RSSI arguments */ |
| 4090 | struct wlan_inst_rssi_args inst_rssi_args; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4091 | } __packed; |
| 4092 | |
| 4093 | /* Suspend option */ |
| 4094 | enum { |
| 4095 | /* suspend */ |
| 4096 | WMI_PDEV_SUSPEND, |
| 4097 | |
| 4098 | /* suspend and disable all interrupts */ |
| 4099 | WMI_PDEV_SUSPEND_AND_DISABLE_INTR, |
| 4100 | }; |
| 4101 | |
| 4102 | struct wmi_pdev_suspend_cmd { |
| 4103 | /* suspend option sent to target */ |
| 4104 | __le32 suspend_opt; |
| 4105 | } __packed; |
| 4106 | |
| 4107 | struct wmi_stats_event { |
Michal Kazior | eed5541 | 2015-02-15 16:50:41 +0200 | [diff] [blame] | 4108 | __le32 stats_id; /* WMI_STAT_ */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4109 | /* |
| 4110 | * number of pdev stats event structures |
| 4111 | * (wmi_pdev_stats) 0 or 1 |
| 4112 | */ |
| 4113 | __le32 num_pdev_stats; |
| 4114 | /* |
| 4115 | * number of vdev stats event structures |
| 4116 | * (wmi_vdev_stats) 0 or max vdevs |
| 4117 | */ |
| 4118 | __le32 num_vdev_stats; |
| 4119 | /* |
| 4120 | * number of peer stats event structures |
| 4121 | * (wmi_peer_stats) 0 or max peers |
| 4122 | */ |
| 4123 | __le32 num_peer_stats; |
| 4124 | __le32 num_bcnflt_stats; |
| 4125 | /* |
| 4126 | * followed by |
| 4127 | * num_pdev_stats * size of(struct wmi_pdev_stats) |
| 4128 | * num_vdev_stats * size of(struct wmi_vdev_stats) |
| 4129 | * num_peer_stats * size of(struct wmi_peer_stats) |
| 4130 | * |
| 4131 | * By having a zero sized array, the pointer to data area |
| 4132 | * becomes available without increasing the struct size |
| 4133 | */ |
| 4134 | u8 data[0]; |
| 4135 | } __packed; |
| 4136 | |
Michal Kazior | 20de222 | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4137 | struct wmi_10_2_stats_event { |
| 4138 | __le32 stats_id; /* %WMI_REQUEST_ */ |
| 4139 | __le32 num_pdev_stats; |
| 4140 | __le32 num_pdev_ext_stats; |
| 4141 | __le32 num_vdev_stats; |
| 4142 | __le32 num_peer_stats; |
| 4143 | __le32 num_bcnflt_stats; |
| 4144 | u8 data[0]; |
| 4145 | } __packed; |
| 4146 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4147 | /* |
| 4148 | * PDEV statistics |
| 4149 | * TODO: add all PDEV stats here |
| 4150 | */ |
Michal Kazior | b91251f | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4151 | struct wmi_pdev_stats_base { |
| 4152 | __le32 chan_nf; |
| 4153 | __le32 tx_frame_count; |
| 4154 | __le32 rx_frame_count; |
| 4155 | __le32 rx_clear_count; |
| 4156 | __le32 cycle_count; |
| 4157 | __le32 phy_err_count; |
| 4158 | __le32 chan_tx_pwr; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4159 | } __packed; |
| 4160 | |
Michal Kazior | b91251f | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4161 | struct wmi_pdev_stats { |
| 4162 | struct wmi_pdev_stats_base base; |
| 4163 | struct wmi_pdev_stats_tx tx; |
| 4164 | struct wmi_pdev_stats_rx rx; |
| 4165 | struct wmi_pdev_stats_peer peer; |
| 4166 | } __packed; |
| 4167 | |
| 4168 | struct wmi_pdev_stats_extra { |
Chun-Yeow Yeoh | 52e346d | 2014-03-28 14:35:16 +0200 | [diff] [blame] | 4169 | __le32 ack_rx_bad; |
| 4170 | __le32 rts_bad; |
| 4171 | __le32 rts_good; |
| 4172 | __le32 fcs_bad; |
| 4173 | __le32 no_beacons; |
| 4174 | __le32 mib_int_count; |
| 4175 | } __packed; |
| 4176 | |
Michal Kazior | b91251f | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4177 | struct wmi_10x_pdev_stats { |
| 4178 | struct wmi_pdev_stats_base base; |
| 4179 | struct wmi_pdev_stats_tx tx; |
| 4180 | struct wmi_pdev_stats_rx rx; |
| 4181 | struct wmi_pdev_stats_peer peer; |
| 4182 | struct wmi_pdev_stats_extra extra; |
| 4183 | } __packed; |
| 4184 | |
Michal Kazior | 20de222 | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4185 | struct wmi_pdev_stats_mem { |
| 4186 | __le32 dram_free; |
| 4187 | __le32 iram_free; |
| 4188 | } __packed; |
| 4189 | |
| 4190 | struct wmi_10_2_pdev_stats { |
| 4191 | struct wmi_pdev_stats_base base; |
| 4192 | struct wmi_pdev_stats_tx tx; |
| 4193 | __le32 mc_drop; |
| 4194 | struct wmi_pdev_stats_rx rx; |
| 4195 | __le32 pdev_rx_timeout; |
| 4196 | struct wmi_pdev_stats_mem mem; |
| 4197 | struct wmi_pdev_stats_peer peer; |
| 4198 | struct wmi_pdev_stats_extra extra; |
| 4199 | } __packed; |
| 4200 | |
Manikanta Pubbisetty | 98dd2b9 | 2015-10-28 21:38:33 +0200 | [diff] [blame] | 4201 | struct wmi_10_4_pdev_stats { |
| 4202 | struct wmi_pdev_stats_base base; |
| 4203 | struct wmi_10_4_pdev_stats_tx tx; |
| 4204 | struct wmi_pdev_stats_rx rx; |
| 4205 | __le32 rx_ovfl_errs; |
| 4206 | struct wmi_pdev_stats_mem mem; |
| 4207 | __le32 sram_free_size; |
| 4208 | struct wmi_pdev_stats_extra extra; |
| 4209 | } __packed; |
| 4210 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4211 | /* |
| 4212 | * VDEV statistics |
| 4213 | * TODO: add all VDEV stats here |
| 4214 | */ |
| 4215 | struct wmi_vdev_stats { |
| 4216 | __le32 vdev_id; |
| 4217 | } __packed; |
| 4218 | |
| 4219 | /* |
| 4220 | * peer statistics. |
| 4221 | * TODO: add more stats |
| 4222 | */ |
Michal Kazior | d15fb52 | 2014-09-25 12:33:47 +0200 | [diff] [blame] | 4223 | struct wmi_peer_stats { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4224 | struct wmi_mac_addr peer_macaddr; |
| 4225 | __le32 peer_rssi; |
| 4226 | __le32 peer_tx_rate; |
| 4227 | } __packed; |
| 4228 | |
Michal Kazior | d15fb52 | 2014-09-25 12:33:47 +0200 | [diff] [blame] | 4229 | struct wmi_10x_peer_stats { |
| 4230 | struct wmi_peer_stats old; |
Ben Greear | 23c3aae | 2014-03-28 14:35:15 +0200 | [diff] [blame] | 4231 | __le32 peer_rx_rate; |
| 4232 | } __packed; |
| 4233 | |
Michal Kazior | 20de222 | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4234 | struct wmi_10_2_peer_stats { |
| 4235 | struct wmi_peer_stats old; |
| 4236 | __le32 peer_rx_rate; |
| 4237 | __le32 current_per; |
| 4238 | __le32 retries; |
| 4239 | __le32 tx_rate_count; |
| 4240 | __le32 max_4ms_frame_len; |
| 4241 | __le32 total_sub_frames; |
| 4242 | __le32 tx_bytes; |
| 4243 | __le32 num_pkt_loss_overflow[4]; |
| 4244 | __le32 num_pkt_loss_excess_retry[4]; |
| 4245 | } __packed; |
| 4246 | |
| 4247 | struct wmi_10_2_4_peer_stats { |
| 4248 | struct wmi_10_2_peer_stats common; |
Mohammed Shafi Shajakhan | 774e656 | 2016-01-13 21:16:29 +0530 | [diff] [blame] | 4249 | __le32 peer_rssi_changed; |
Michal Kazior | 20de222 | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4250 | } __packed; |
| 4251 | |
Mohammed Shafi Shajakhan | de46c01 | 2016-01-13 21:16:28 +0530 | [diff] [blame] | 4252 | struct wmi_10_2_4_ext_peer_stats { |
| 4253 | struct wmi_10_2_peer_stats common; |
| 4254 | __le32 peer_rssi_changed; |
| 4255 | __le32 rx_duration; |
| 4256 | } __packed; |
| 4257 | |
Manikanta Pubbisetty | 98dd2b9 | 2015-10-28 21:38:33 +0200 | [diff] [blame] | 4258 | struct wmi_10_4_peer_stats { |
| 4259 | struct wmi_mac_addr peer_macaddr; |
| 4260 | __le32 peer_rssi; |
| 4261 | __le32 peer_rssi_seq_num; |
| 4262 | __le32 peer_tx_rate; |
| 4263 | __le32 peer_rx_rate; |
| 4264 | __le32 current_per; |
| 4265 | __le32 retries; |
| 4266 | __le32 tx_rate_count; |
| 4267 | __le32 max_4ms_frame_len; |
| 4268 | __le32 total_sub_frames; |
| 4269 | __le32 tx_bytes; |
| 4270 | __le32 num_pkt_loss_overflow[4]; |
| 4271 | __le32 num_pkt_loss_excess_retry[4]; |
| 4272 | __le32 peer_rssi_changed; |
| 4273 | } __packed; |
| 4274 | |
Michal Kazior | 20de222 | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 4275 | struct wmi_10_2_pdev_ext_stats { |
| 4276 | __le32 rx_rssi_comb; |
| 4277 | __le32 rx_rssi[4]; |
| 4278 | __le32 rx_mcs[10]; |
| 4279 | __le32 tx_mcs[10]; |
| 4280 | __le32 ack_rssi; |
| 4281 | } __packed; |
| 4282 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4283 | struct wmi_vdev_create_cmd { |
| 4284 | __le32 vdev_id; |
| 4285 | __le32 vdev_type; |
| 4286 | __le32 vdev_subtype; |
| 4287 | struct wmi_mac_addr vdev_macaddr; |
| 4288 | } __packed; |
| 4289 | |
| 4290 | enum wmi_vdev_type { |
| 4291 | WMI_VDEV_TYPE_AP = 1, |
| 4292 | WMI_VDEV_TYPE_STA = 2, |
| 4293 | WMI_VDEV_TYPE_IBSS = 3, |
| 4294 | WMI_VDEV_TYPE_MONITOR = 4, |
| 4295 | }; |
| 4296 | |
| 4297 | enum wmi_vdev_subtype { |
Peter Oh | 6e4de1a | 2016-01-28 13:54:10 -0800 | [diff] [blame^] | 4298 | WMI_VDEV_SUBTYPE_NONE, |
| 4299 | WMI_VDEV_SUBTYPE_P2P_DEVICE, |
| 4300 | WMI_VDEV_SUBTYPE_P2P_CLIENT, |
| 4301 | WMI_VDEV_SUBTYPE_P2P_GO, |
| 4302 | WMI_VDEV_SUBTYPE_PROXY_STA, |
| 4303 | WMI_VDEV_SUBTYPE_MESH_11S, |
| 4304 | WMI_VDEV_SUBTYPE_MESH_NON_11S, |
| 4305 | }; |
| 4306 | |
| 4307 | enum wmi_vdev_subtype_legacy { |
| 4308 | WMI_VDEV_SUBTYPE_LEGACY_NONE = 0, |
| 4309 | WMI_VDEV_SUBTYPE_LEGACY_P2P_DEV = 1, |
| 4310 | WMI_VDEV_SUBTYPE_LEGACY_P2P_CLI = 2, |
| 4311 | WMI_VDEV_SUBTYPE_LEGACY_P2P_GO = 3, |
| 4312 | WMI_VDEV_SUBTYPE_LEGACY_PROXY_STA = 4, |
| 4313 | }; |
| 4314 | |
| 4315 | enum wmi_vdev_subtype_10_2_4 { |
| 4316 | WMI_VDEV_SUBTYPE_10_2_4_NONE = 0, |
| 4317 | WMI_VDEV_SUBTYPE_10_2_4_P2P_DEV = 1, |
| 4318 | WMI_VDEV_SUBTYPE_10_2_4_P2P_CLI = 2, |
| 4319 | WMI_VDEV_SUBTYPE_10_2_4_P2P_GO = 3, |
| 4320 | WMI_VDEV_SUBTYPE_10_2_4_PROXY_STA = 4, |
| 4321 | WMI_VDEV_SUBTYPE_10_2_4_MESH_11S = 5, |
| 4322 | }; |
| 4323 | |
| 4324 | enum wmi_vdev_subtype_10_4 { |
| 4325 | WMI_VDEV_SUBTYPE_10_4_NONE = 0, |
| 4326 | WMI_VDEV_SUBTYPE_10_4_P2P_DEV = 1, |
| 4327 | WMI_VDEV_SUBTYPE_10_4_P2P_CLI = 2, |
| 4328 | WMI_VDEV_SUBTYPE_10_4_P2P_GO = 3, |
| 4329 | WMI_VDEV_SUBTYPE_10_4_PROXY_STA = 4, |
| 4330 | WMI_VDEV_SUBTYPE_10_4_MESH_NON_11S = 5, |
| 4331 | WMI_VDEV_SUBTYPE_10_4_MESH_11S = 6, |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4332 | }; |
| 4333 | |
| 4334 | /* values for vdev_subtype */ |
| 4335 | |
| 4336 | /* values for vdev_start_request flags */ |
| 4337 | /* |
| 4338 | * Indicates that AP VDEV uses hidden ssid. only valid for |
| 4339 | * AP/GO */ |
| 4340 | #define WMI_VDEV_START_HIDDEN_SSID (1<<0) |
| 4341 | /* |
| 4342 | * Indicates if robust management frame/management frame |
| 4343 | * protection is enabled. For GO/AP vdevs, it indicates that |
| 4344 | * it may support station/client associations with RMF enabled. |
| 4345 | * For STA/client vdevs, it indicates that sta will |
| 4346 | * associate with AP with RMF enabled. */ |
| 4347 | #define WMI_VDEV_START_PMF_ENABLED (1<<1) |
| 4348 | |
| 4349 | struct wmi_p2p_noa_descriptor { |
| 4350 | __le32 type_count; /* 255: continuous schedule, 0: reserved */ |
| 4351 | __le32 duration; /* Absent period duration in micro seconds */ |
| 4352 | __le32 interval; /* Absent period interval in micro seconds */ |
| 4353 | __le32 start_time; /* 32 bit tsf time when in starts */ |
| 4354 | } __packed; |
| 4355 | |
| 4356 | struct wmi_vdev_start_request_cmd { |
| 4357 | /* WMI channel */ |
| 4358 | struct wmi_channel chan; |
| 4359 | /* unique id identifying the VDEV, generated by the caller */ |
| 4360 | __le32 vdev_id; |
| 4361 | /* requestor id identifying the caller module */ |
| 4362 | __le32 requestor_id; |
| 4363 | /* beacon interval from received beacon */ |
| 4364 | __le32 beacon_interval; |
| 4365 | /* DTIM Period from the received beacon */ |
| 4366 | __le32 dtim_period; |
| 4367 | /* Flags */ |
| 4368 | __le32 flags; |
| 4369 | /* ssid field. Only valid for AP/GO/IBSS/BTAmp VDEV type. */ |
| 4370 | struct wmi_ssid ssid; |
| 4371 | /* beacon/probe reponse xmit rate. Applicable for SoftAP. */ |
| 4372 | __le32 bcn_tx_rate; |
| 4373 | /* beacon/probe reponse xmit power. Applicable for SoftAP. */ |
| 4374 | __le32 bcn_tx_power; |
| 4375 | /* number of p2p NOA descriptor(s) from scan entry */ |
| 4376 | __le32 num_noa_descriptors; |
| 4377 | /* |
| 4378 | * Disable H/W ack. This used by WMI_VDEV_RESTART_REQUEST_CMDID. |
| 4379 | * During CAC, Our HW shouldn't ack ditected frames |
| 4380 | */ |
| 4381 | __le32 disable_hw_ack; |
| 4382 | /* actual p2p NOA descriptor from scan entry */ |
| 4383 | struct wmi_p2p_noa_descriptor noa_descriptors[2]; |
| 4384 | } __packed; |
| 4385 | |
| 4386 | struct wmi_vdev_restart_request_cmd { |
| 4387 | struct wmi_vdev_start_request_cmd vdev_start_request_cmd; |
| 4388 | } __packed; |
| 4389 | |
| 4390 | struct wmi_vdev_start_request_arg { |
| 4391 | u32 vdev_id; |
| 4392 | struct wmi_channel_arg channel; |
| 4393 | u32 bcn_intval; |
| 4394 | u32 dtim_period; |
| 4395 | u8 *ssid; |
| 4396 | u32 ssid_len; |
| 4397 | u32 bcn_tx_rate; |
| 4398 | u32 bcn_tx_power; |
| 4399 | bool disable_hw_ack; |
| 4400 | bool hidden_ssid; |
| 4401 | bool pmf_enabled; |
| 4402 | }; |
| 4403 | |
| 4404 | struct wmi_vdev_delete_cmd { |
| 4405 | /* unique id identifying the VDEV, generated by the caller */ |
| 4406 | __le32 vdev_id; |
| 4407 | } __packed; |
| 4408 | |
| 4409 | struct wmi_vdev_up_cmd { |
| 4410 | __le32 vdev_id; |
| 4411 | __le32 vdev_assoc_id; |
| 4412 | struct wmi_mac_addr vdev_bssid; |
| 4413 | } __packed; |
| 4414 | |
| 4415 | struct wmi_vdev_stop_cmd { |
| 4416 | __le32 vdev_id; |
| 4417 | } __packed; |
| 4418 | |
| 4419 | struct wmi_vdev_down_cmd { |
| 4420 | __le32 vdev_id; |
| 4421 | } __packed; |
| 4422 | |
| 4423 | struct wmi_vdev_standby_response_cmd { |
| 4424 | /* unique id identifying the VDEV, generated by the caller */ |
| 4425 | __le32 vdev_id; |
| 4426 | } __packed; |
| 4427 | |
| 4428 | struct wmi_vdev_resume_response_cmd { |
| 4429 | /* unique id identifying the VDEV, generated by the caller */ |
| 4430 | __le32 vdev_id; |
| 4431 | } __packed; |
| 4432 | |
| 4433 | struct wmi_vdev_set_param_cmd { |
| 4434 | __le32 vdev_id; |
| 4435 | __le32 param_id; |
| 4436 | __le32 param_value; |
| 4437 | } __packed; |
| 4438 | |
| 4439 | #define WMI_MAX_KEY_INDEX 3 |
| 4440 | #define WMI_MAX_KEY_LEN 32 |
| 4441 | |
| 4442 | #define WMI_KEY_PAIRWISE 0x00 |
| 4443 | #define WMI_KEY_GROUP 0x01 |
| 4444 | #define WMI_KEY_TX_USAGE 0x02 /* default tx key - static wep */ |
| 4445 | |
| 4446 | struct wmi_key_seq_counter { |
| 4447 | __le32 key_seq_counter_l; |
| 4448 | __le32 key_seq_counter_h; |
| 4449 | } __packed; |
| 4450 | |
| 4451 | #define WMI_CIPHER_NONE 0x0 /* clear key */ |
| 4452 | #define WMI_CIPHER_WEP 0x1 |
| 4453 | #define WMI_CIPHER_TKIP 0x2 |
| 4454 | #define WMI_CIPHER_AES_OCB 0x3 |
| 4455 | #define WMI_CIPHER_AES_CCM 0x4 |
| 4456 | #define WMI_CIPHER_WAPI 0x5 |
| 4457 | #define WMI_CIPHER_CKIP 0x6 |
| 4458 | #define WMI_CIPHER_AES_CMAC 0x7 |
| 4459 | |
| 4460 | struct wmi_vdev_install_key_cmd { |
| 4461 | __le32 vdev_id; |
| 4462 | struct wmi_mac_addr peer_macaddr; |
| 4463 | __le32 key_idx; |
| 4464 | __le32 key_flags; |
| 4465 | __le32 key_cipher; /* %WMI_CIPHER_ */ |
| 4466 | struct wmi_key_seq_counter key_rsc_counter; |
| 4467 | struct wmi_key_seq_counter key_global_rsc_counter; |
| 4468 | struct wmi_key_seq_counter key_tsc_counter; |
| 4469 | u8 wpi_key_rsc_counter[16]; |
| 4470 | u8 wpi_key_tsc_counter[16]; |
| 4471 | __le32 key_len; |
| 4472 | __le32 key_txmic_len; |
| 4473 | __le32 key_rxmic_len; |
| 4474 | |
| 4475 | /* contains key followed by tx mic followed by rx mic */ |
| 4476 | u8 key_data[0]; |
| 4477 | } __packed; |
| 4478 | |
| 4479 | struct wmi_vdev_install_key_arg { |
| 4480 | u32 vdev_id; |
| 4481 | const u8 *macaddr; |
| 4482 | u32 key_idx; |
| 4483 | u32 key_flags; |
| 4484 | u32 key_cipher; |
| 4485 | u32 key_len; |
| 4486 | u32 key_txmic_len; |
| 4487 | u32 key_rxmic_len; |
| 4488 | const void *key_data; |
| 4489 | }; |
| 4490 | |
Janusz Dziedzic | 51ab1a0 | 2014-01-08 09:08:33 +0100 | [diff] [blame] | 4491 | /* |
| 4492 | * vdev fixed rate format: |
| 4493 | * - preamble - b7:b6 - see WMI_RATE_PREMABLE_ |
| 4494 | * - nss - b5:b4 - ss number (0 mean 1ss) |
| 4495 | * - rate_mcs - b3:b0 - as below |
| 4496 | * CCK: 0 - 11Mbps, 1 - 5,5Mbps, 2 - 2Mbps, 3 - 1Mbps, |
| 4497 | * 4 - 11Mbps (s), 5 - 5,5Mbps (s), 6 - 2Mbps (s) |
| 4498 | * OFDM: 0 - 48Mbps, 1 - 24Mbps, 2 - 12Mbps, 3 - 6Mbps, |
| 4499 | * 4 - 54Mbps, 5 - 36Mbps, 6 - 18Mbps, 7 - 9Mbps |
| 4500 | * HT/VHT: MCS index |
| 4501 | */ |
| 4502 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4503 | /* Preamble types to be used with VDEV fixed rate configuration */ |
| 4504 | enum wmi_rate_preamble { |
| 4505 | WMI_RATE_PREAMBLE_OFDM, |
| 4506 | WMI_RATE_PREAMBLE_CCK, |
| 4507 | WMI_RATE_PREAMBLE_HT, |
| 4508 | WMI_RATE_PREAMBLE_VHT, |
| 4509 | }; |
| 4510 | |
Maharaja Kennadyrajan | 2954266 | 2015-10-05 17:56:38 +0300 | [diff] [blame] | 4511 | #define ATH10K_HW_NSS(rate) (1 + (((rate) >> 4) & 0x3)) |
| 4512 | #define ATH10K_HW_PREAMBLE(rate) (((rate) >> 6) & 0x3) |
| 4513 | #define ATH10K_HW_RATECODE(rate, nss, preamble) \ |
| 4514 | (((preamble) << 6) | ((nss) << 4) | (rate)) |
| 4515 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4516 | /* Value to disable fixed rate setting */ |
| 4517 | #define WMI_FIXED_RATE_NONE (0xff) |
| 4518 | |
Bartosz Markowski | 6d1506e | 2013-09-26 17:47:15 +0200 | [diff] [blame] | 4519 | struct wmi_vdev_param_map { |
| 4520 | u32 rts_threshold; |
| 4521 | u32 fragmentation_threshold; |
| 4522 | u32 beacon_interval; |
| 4523 | u32 listen_interval; |
| 4524 | u32 multicast_rate; |
| 4525 | u32 mgmt_tx_rate; |
| 4526 | u32 slot_time; |
| 4527 | u32 preamble; |
| 4528 | u32 swba_time; |
| 4529 | u32 wmi_vdev_stats_update_period; |
| 4530 | u32 wmi_vdev_pwrsave_ageout_time; |
| 4531 | u32 wmi_vdev_host_swba_interval; |
| 4532 | u32 dtim_period; |
| 4533 | u32 wmi_vdev_oc_scheduler_air_time_limit; |
| 4534 | u32 wds; |
| 4535 | u32 atim_window; |
| 4536 | u32 bmiss_count_max; |
| 4537 | u32 bmiss_first_bcnt; |
| 4538 | u32 bmiss_final_bcnt; |
| 4539 | u32 feature_wmm; |
| 4540 | u32 chwidth; |
| 4541 | u32 chextoffset; |
| 4542 | u32 disable_htprotection; |
| 4543 | u32 sta_quickkickout; |
| 4544 | u32 mgmt_rate; |
| 4545 | u32 protection_mode; |
| 4546 | u32 fixed_rate; |
| 4547 | u32 sgi; |
| 4548 | u32 ldpc; |
| 4549 | u32 tx_stbc; |
| 4550 | u32 rx_stbc; |
| 4551 | u32 intra_bss_fwd; |
| 4552 | u32 def_keyid; |
| 4553 | u32 nss; |
| 4554 | u32 bcast_data_rate; |
| 4555 | u32 mcast_data_rate; |
| 4556 | u32 mcast_indicate; |
| 4557 | u32 dhcp_indicate; |
| 4558 | u32 unknown_dest_indicate; |
| 4559 | u32 ap_keepalive_min_idle_inactive_time_secs; |
| 4560 | u32 ap_keepalive_max_idle_inactive_time_secs; |
| 4561 | u32 ap_keepalive_max_unresponsive_time_secs; |
| 4562 | u32 ap_enable_nawds; |
| 4563 | u32 mcast2ucast_set; |
| 4564 | u32 enable_rtscts; |
| 4565 | u32 txbf; |
| 4566 | u32 packet_powersave; |
| 4567 | u32 drop_unencry; |
| 4568 | u32 tx_encap_type; |
| 4569 | u32 ap_detect_out_of_sync_sleeping_sta_time_secs; |
Raja Mani | 93841a1 | 2015-06-22 20:10:13 +0530 | [diff] [blame] | 4570 | u32 rc_num_retries; |
| 4571 | u32 cabq_maxdur; |
| 4572 | u32 mfptest_set; |
| 4573 | u32 rts_fixed_rate; |
| 4574 | u32 vht_sgimask; |
| 4575 | u32 vht80_ratemask; |
| 4576 | u32 early_rx_adjust_enable; |
| 4577 | u32 early_rx_tgt_bmiss_num; |
| 4578 | u32 early_rx_bmiss_sample_cycle; |
| 4579 | u32 early_rx_slop_step; |
| 4580 | u32 early_rx_init_slop; |
| 4581 | u32 early_rx_adjust_pause; |
| 4582 | u32 proxy_sta; |
| 4583 | u32 meru_vc; |
| 4584 | u32 rx_decap_type; |
| 4585 | u32 bw_nss_ratemask; |
Bartosz Markowski | 6d1506e | 2013-09-26 17:47:15 +0200 | [diff] [blame] | 4586 | }; |
| 4587 | |
| 4588 | #define WMI_VDEV_PARAM_UNSUPPORTED 0 |
| 4589 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4590 | /* the definition of different VDEV parameters */ |
| 4591 | enum wmi_vdev_param { |
| 4592 | /* RTS Threshold */ |
| 4593 | WMI_VDEV_PARAM_RTS_THRESHOLD = 0x1, |
| 4594 | /* Fragmentation threshold */ |
| 4595 | WMI_VDEV_PARAM_FRAGMENTATION_THRESHOLD, |
| 4596 | /* beacon interval in TUs */ |
| 4597 | WMI_VDEV_PARAM_BEACON_INTERVAL, |
| 4598 | /* Listen interval in TUs */ |
| 4599 | WMI_VDEV_PARAM_LISTEN_INTERVAL, |
| 4600 | /* muticast rate in Mbps */ |
| 4601 | WMI_VDEV_PARAM_MULTICAST_RATE, |
| 4602 | /* management frame rate in Mbps */ |
| 4603 | WMI_VDEV_PARAM_MGMT_TX_RATE, |
| 4604 | /* slot time (long vs short) */ |
| 4605 | WMI_VDEV_PARAM_SLOT_TIME, |
| 4606 | /* preamble (long vs short) */ |
| 4607 | WMI_VDEV_PARAM_PREAMBLE, |
| 4608 | /* SWBA time (time before tbtt in msec) */ |
| 4609 | WMI_VDEV_PARAM_SWBA_TIME, |
| 4610 | /* time period for updating VDEV stats */ |
| 4611 | WMI_VDEV_STATS_UPDATE_PERIOD, |
| 4612 | /* age out time in msec for frames queued for station in power save */ |
| 4613 | WMI_VDEV_PWRSAVE_AGEOUT_TIME, |
| 4614 | /* |
| 4615 | * Host SWBA interval (time in msec before tbtt for SWBA event |
| 4616 | * generation). |
| 4617 | */ |
| 4618 | WMI_VDEV_HOST_SWBA_INTERVAL, |
| 4619 | /* DTIM period (specified in units of num beacon intervals) */ |
| 4620 | WMI_VDEV_PARAM_DTIM_PERIOD, |
| 4621 | /* |
| 4622 | * scheduler air time limit for this VDEV. used by off chan |
| 4623 | * scheduler. |
| 4624 | */ |
| 4625 | WMI_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT, |
| 4626 | /* enable/dsiable WDS for this VDEV */ |
| 4627 | WMI_VDEV_PARAM_WDS, |
| 4628 | /* ATIM Window */ |
| 4629 | WMI_VDEV_PARAM_ATIM_WINDOW, |
| 4630 | /* BMISS max */ |
| 4631 | WMI_VDEV_PARAM_BMISS_COUNT_MAX, |
| 4632 | /* BMISS first time */ |
| 4633 | WMI_VDEV_PARAM_BMISS_FIRST_BCNT, |
| 4634 | /* BMISS final time */ |
| 4635 | WMI_VDEV_PARAM_BMISS_FINAL_BCNT, |
| 4636 | /* WMM enables/disabled */ |
| 4637 | WMI_VDEV_PARAM_FEATURE_WMM, |
| 4638 | /* Channel width */ |
| 4639 | WMI_VDEV_PARAM_CHWIDTH, |
| 4640 | /* Channel Offset */ |
| 4641 | WMI_VDEV_PARAM_CHEXTOFFSET, |
| 4642 | /* Disable HT Protection */ |
| 4643 | WMI_VDEV_PARAM_DISABLE_HTPROTECTION, |
| 4644 | /* Quick STA Kickout */ |
| 4645 | WMI_VDEV_PARAM_STA_QUICKKICKOUT, |
| 4646 | /* Rate to be used with Management frames */ |
| 4647 | WMI_VDEV_PARAM_MGMT_RATE, |
| 4648 | /* Protection Mode */ |
| 4649 | WMI_VDEV_PARAM_PROTECTION_MODE, |
| 4650 | /* Fixed rate setting */ |
| 4651 | WMI_VDEV_PARAM_FIXED_RATE, |
| 4652 | /* Short GI Enable/Disable */ |
| 4653 | WMI_VDEV_PARAM_SGI, |
| 4654 | /* Enable LDPC */ |
| 4655 | WMI_VDEV_PARAM_LDPC, |
| 4656 | /* Enable Tx STBC */ |
| 4657 | WMI_VDEV_PARAM_TX_STBC, |
| 4658 | /* Enable Rx STBC */ |
| 4659 | WMI_VDEV_PARAM_RX_STBC, |
| 4660 | /* Intra BSS forwarding */ |
| 4661 | WMI_VDEV_PARAM_INTRA_BSS_FWD, |
| 4662 | /* Setting Default xmit key for Vdev */ |
| 4663 | WMI_VDEV_PARAM_DEF_KEYID, |
| 4664 | /* NSS width */ |
| 4665 | WMI_VDEV_PARAM_NSS, |
| 4666 | /* Set the custom rate for the broadcast data frames */ |
| 4667 | WMI_VDEV_PARAM_BCAST_DATA_RATE, |
| 4668 | /* Set the custom rate (rate-code) for multicast data frames */ |
| 4669 | WMI_VDEV_PARAM_MCAST_DATA_RATE, |
| 4670 | /* Tx multicast packet indicate Enable/Disable */ |
| 4671 | WMI_VDEV_PARAM_MCAST_INDICATE, |
| 4672 | /* Tx DHCP packet indicate Enable/Disable */ |
| 4673 | WMI_VDEV_PARAM_DHCP_INDICATE, |
| 4674 | /* Enable host inspection of Tx unicast packet to unknown destination */ |
| 4675 | WMI_VDEV_PARAM_UNKNOWN_DEST_INDICATE, |
| 4676 | |
| 4677 | /* The minimum amount of time AP begins to consider STA inactive */ |
| 4678 | WMI_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS, |
| 4679 | |
| 4680 | /* |
| 4681 | * An associated STA is considered inactive when there is no recent |
| 4682 | * TX/RX activity and no downlink frames are buffered for it. Once a |
| 4683 | * STA exceeds the maximum idle inactive time, the AP will send an |
| 4684 | * 802.11 data-null as a keep alive to verify the STA is still |
| 4685 | * associated. If the STA does ACK the data-null, or if the data-null |
| 4686 | * is buffered and the STA does not retrieve it, the STA will be |
| 4687 | * considered unresponsive |
| 4688 | * (see WMI_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS). |
| 4689 | */ |
| 4690 | WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS, |
| 4691 | |
| 4692 | /* |
| 4693 | * An associated STA is considered unresponsive if there is no recent |
| 4694 | * TX/RX activity and downlink frames are buffered for it. Once a STA |
| 4695 | * exceeds the maximum unresponsive time, the AP will send a |
| 4696 | * WMI_STA_KICKOUT event to the host so the STA can be deleted. */ |
| 4697 | WMI_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS, |
| 4698 | |
| 4699 | /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */ |
| 4700 | WMI_VDEV_PARAM_AP_ENABLE_NAWDS, |
| 4701 | /* Enable/Disable RTS-CTS */ |
| 4702 | WMI_VDEV_PARAM_ENABLE_RTSCTS, |
| 4703 | /* Enable TXBFee/er */ |
| 4704 | WMI_VDEV_PARAM_TXBF, |
| 4705 | |
| 4706 | /* Set packet power save */ |
| 4707 | WMI_VDEV_PARAM_PACKET_POWERSAVE, |
| 4708 | |
| 4709 | /* |
| 4710 | * Drops un-encrypted packets if eceived in an encrypted connection |
| 4711 | * otherwise forwards to host. |
| 4712 | */ |
| 4713 | WMI_VDEV_PARAM_DROP_UNENCRY, |
| 4714 | |
| 4715 | /* |
| 4716 | * Set the encapsulation type for frames. |
| 4717 | */ |
| 4718 | WMI_VDEV_PARAM_TX_ENCAP_TYPE, |
| 4719 | }; |
| 4720 | |
Bartosz Markowski | 6d1506e | 2013-09-26 17:47:15 +0200 | [diff] [blame] | 4721 | /* the definition of different VDEV parameters */ |
| 4722 | enum wmi_10x_vdev_param { |
| 4723 | /* RTS Threshold */ |
| 4724 | WMI_10X_VDEV_PARAM_RTS_THRESHOLD = 0x1, |
| 4725 | /* Fragmentation threshold */ |
| 4726 | WMI_10X_VDEV_PARAM_FRAGMENTATION_THRESHOLD, |
| 4727 | /* beacon interval in TUs */ |
| 4728 | WMI_10X_VDEV_PARAM_BEACON_INTERVAL, |
| 4729 | /* Listen interval in TUs */ |
| 4730 | WMI_10X_VDEV_PARAM_LISTEN_INTERVAL, |
| 4731 | /* muticast rate in Mbps */ |
| 4732 | WMI_10X_VDEV_PARAM_MULTICAST_RATE, |
| 4733 | /* management frame rate in Mbps */ |
| 4734 | WMI_10X_VDEV_PARAM_MGMT_TX_RATE, |
| 4735 | /* slot time (long vs short) */ |
| 4736 | WMI_10X_VDEV_PARAM_SLOT_TIME, |
| 4737 | /* preamble (long vs short) */ |
| 4738 | WMI_10X_VDEV_PARAM_PREAMBLE, |
| 4739 | /* SWBA time (time before tbtt in msec) */ |
| 4740 | WMI_10X_VDEV_PARAM_SWBA_TIME, |
| 4741 | /* time period for updating VDEV stats */ |
| 4742 | WMI_10X_VDEV_STATS_UPDATE_PERIOD, |
| 4743 | /* age out time in msec for frames queued for station in power save */ |
| 4744 | WMI_10X_VDEV_PWRSAVE_AGEOUT_TIME, |
| 4745 | /* |
| 4746 | * Host SWBA interval (time in msec before tbtt for SWBA event |
| 4747 | * generation). |
| 4748 | */ |
| 4749 | WMI_10X_VDEV_HOST_SWBA_INTERVAL, |
| 4750 | /* DTIM period (specified in units of num beacon intervals) */ |
| 4751 | WMI_10X_VDEV_PARAM_DTIM_PERIOD, |
| 4752 | /* |
| 4753 | * scheduler air time limit for this VDEV. used by off chan |
| 4754 | * scheduler. |
| 4755 | */ |
| 4756 | WMI_10X_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT, |
| 4757 | /* enable/dsiable WDS for this VDEV */ |
| 4758 | WMI_10X_VDEV_PARAM_WDS, |
| 4759 | /* ATIM Window */ |
| 4760 | WMI_10X_VDEV_PARAM_ATIM_WINDOW, |
| 4761 | /* BMISS max */ |
| 4762 | WMI_10X_VDEV_PARAM_BMISS_COUNT_MAX, |
| 4763 | /* WMM enables/disabled */ |
| 4764 | WMI_10X_VDEV_PARAM_FEATURE_WMM, |
| 4765 | /* Channel width */ |
| 4766 | WMI_10X_VDEV_PARAM_CHWIDTH, |
| 4767 | /* Channel Offset */ |
| 4768 | WMI_10X_VDEV_PARAM_CHEXTOFFSET, |
| 4769 | /* Disable HT Protection */ |
| 4770 | WMI_10X_VDEV_PARAM_DISABLE_HTPROTECTION, |
| 4771 | /* Quick STA Kickout */ |
| 4772 | WMI_10X_VDEV_PARAM_STA_QUICKKICKOUT, |
| 4773 | /* Rate to be used with Management frames */ |
| 4774 | WMI_10X_VDEV_PARAM_MGMT_RATE, |
| 4775 | /* Protection Mode */ |
| 4776 | WMI_10X_VDEV_PARAM_PROTECTION_MODE, |
| 4777 | /* Fixed rate setting */ |
| 4778 | WMI_10X_VDEV_PARAM_FIXED_RATE, |
| 4779 | /* Short GI Enable/Disable */ |
| 4780 | WMI_10X_VDEV_PARAM_SGI, |
| 4781 | /* Enable LDPC */ |
| 4782 | WMI_10X_VDEV_PARAM_LDPC, |
| 4783 | /* Enable Tx STBC */ |
| 4784 | WMI_10X_VDEV_PARAM_TX_STBC, |
| 4785 | /* Enable Rx STBC */ |
| 4786 | WMI_10X_VDEV_PARAM_RX_STBC, |
| 4787 | /* Intra BSS forwarding */ |
| 4788 | WMI_10X_VDEV_PARAM_INTRA_BSS_FWD, |
| 4789 | /* Setting Default xmit key for Vdev */ |
| 4790 | WMI_10X_VDEV_PARAM_DEF_KEYID, |
| 4791 | /* NSS width */ |
| 4792 | WMI_10X_VDEV_PARAM_NSS, |
| 4793 | /* Set the custom rate for the broadcast data frames */ |
| 4794 | WMI_10X_VDEV_PARAM_BCAST_DATA_RATE, |
| 4795 | /* Set the custom rate (rate-code) for multicast data frames */ |
| 4796 | WMI_10X_VDEV_PARAM_MCAST_DATA_RATE, |
| 4797 | /* Tx multicast packet indicate Enable/Disable */ |
| 4798 | WMI_10X_VDEV_PARAM_MCAST_INDICATE, |
| 4799 | /* Tx DHCP packet indicate Enable/Disable */ |
| 4800 | WMI_10X_VDEV_PARAM_DHCP_INDICATE, |
| 4801 | /* Enable host inspection of Tx unicast packet to unknown destination */ |
| 4802 | WMI_10X_VDEV_PARAM_UNKNOWN_DEST_INDICATE, |
| 4803 | |
| 4804 | /* The minimum amount of time AP begins to consider STA inactive */ |
| 4805 | WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS, |
| 4806 | |
| 4807 | /* |
| 4808 | * An associated STA is considered inactive when there is no recent |
| 4809 | * TX/RX activity and no downlink frames are buffered for it. Once a |
| 4810 | * STA exceeds the maximum idle inactive time, the AP will send an |
| 4811 | * 802.11 data-null as a keep alive to verify the STA is still |
| 4812 | * associated. If the STA does ACK the data-null, or if the data-null |
| 4813 | * is buffered and the STA does not retrieve it, the STA will be |
| 4814 | * considered unresponsive |
| 4815 | * (see WMI_10X_VDEV_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS). |
| 4816 | */ |
| 4817 | WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS, |
| 4818 | |
| 4819 | /* |
| 4820 | * An associated STA is considered unresponsive if there is no recent |
| 4821 | * TX/RX activity and downlink frames are buffered for it. Once a STA |
| 4822 | * exceeds the maximum unresponsive time, the AP will send a |
| 4823 | * WMI_10X_STA_KICKOUT event to the host so the STA can be deleted. */ |
| 4824 | WMI_10X_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS, |
| 4825 | |
| 4826 | /* Enable NAWDS : MCAST INSPECT Enable, NAWDS Flag set */ |
| 4827 | WMI_10X_VDEV_PARAM_AP_ENABLE_NAWDS, |
| 4828 | |
| 4829 | WMI_10X_VDEV_PARAM_MCAST2UCAST_SET, |
| 4830 | /* Enable/Disable RTS-CTS */ |
| 4831 | WMI_10X_VDEV_PARAM_ENABLE_RTSCTS, |
| 4832 | |
| 4833 | WMI_10X_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS, |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 4834 | |
| 4835 | /* following are available as of firmware 10.2 */ |
| 4836 | WMI_10X_VDEV_PARAM_TX_ENCAP_TYPE, |
| 4837 | WMI_10X_VDEV_PARAM_CABQ_MAXDUR, |
| 4838 | WMI_10X_VDEV_PARAM_MFPTEST_SET, |
| 4839 | WMI_10X_VDEV_PARAM_RTS_FIXED_RATE, |
| 4840 | WMI_10X_VDEV_PARAM_VHT_SGIMASK, |
| 4841 | WMI_10X_VDEV_PARAM_VHT80_RATEMASK, |
Bartosz Markowski | 6d1506e | 2013-09-26 17:47:15 +0200 | [diff] [blame] | 4842 | }; |
| 4843 | |
Raja Mani | 93841a1 | 2015-06-22 20:10:13 +0530 | [diff] [blame] | 4844 | enum wmi_10_4_vdev_param { |
| 4845 | WMI_10_4_VDEV_PARAM_RTS_THRESHOLD = 0x1, |
| 4846 | WMI_10_4_VDEV_PARAM_FRAGMENTATION_THRESHOLD, |
| 4847 | WMI_10_4_VDEV_PARAM_BEACON_INTERVAL, |
| 4848 | WMI_10_4_VDEV_PARAM_LISTEN_INTERVAL, |
| 4849 | WMI_10_4_VDEV_PARAM_MULTICAST_RATE, |
| 4850 | WMI_10_4_VDEV_PARAM_MGMT_TX_RATE, |
| 4851 | WMI_10_4_VDEV_PARAM_SLOT_TIME, |
| 4852 | WMI_10_4_VDEV_PARAM_PREAMBLE, |
| 4853 | WMI_10_4_VDEV_PARAM_SWBA_TIME, |
| 4854 | WMI_10_4_VDEV_STATS_UPDATE_PERIOD, |
| 4855 | WMI_10_4_VDEV_PWRSAVE_AGEOUT_TIME, |
| 4856 | WMI_10_4_VDEV_HOST_SWBA_INTERVAL, |
| 4857 | WMI_10_4_VDEV_PARAM_DTIM_PERIOD, |
| 4858 | WMI_10_4_VDEV_OC_SCHEDULER_AIR_TIME_LIMIT, |
| 4859 | WMI_10_4_VDEV_PARAM_WDS, |
| 4860 | WMI_10_4_VDEV_PARAM_ATIM_WINDOW, |
| 4861 | WMI_10_4_VDEV_PARAM_BMISS_COUNT_MAX, |
| 4862 | WMI_10_4_VDEV_PARAM_BMISS_FIRST_BCNT, |
| 4863 | WMI_10_4_VDEV_PARAM_BMISS_FINAL_BCNT, |
| 4864 | WMI_10_4_VDEV_PARAM_FEATURE_WMM, |
| 4865 | WMI_10_4_VDEV_PARAM_CHWIDTH, |
| 4866 | WMI_10_4_VDEV_PARAM_CHEXTOFFSET, |
| 4867 | WMI_10_4_VDEV_PARAM_DISABLE_HTPROTECTION, |
| 4868 | WMI_10_4_VDEV_PARAM_STA_QUICKKICKOUT, |
| 4869 | WMI_10_4_VDEV_PARAM_MGMT_RATE, |
| 4870 | WMI_10_4_VDEV_PARAM_PROTECTION_MODE, |
| 4871 | WMI_10_4_VDEV_PARAM_FIXED_RATE, |
| 4872 | WMI_10_4_VDEV_PARAM_SGI, |
| 4873 | WMI_10_4_VDEV_PARAM_LDPC, |
| 4874 | WMI_10_4_VDEV_PARAM_TX_STBC, |
| 4875 | WMI_10_4_VDEV_PARAM_RX_STBC, |
| 4876 | WMI_10_4_VDEV_PARAM_INTRA_BSS_FWD, |
| 4877 | WMI_10_4_VDEV_PARAM_DEF_KEYID, |
| 4878 | WMI_10_4_VDEV_PARAM_NSS, |
| 4879 | WMI_10_4_VDEV_PARAM_BCAST_DATA_RATE, |
| 4880 | WMI_10_4_VDEV_PARAM_MCAST_DATA_RATE, |
| 4881 | WMI_10_4_VDEV_PARAM_MCAST_INDICATE, |
| 4882 | WMI_10_4_VDEV_PARAM_DHCP_INDICATE, |
| 4883 | WMI_10_4_VDEV_PARAM_UNKNOWN_DEST_INDICATE, |
| 4884 | WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MIN_IDLE_INACTIVE_TIME_SECS, |
| 4885 | WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_IDLE_INACTIVE_TIME_SECS, |
| 4886 | WMI_10_4_VDEV_PARAM_AP_KEEPALIVE_MAX_UNRESPONSIVE_TIME_SECS, |
| 4887 | WMI_10_4_VDEV_PARAM_AP_ENABLE_NAWDS, |
| 4888 | WMI_10_4_VDEV_PARAM_MCAST2UCAST_SET, |
| 4889 | WMI_10_4_VDEV_PARAM_ENABLE_RTSCTS, |
| 4890 | WMI_10_4_VDEV_PARAM_RC_NUM_RETRIES, |
| 4891 | WMI_10_4_VDEV_PARAM_TXBF, |
| 4892 | WMI_10_4_VDEV_PARAM_PACKET_POWERSAVE, |
| 4893 | WMI_10_4_VDEV_PARAM_DROP_UNENCRY, |
| 4894 | WMI_10_4_VDEV_PARAM_TX_ENCAP_TYPE, |
| 4895 | WMI_10_4_VDEV_PARAM_AP_DETECT_OUT_OF_SYNC_SLEEPING_STA_TIME_SECS, |
| 4896 | WMI_10_4_VDEV_PARAM_CABQ_MAXDUR, |
| 4897 | WMI_10_4_VDEV_PARAM_MFPTEST_SET, |
| 4898 | WMI_10_4_VDEV_PARAM_RTS_FIXED_RATE, |
| 4899 | WMI_10_4_VDEV_PARAM_VHT_SGIMASK, |
| 4900 | WMI_10_4_VDEV_PARAM_VHT80_RATEMASK, |
| 4901 | WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_ENABLE, |
| 4902 | WMI_10_4_VDEV_PARAM_EARLY_RX_TGT_BMISS_NUM, |
| 4903 | WMI_10_4_VDEV_PARAM_EARLY_RX_BMISS_SAMPLE_CYCLE, |
| 4904 | WMI_10_4_VDEV_PARAM_EARLY_RX_SLOP_STEP, |
| 4905 | WMI_10_4_VDEV_PARAM_EARLY_RX_INIT_SLOP, |
| 4906 | WMI_10_4_VDEV_PARAM_EARLY_RX_ADJUST_PAUSE, |
| 4907 | WMI_10_4_VDEV_PARAM_PROXY_STA, |
| 4908 | WMI_10_4_VDEV_PARAM_MERU_VC, |
| 4909 | WMI_10_4_VDEV_PARAM_RX_DECAP_TYPE, |
| 4910 | WMI_10_4_VDEV_PARAM_BW_NSS_RATEMASK, |
| 4911 | }; |
| 4912 | |
Michal Kazior | 139e170 | 2015-02-15 16:50:42 +0200 | [diff] [blame] | 4913 | #define WMI_VDEV_PARAM_TXBF_SU_TX_BFEE BIT(0) |
| 4914 | #define WMI_VDEV_PARAM_TXBF_MU_TX_BFEE BIT(1) |
| 4915 | #define WMI_VDEV_PARAM_TXBF_SU_TX_BFER BIT(2) |
| 4916 | #define WMI_VDEV_PARAM_TXBF_MU_TX_BFER BIT(3) |
| 4917 | |
Vivek Natarajan | a48e2cc | 2015-08-04 10:45:12 +0530 | [diff] [blame] | 4918 | #define WMI_TXBF_STS_CAP_OFFSET_LSB 4 |
| 4919 | #define WMI_TXBF_STS_CAP_OFFSET_MASK 0xf0 |
| 4920 | #define WMI_BF_SOUND_DIM_OFFSET_LSB 8 |
| 4921 | #define WMI_BF_SOUND_DIM_OFFSET_MASK 0xf00 |
| 4922 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 4923 | /* slot time long */ |
| 4924 | #define WMI_VDEV_SLOT_TIME_LONG 0x1 |
| 4925 | /* slot time short */ |
| 4926 | #define WMI_VDEV_SLOT_TIME_SHORT 0x2 |
| 4927 | /* preablbe long */ |
| 4928 | #define WMI_VDEV_PREAMBLE_LONG 0x1 |
| 4929 | /* preablbe short */ |
| 4930 | #define WMI_VDEV_PREAMBLE_SHORT 0x2 |
| 4931 | |
| 4932 | enum wmi_start_event_param { |
| 4933 | WMI_VDEV_RESP_START_EVENT = 0, |
| 4934 | WMI_VDEV_RESP_RESTART_EVENT, |
| 4935 | }; |
| 4936 | |
| 4937 | struct wmi_vdev_start_response_event { |
| 4938 | __le32 vdev_id; |
| 4939 | __le32 req_id; |
| 4940 | __le32 resp_type; /* %WMI_VDEV_RESP_ */ |
| 4941 | __le32 status; |
| 4942 | } __packed; |
| 4943 | |
| 4944 | struct wmi_vdev_standby_req_event { |
| 4945 | /* unique id identifying the VDEV, generated by the caller */ |
| 4946 | __le32 vdev_id; |
| 4947 | } __packed; |
| 4948 | |
| 4949 | struct wmi_vdev_resume_req_event { |
| 4950 | /* unique id identifying the VDEV, generated by the caller */ |
| 4951 | __le32 vdev_id; |
| 4952 | } __packed; |
| 4953 | |
| 4954 | struct wmi_vdev_stopped_event { |
| 4955 | /* unique id identifying the VDEV, generated by the caller */ |
| 4956 | __le32 vdev_id; |
| 4957 | } __packed; |
| 4958 | |
| 4959 | /* |
| 4960 | * common structure used for simple events |
| 4961 | * (stopped, resume_req, standby response) |
| 4962 | */ |
| 4963 | struct wmi_vdev_simple_event { |
| 4964 | /* unique id identifying the VDEV, generated by the caller */ |
| 4965 | __le32 vdev_id; |
| 4966 | } __packed; |
| 4967 | |
| 4968 | /* VDEV start response status codes */ |
| 4969 | /* VDEV succesfully started */ |
| 4970 | #define WMI_INIFIED_VDEV_START_RESPONSE_STATUS_SUCCESS 0x0 |
| 4971 | |
| 4972 | /* requested VDEV not found */ |
| 4973 | #define WMI_INIFIED_VDEV_START_RESPONSE_INVALID_VDEVID 0x1 |
| 4974 | |
| 4975 | /* unsupported VDEV combination */ |
| 4976 | #define WMI_INIFIED_VDEV_START_RESPONSE_NOT_SUPPORTED 0x2 |
| 4977 | |
Simon Wunderlich | 855aed1 | 2014-08-02 09:12:54 +0300 | [diff] [blame] | 4978 | /* TODO: please add more comments if you have in-depth information */ |
| 4979 | struct wmi_vdev_spectral_conf_cmd { |
| 4980 | __le32 vdev_id; |
| 4981 | |
| 4982 | /* number of fft samples to send (0 for infinite) */ |
| 4983 | __le32 scan_count; |
| 4984 | __le32 scan_period; |
| 4985 | __le32 scan_priority; |
| 4986 | |
| 4987 | /* number of bins in the FFT: 2^(fft_size - bin_scale) */ |
| 4988 | __le32 scan_fft_size; |
| 4989 | __le32 scan_gc_ena; |
| 4990 | __le32 scan_restart_ena; |
| 4991 | __le32 scan_noise_floor_ref; |
| 4992 | __le32 scan_init_delay; |
| 4993 | __le32 scan_nb_tone_thr; |
| 4994 | __le32 scan_str_bin_thr; |
| 4995 | __le32 scan_wb_rpt_mode; |
| 4996 | __le32 scan_rssi_rpt_mode; |
| 4997 | __le32 scan_rssi_thr; |
| 4998 | __le32 scan_pwr_format; |
| 4999 | |
| 5000 | /* rpt_mode: Format of FFT report to software for spectral scan |
| 5001 | * triggered FFTs: |
| 5002 | * 0: No FFT report (only spectral scan summary report) |
| 5003 | * 1: 2-dword summary of metrics for each completed FFT + spectral |
| 5004 | * scan summary report |
| 5005 | * 2: 2-dword summary of metrics for each completed FFT + |
| 5006 | * 1x- oversampled bins(in-band) per FFT + spectral scan summary |
| 5007 | * report |
| 5008 | * 3: 2-dword summary of metrics for each completed FFT + |
| 5009 | * 2x- oversampled bins (all) per FFT + spectral scan summary |
| 5010 | */ |
| 5011 | __le32 scan_rpt_mode; |
| 5012 | __le32 scan_bin_scale; |
| 5013 | __le32 scan_dbm_adj; |
| 5014 | __le32 scan_chn_mask; |
| 5015 | } __packed; |
| 5016 | |
| 5017 | struct wmi_vdev_spectral_conf_arg { |
| 5018 | u32 vdev_id; |
| 5019 | u32 scan_count; |
| 5020 | u32 scan_period; |
| 5021 | u32 scan_priority; |
| 5022 | u32 scan_fft_size; |
| 5023 | u32 scan_gc_ena; |
| 5024 | u32 scan_restart_ena; |
| 5025 | u32 scan_noise_floor_ref; |
| 5026 | u32 scan_init_delay; |
| 5027 | u32 scan_nb_tone_thr; |
| 5028 | u32 scan_str_bin_thr; |
| 5029 | u32 scan_wb_rpt_mode; |
| 5030 | u32 scan_rssi_rpt_mode; |
| 5031 | u32 scan_rssi_thr; |
| 5032 | u32 scan_pwr_format; |
| 5033 | u32 scan_rpt_mode; |
| 5034 | u32 scan_bin_scale; |
| 5035 | u32 scan_dbm_adj; |
| 5036 | u32 scan_chn_mask; |
| 5037 | }; |
| 5038 | |
| 5039 | #define WMI_SPECTRAL_ENABLE_DEFAULT 0 |
| 5040 | #define WMI_SPECTRAL_COUNT_DEFAULT 0 |
| 5041 | #define WMI_SPECTRAL_PERIOD_DEFAULT 35 |
| 5042 | #define WMI_SPECTRAL_PRIORITY_DEFAULT 1 |
| 5043 | #define WMI_SPECTRAL_FFT_SIZE_DEFAULT 7 |
| 5044 | #define WMI_SPECTRAL_GC_ENA_DEFAULT 1 |
| 5045 | #define WMI_SPECTRAL_RESTART_ENA_DEFAULT 0 |
| 5046 | #define WMI_SPECTRAL_NOISE_FLOOR_REF_DEFAULT -96 |
| 5047 | #define WMI_SPECTRAL_INIT_DELAY_DEFAULT 80 |
| 5048 | #define WMI_SPECTRAL_NB_TONE_THR_DEFAULT 12 |
| 5049 | #define WMI_SPECTRAL_STR_BIN_THR_DEFAULT 8 |
| 5050 | #define WMI_SPECTRAL_WB_RPT_MODE_DEFAULT 0 |
| 5051 | #define WMI_SPECTRAL_RSSI_RPT_MODE_DEFAULT 0 |
| 5052 | #define WMI_SPECTRAL_RSSI_THR_DEFAULT 0xf0 |
| 5053 | #define WMI_SPECTRAL_PWR_FORMAT_DEFAULT 0 |
| 5054 | #define WMI_SPECTRAL_RPT_MODE_DEFAULT 2 |
| 5055 | #define WMI_SPECTRAL_BIN_SCALE_DEFAULT 1 |
| 5056 | #define WMI_SPECTRAL_DBM_ADJ_DEFAULT 1 |
| 5057 | #define WMI_SPECTRAL_CHN_MASK_DEFAULT 1 |
| 5058 | |
| 5059 | struct wmi_vdev_spectral_enable_cmd { |
| 5060 | __le32 vdev_id; |
| 5061 | __le32 trigger_cmd; |
| 5062 | __le32 enable_cmd; |
| 5063 | } __packed; |
| 5064 | |
| 5065 | #define WMI_SPECTRAL_TRIGGER_CMD_TRIGGER 1 |
| 5066 | #define WMI_SPECTRAL_TRIGGER_CMD_CLEAR 2 |
| 5067 | #define WMI_SPECTRAL_ENABLE_CMD_ENABLE 1 |
| 5068 | #define WMI_SPECTRAL_ENABLE_CMD_DISABLE 2 |
| 5069 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5070 | /* Beacon processing related command and event structures */ |
| 5071 | struct wmi_bcn_tx_hdr { |
| 5072 | __le32 vdev_id; |
| 5073 | __le32 tx_rate; |
| 5074 | __le32 tx_power; |
| 5075 | __le32 bcn_len; |
| 5076 | } __packed; |
| 5077 | |
| 5078 | struct wmi_bcn_tx_cmd { |
| 5079 | struct wmi_bcn_tx_hdr hdr; |
| 5080 | u8 *bcn[0]; |
| 5081 | } __packed; |
| 5082 | |
| 5083 | struct wmi_bcn_tx_arg { |
| 5084 | u32 vdev_id; |
| 5085 | u32 tx_rate; |
| 5086 | u32 tx_power; |
| 5087 | u32 bcn_len; |
| 5088 | const void *bcn; |
| 5089 | }; |
| 5090 | |
Michal Kazior | 748afc4 | 2014-01-23 12:48:21 +0100 | [diff] [blame] | 5091 | enum wmi_bcn_tx_ref_flags { |
| 5092 | WMI_BCN_TX_REF_FLAG_DTIM_ZERO = 0x1, |
| 5093 | WMI_BCN_TX_REF_FLAG_DELIVER_CAB = 0x2, |
| 5094 | }; |
| 5095 | |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 5096 | /* TODO: It is unclear why "no antenna" works while any other seemingly valid |
| 5097 | * chainmask yields no beacons on the air at all. |
| 5098 | */ |
| 5099 | #define WMI_BCN_TX_REF_DEF_ANTENNA 0 |
| 5100 | |
Michal Kazior | 748afc4 | 2014-01-23 12:48:21 +0100 | [diff] [blame] | 5101 | struct wmi_bcn_tx_ref_cmd { |
| 5102 | __le32 vdev_id; |
| 5103 | __le32 data_len; |
| 5104 | /* physical address of the frame - dma pointer */ |
| 5105 | __le32 data_ptr; |
| 5106 | /* id for host to track */ |
| 5107 | __le32 msdu_id; |
| 5108 | /* frame ctrl to setup PPDU desc */ |
| 5109 | __le32 frame_control; |
| 5110 | /* to control CABQ traffic: WMI_BCN_TX_REF_FLAG_ */ |
| 5111 | __le32 flags; |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 5112 | /* introduced in 10.2 */ |
| 5113 | __le32 antenna_mask; |
Michal Kazior | 748afc4 | 2014-01-23 12:48:21 +0100 | [diff] [blame] | 5114 | } __packed; |
| 5115 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5116 | /* Beacon filter */ |
| 5117 | #define WMI_BCN_FILTER_ALL 0 /* Filter all beacons */ |
| 5118 | #define WMI_BCN_FILTER_NONE 1 /* Pass all beacons */ |
| 5119 | #define WMI_BCN_FILTER_RSSI 2 /* Pass Beacons RSSI >= RSSI threshold */ |
| 5120 | #define WMI_BCN_FILTER_BSSID 3 /* Pass Beacons with matching BSSID */ |
| 5121 | #define WMI_BCN_FILTER_SSID 4 /* Pass Beacons with matching SSID */ |
| 5122 | |
| 5123 | struct wmi_bcn_filter_rx_cmd { |
| 5124 | /* Filter ID */ |
| 5125 | __le32 bcn_filter_id; |
| 5126 | /* Filter type - wmi_bcn_filter */ |
| 5127 | __le32 bcn_filter; |
| 5128 | /* Buffer len */ |
| 5129 | __le32 bcn_filter_len; |
| 5130 | /* Filter info (threshold, BSSID, RSSI) */ |
| 5131 | u8 *bcn_filter_buf; |
| 5132 | } __packed; |
| 5133 | |
| 5134 | /* Capabilities and IEs to be passed to firmware */ |
| 5135 | struct wmi_bcn_prb_info { |
| 5136 | /* Capabilities */ |
| 5137 | __le32 caps; |
| 5138 | /* ERP info */ |
| 5139 | __le32 erp; |
| 5140 | /* Advanced capabilities */ |
| 5141 | /* HT capabilities */ |
| 5142 | /* HT Info */ |
| 5143 | /* ibss_dfs */ |
| 5144 | /* wpa Info */ |
| 5145 | /* rsn Info */ |
| 5146 | /* rrm info */ |
| 5147 | /* ath_ext */ |
| 5148 | /* app IE */ |
| 5149 | } __packed; |
| 5150 | |
| 5151 | struct wmi_bcn_tmpl_cmd { |
| 5152 | /* unique id identifying the VDEV, generated by the caller */ |
| 5153 | __le32 vdev_id; |
| 5154 | /* TIM IE offset from the beginning of the template. */ |
| 5155 | __le32 tim_ie_offset; |
| 5156 | /* beacon probe capabilities and IEs */ |
| 5157 | struct wmi_bcn_prb_info bcn_prb_info; |
| 5158 | /* beacon buffer length */ |
| 5159 | __le32 buf_len; |
| 5160 | /* variable length data */ |
| 5161 | u8 data[1]; |
| 5162 | } __packed; |
| 5163 | |
| 5164 | struct wmi_prb_tmpl_cmd { |
| 5165 | /* unique id identifying the VDEV, generated by the caller */ |
| 5166 | __le32 vdev_id; |
| 5167 | /* beacon probe capabilities and IEs */ |
| 5168 | struct wmi_bcn_prb_info bcn_prb_info; |
| 5169 | /* beacon buffer length */ |
| 5170 | __le32 buf_len; |
| 5171 | /* Variable length data */ |
| 5172 | u8 data[1]; |
| 5173 | } __packed; |
| 5174 | |
| 5175 | enum wmi_sta_ps_mode { |
| 5176 | /* enable power save for the given STA VDEV */ |
| 5177 | WMI_STA_PS_MODE_DISABLED = 0, |
| 5178 | /* disable power save for a given STA VDEV */ |
| 5179 | WMI_STA_PS_MODE_ENABLED = 1, |
| 5180 | }; |
| 5181 | |
| 5182 | struct wmi_sta_powersave_mode_cmd { |
| 5183 | /* unique id identifying the VDEV, generated by the caller */ |
| 5184 | __le32 vdev_id; |
| 5185 | |
| 5186 | /* |
| 5187 | * Power save mode |
| 5188 | * (see enum wmi_sta_ps_mode) |
| 5189 | */ |
| 5190 | __le32 sta_ps_mode; |
| 5191 | } __packed; |
| 5192 | |
| 5193 | enum wmi_csa_offload_en { |
| 5194 | WMI_CSA_OFFLOAD_DISABLE = 0, |
| 5195 | WMI_CSA_OFFLOAD_ENABLE = 1, |
| 5196 | }; |
| 5197 | |
| 5198 | struct wmi_csa_offload_enable_cmd { |
| 5199 | __le32 vdev_id; |
| 5200 | __le32 csa_offload_enable; |
| 5201 | } __packed; |
| 5202 | |
| 5203 | struct wmi_csa_offload_chanswitch_cmd { |
| 5204 | __le32 vdev_id; |
| 5205 | struct wmi_channel chan; |
| 5206 | } __packed; |
| 5207 | |
| 5208 | /* |
| 5209 | * This parameter controls the policy for retrieving frames from AP while the |
| 5210 | * STA is in sleep state. |
| 5211 | * |
| 5212 | * Only takes affect if the sta_ps_mode is enabled |
| 5213 | */ |
| 5214 | enum wmi_sta_ps_param_rx_wake_policy { |
| 5215 | /* |
| 5216 | * Wake up when ever there is an RX activity on the VDEV. In this mode |
| 5217 | * the Power save SM(state machine) will come out of sleep by either |
| 5218 | * sending null frame (or) a data frame (with PS==0) in response to TIM |
| 5219 | * bit set in the received beacon frame from AP. |
| 5220 | */ |
| 5221 | WMI_STA_PS_RX_WAKE_POLICY_WAKE = 0, |
| 5222 | |
| 5223 | /* |
| 5224 | * Here the power save state machine will not wakeup in response to TIM |
| 5225 | * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD |
| 5226 | * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all |
| 5227 | * access categories are delivery-enabled, the station will send a |
| 5228 | * UAPSD trigger frame, otherwise it will send a PS-Poll. |
| 5229 | */ |
| 5230 | WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD = 1, |
| 5231 | }; |
| 5232 | |
| 5233 | /* |
| 5234 | * Number of tx frames/beacon that cause the power save SM to wake up. |
| 5235 | * |
| 5236 | * Value 1 causes the SM to wake up for every TX. Value 0 has a special |
| 5237 | * meaning, It will cause the SM to never wake up. This is useful if you want |
| 5238 | * to keep the system to sleep all the time for some kind of test mode . host |
| 5239 | * can change this parameter any time. It will affect at the next tx frame. |
| 5240 | */ |
| 5241 | enum wmi_sta_ps_param_tx_wake_threshold { |
| 5242 | WMI_STA_PS_TX_WAKE_THRESHOLD_NEVER = 0, |
| 5243 | WMI_STA_PS_TX_WAKE_THRESHOLD_ALWAYS = 1, |
| 5244 | |
| 5245 | /* |
| 5246 | * Values greater than one indicate that many TX attempts per beacon |
| 5247 | * interval before the STA will wake up |
| 5248 | */ |
| 5249 | }; |
| 5250 | |
| 5251 | /* |
| 5252 | * The maximum number of PS-Poll frames the FW will send in response to |
| 5253 | * traffic advertised in TIM before waking up (by sending a null frame with PS |
| 5254 | * = 0). Value 0 has a special meaning: there is no maximum count and the FW |
| 5255 | * will send as many PS-Poll as are necessary to retrieve buffered BU. This |
| 5256 | * parameter is used when the RX wake policy is |
| 5257 | * WMI_STA_PS_RX_WAKE_POLICY_POLL_UAPSD and ignored when the RX wake |
| 5258 | * policy is WMI_STA_PS_RX_WAKE_POLICY_WAKE. |
| 5259 | */ |
| 5260 | enum wmi_sta_ps_param_pspoll_count { |
| 5261 | WMI_STA_PS_PSPOLL_COUNT_NO_MAX = 0, |
| 5262 | /* |
| 5263 | * Values greater than 0 indicate the maximum numer of PS-Poll frames |
| 5264 | * FW will send before waking up. |
| 5265 | */ |
Michal Kazior | 9f9b574 | 2014-12-12 12:41:36 +0100 | [diff] [blame] | 5266 | |
| 5267 | /* When u-APSD is enabled the firmware will be very reluctant to exit |
| 5268 | * STA PS. This could result in very poor Rx performance with STA doing |
| 5269 | * PS-Poll for each and every buffered frame. This value is a bit |
| 5270 | * arbitrary. |
| 5271 | */ |
| 5272 | WMI_STA_PS_PSPOLL_COUNT_UAPSD = 3, |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5273 | }; |
| 5274 | |
| 5275 | /* |
| 5276 | * This will include the delivery and trigger enabled state for every AC. |
| 5277 | * This is the negotiated state with AP. The host MLME needs to set this based |
| 5278 | * on AP capability and the state Set in the association request by the |
| 5279 | * station MLME.Lower 8 bits of the value specify the UAPSD configuration. |
| 5280 | */ |
| 5281 | #define WMI_UAPSD_AC_TYPE_DELI 0 |
| 5282 | #define WMI_UAPSD_AC_TYPE_TRIG 1 |
| 5283 | |
| 5284 | #define WMI_UAPSD_AC_BIT_MASK(ac, type) \ |
| 5285 | ((type == WMI_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) : (1<<((ac<<1)+1))) |
| 5286 | |
| 5287 | enum wmi_sta_ps_param_uapsd { |
| 5288 | WMI_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0), |
| 5289 | WMI_STA_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1), |
| 5290 | WMI_STA_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2), |
| 5291 | WMI_STA_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3), |
| 5292 | WMI_STA_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4), |
| 5293 | WMI_STA_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5), |
| 5294 | WMI_STA_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6), |
| 5295 | WMI_STA_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7), |
| 5296 | }; |
| 5297 | |
Janusz Dziedzic | 0c7e477 | 2015-01-24 12:14:52 +0200 | [diff] [blame] | 5298 | #define WMI_STA_UAPSD_MAX_INTERVAL_MSEC UINT_MAX |
| 5299 | |
| 5300 | struct wmi_sta_uapsd_auto_trig_param { |
| 5301 | __le32 wmm_ac; |
| 5302 | __le32 user_priority; |
| 5303 | __le32 service_interval; |
| 5304 | __le32 suspend_interval; |
| 5305 | __le32 delay_interval; |
| 5306 | }; |
| 5307 | |
| 5308 | struct wmi_sta_uapsd_auto_trig_cmd_fixed_param { |
| 5309 | __le32 vdev_id; |
| 5310 | struct wmi_mac_addr peer_macaddr; |
| 5311 | __le32 num_ac; |
| 5312 | }; |
| 5313 | |
| 5314 | struct wmi_sta_uapsd_auto_trig_arg { |
| 5315 | u32 wmm_ac; |
| 5316 | u32 user_priority; |
| 5317 | u32 service_interval; |
| 5318 | u32 suspend_interval; |
| 5319 | u32 delay_interval; |
| 5320 | }; |
| 5321 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5322 | enum wmi_sta_powersave_param { |
| 5323 | /* |
| 5324 | * Controls how frames are retrievd from AP while STA is sleeping |
| 5325 | * |
| 5326 | * (see enum wmi_sta_ps_param_rx_wake_policy) |
| 5327 | */ |
| 5328 | WMI_STA_PS_PARAM_RX_WAKE_POLICY = 0, |
| 5329 | |
| 5330 | /* |
| 5331 | * The STA will go active after this many TX |
| 5332 | * |
| 5333 | * (see enum wmi_sta_ps_param_tx_wake_threshold) |
| 5334 | */ |
| 5335 | WMI_STA_PS_PARAM_TX_WAKE_THRESHOLD = 1, |
| 5336 | |
| 5337 | /* |
| 5338 | * Number of PS-Poll to send before STA wakes up |
| 5339 | * |
| 5340 | * (see enum wmi_sta_ps_param_pspoll_count) |
| 5341 | * |
| 5342 | */ |
| 5343 | WMI_STA_PS_PARAM_PSPOLL_COUNT = 2, |
| 5344 | |
| 5345 | /* |
| 5346 | * TX/RX inactivity time in msec before going to sleep. |
| 5347 | * |
| 5348 | * The power save SM will monitor tx/rx activity on the VDEV, if no |
| 5349 | * activity for the specified msec of the parameter the Power save |
| 5350 | * SM will go to sleep. |
| 5351 | */ |
| 5352 | WMI_STA_PS_PARAM_INACTIVITY_TIME = 3, |
| 5353 | |
| 5354 | /* |
| 5355 | * Set uapsd configuration. |
| 5356 | * |
| 5357 | * (see enum wmi_sta_ps_param_uapsd) |
| 5358 | */ |
| 5359 | WMI_STA_PS_PARAM_UAPSD = 4, |
| 5360 | }; |
| 5361 | |
| 5362 | struct wmi_sta_powersave_param_cmd { |
| 5363 | __le32 vdev_id; |
| 5364 | __le32 param_id; /* %WMI_STA_PS_PARAM_ */ |
| 5365 | __le32 param_value; |
| 5366 | } __packed; |
| 5367 | |
| 5368 | /* No MIMO power save */ |
| 5369 | #define WMI_STA_MIMO_PS_MODE_DISABLE |
| 5370 | /* mimo powersave mode static*/ |
| 5371 | #define WMI_STA_MIMO_PS_MODE_STATIC |
| 5372 | /* mimo powersave mode dynamic */ |
| 5373 | #define WMI_STA_MIMO_PS_MODE_DYNAMIC |
| 5374 | |
| 5375 | struct wmi_sta_mimo_ps_mode_cmd { |
| 5376 | /* unique id identifying the VDEV, generated by the caller */ |
| 5377 | __le32 vdev_id; |
| 5378 | /* mimo powersave mode as defined above */ |
| 5379 | __le32 mimo_pwrsave_mode; |
| 5380 | } __packed; |
| 5381 | |
| 5382 | /* U-APSD configuration of peer station from (re)assoc request and TSPECs */ |
| 5383 | enum wmi_ap_ps_param_uapsd { |
| 5384 | WMI_AP_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0), |
| 5385 | WMI_AP_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1), |
| 5386 | WMI_AP_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2), |
| 5387 | WMI_AP_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3), |
| 5388 | WMI_AP_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4), |
| 5389 | WMI_AP_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5), |
| 5390 | WMI_AP_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6), |
| 5391 | WMI_AP_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7), |
| 5392 | }; |
| 5393 | |
| 5394 | /* U-APSD maximum service period of peer station */ |
| 5395 | enum wmi_ap_ps_peer_param_max_sp { |
| 5396 | WMI_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED = 0, |
| 5397 | WMI_AP_PS_PEER_PARAM_MAX_SP_2 = 1, |
| 5398 | WMI_AP_PS_PEER_PARAM_MAX_SP_4 = 2, |
| 5399 | WMI_AP_PS_PEER_PARAM_MAX_SP_6 = 3, |
| 5400 | MAX_WMI_AP_PS_PEER_PARAM_MAX_SP, |
| 5401 | }; |
| 5402 | |
| 5403 | /* |
| 5404 | * AP power save parameter |
| 5405 | * Set a power save specific parameter for a peer station |
| 5406 | */ |
| 5407 | enum wmi_ap_ps_peer_param { |
| 5408 | /* Set uapsd configuration for a given peer. |
| 5409 | * |
| 5410 | * Include the delivery and trigger enabled state for every AC. |
| 5411 | * The host MLME needs to set this based on AP capability and stations |
| 5412 | * request Set in the association request received from the station. |
| 5413 | * |
| 5414 | * Lower 8 bits of the value specify the UAPSD configuration. |
| 5415 | * |
| 5416 | * (see enum wmi_ap_ps_param_uapsd) |
| 5417 | * The default value is 0. |
| 5418 | */ |
| 5419 | WMI_AP_PS_PEER_PARAM_UAPSD = 0, |
| 5420 | |
| 5421 | /* |
| 5422 | * Set the service period for a UAPSD capable station |
| 5423 | * |
| 5424 | * The service period from wme ie in the (re)assoc request frame. |
| 5425 | * |
| 5426 | * (see enum wmi_ap_ps_peer_param_max_sp) |
| 5427 | */ |
| 5428 | WMI_AP_PS_PEER_PARAM_MAX_SP = 1, |
| 5429 | |
| 5430 | /* Time in seconds for aging out buffered frames for STA in PS */ |
| 5431 | WMI_AP_PS_PEER_PARAM_AGEOUT_TIME = 2, |
| 5432 | }; |
| 5433 | |
| 5434 | struct wmi_ap_ps_peer_cmd { |
| 5435 | /* unique id identifying the VDEV, generated by the caller */ |
| 5436 | __le32 vdev_id; |
| 5437 | |
| 5438 | /* peer MAC address */ |
| 5439 | struct wmi_mac_addr peer_macaddr; |
| 5440 | |
| 5441 | /* AP powersave param (see enum wmi_ap_ps_peer_param) */ |
| 5442 | __le32 param_id; |
| 5443 | |
| 5444 | /* AP powersave param value */ |
| 5445 | __le32 param_value; |
| 5446 | } __packed; |
| 5447 | |
| 5448 | /* 128 clients = 4 words */ |
| 5449 | #define WMI_TIM_BITMAP_ARRAY_SIZE 4 |
| 5450 | |
| 5451 | struct wmi_tim_info { |
| 5452 | __le32 tim_len; |
| 5453 | __le32 tim_mcast; |
| 5454 | __le32 tim_bitmap[WMI_TIM_BITMAP_ARRAY_SIZE]; |
| 5455 | __le32 tim_changed; |
| 5456 | __le32 tim_num_ps_pending; |
| 5457 | } __packed; |
| 5458 | |
Raja Mani | a03fee3 | 2015-06-22 20:22:20 +0530 | [diff] [blame] | 5459 | struct wmi_tim_info_arg { |
| 5460 | __le32 tim_len; |
| 5461 | __le32 tim_mcast; |
| 5462 | const __le32 *tim_bitmap; |
| 5463 | __le32 tim_changed; |
| 5464 | __le32 tim_num_ps_pending; |
| 5465 | } __packed; |
| 5466 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5467 | /* Maximum number of NOA Descriptors supported */ |
| 5468 | #define WMI_P2P_MAX_NOA_DESCRIPTORS 4 |
| 5469 | #define WMI_P2P_OPPPS_ENABLE_BIT BIT(0) |
| 5470 | #define WMI_P2P_OPPPS_CTWINDOW_OFFSET 1 |
| 5471 | #define WMI_P2P_NOA_CHANGED_BIT BIT(0) |
| 5472 | |
| 5473 | struct wmi_p2p_noa_info { |
| 5474 | /* Bit 0 - Flag to indicate an update in NOA schedule |
| 5475 | Bits 7-1 - Reserved */ |
| 5476 | u8 changed; |
| 5477 | /* NOA index */ |
| 5478 | u8 index; |
| 5479 | /* Bit 0 - Opp PS state of the AP |
| 5480 | Bits 1-7 - Ctwindow in TUs */ |
| 5481 | u8 ctwindow_oppps; |
| 5482 | /* Number of NOA descriptors */ |
| 5483 | u8 num_descriptors; |
| 5484 | |
| 5485 | struct wmi_p2p_noa_descriptor descriptors[WMI_P2P_MAX_NOA_DESCRIPTORS]; |
| 5486 | } __packed; |
| 5487 | |
| 5488 | struct wmi_bcn_info { |
| 5489 | struct wmi_tim_info tim_info; |
| 5490 | struct wmi_p2p_noa_info p2p_noa_info; |
| 5491 | } __packed; |
| 5492 | |
| 5493 | struct wmi_host_swba_event { |
| 5494 | __le32 vdev_map; |
Michal Kazior | 32653cf | 2014-12-03 10:10:26 +0200 | [diff] [blame] | 5495 | struct wmi_bcn_info bcn_info[0]; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5496 | } __packed; |
| 5497 | |
Yanbo Li | 8b019fb | 2016-01-14 15:39:19 -0800 | [diff] [blame] | 5498 | struct wmi_10_2_4_bcn_info { |
| 5499 | struct wmi_tim_info tim_info; |
| 5500 | /* The 10.2.4 FW doesn't have p2p NOA info */ |
| 5501 | } __packed; |
| 5502 | |
| 5503 | struct wmi_10_2_4_host_swba_event { |
| 5504 | __le32 vdev_map; |
| 5505 | struct wmi_10_2_4_bcn_info bcn_info[0]; |
| 5506 | } __packed; |
| 5507 | |
Raja Mani | 3cec3be | 2015-06-22 20:22:21 +0530 | [diff] [blame] | 5508 | /* 16 words = 512 client + 1 word = for guard */ |
| 5509 | #define WMI_10_4_TIM_BITMAP_ARRAY_SIZE 17 |
| 5510 | |
| 5511 | struct wmi_10_4_tim_info { |
| 5512 | __le32 tim_len; |
| 5513 | __le32 tim_mcast; |
| 5514 | __le32 tim_bitmap[WMI_10_4_TIM_BITMAP_ARRAY_SIZE]; |
| 5515 | __le32 tim_changed; |
| 5516 | __le32 tim_num_ps_pending; |
| 5517 | } __packed; |
| 5518 | |
| 5519 | #define WMI_10_4_P2P_MAX_NOA_DESCRIPTORS 1 |
| 5520 | |
| 5521 | struct wmi_10_4_p2p_noa_info { |
| 5522 | /* Bit 0 - Flag to indicate an update in NOA schedule |
| 5523 | * Bits 7-1 - Reserved |
| 5524 | */ |
| 5525 | u8 changed; |
| 5526 | /* NOA index */ |
| 5527 | u8 index; |
| 5528 | /* Bit 0 - Opp PS state of the AP |
| 5529 | * Bits 1-7 - Ctwindow in TUs |
| 5530 | */ |
| 5531 | u8 ctwindow_oppps; |
| 5532 | /* Number of NOA descriptors */ |
| 5533 | u8 num_descriptors; |
| 5534 | |
| 5535 | struct wmi_p2p_noa_descriptor |
| 5536 | noa_descriptors[WMI_10_4_P2P_MAX_NOA_DESCRIPTORS]; |
| 5537 | } __packed; |
| 5538 | |
| 5539 | struct wmi_10_4_bcn_info { |
| 5540 | struct wmi_10_4_tim_info tim_info; |
| 5541 | struct wmi_10_4_p2p_noa_info p2p_noa_info; |
| 5542 | } __packed; |
| 5543 | |
| 5544 | struct wmi_10_4_host_swba_event { |
| 5545 | __le32 vdev_map; |
| 5546 | struct wmi_10_4_bcn_info bcn_info[0]; |
| 5547 | } __packed; |
| 5548 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5549 | #define WMI_MAX_AP_VDEV 16 |
| 5550 | |
| 5551 | struct wmi_tbtt_offset_event { |
| 5552 | __le32 vdev_map; |
| 5553 | __le32 tbttoffset_list[WMI_MAX_AP_VDEV]; |
| 5554 | } __packed; |
| 5555 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5556 | struct wmi_peer_create_cmd { |
| 5557 | __le32 vdev_id; |
| 5558 | struct wmi_mac_addr peer_macaddr; |
| 5559 | } __packed; |
| 5560 | |
Marek Puzyniak | 7390ed3 | 2015-03-30 09:51:52 +0300 | [diff] [blame] | 5561 | enum wmi_peer_type { |
| 5562 | WMI_PEER_TYPE_DEFAULT = 0, |
| 5563 | WMI_PEER_TYPE_BSS = 1, |
| 5564 | WMI_PEER_TYPE_TDLS = 2, |
| 5565 | }; |
| 5566 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5567 | struct wmi_peer_delete_cmd { |
| 5568 | __le32 vdev_id; |
| 5569 | struct wmi_mac_addr peer_macaddr; |
| 5570 | } __packed; |
| 5571 | |
| 5572 | struct wmi_peer_flush_tids_cmd { |
| 5573 | __le32 vdev_id; |
| 5574 | struct wmi_mac_addr peer_macaddr; |
| 5575 | __le32 peer_tid_bitmap; |
| 5576 | } __packed; |
| 5577 | |
| 5578 | struct wmi_fixed_rate { |
| 5579 | /* |
| 5580 | * rate mode . 0: disable fixed rate (auto rate) |
| 5581 | * 1: legacy (non 11n) rate specified as ieee rate 2*Mbps |
| 5582 | * 2: ht20 11n rate specified as mcs index |
| 5583 | * 3: ht40 11n rate specified as mcs index |
| 5584 | */ |
| 5585 | __le32 rate_mode; |
| 5586 | /* |
| 5587 | * 4 rate values for 4 rate series. series 0 is stored in byte 0 (LSB) |
| 5588 | * and series 3 is stored at byte 3 (MSB) |
| 5589 | */ |
| 5590 | __le32 rate_series; |
| 5591 | /* |
| 5592 | * 4 retry counts for 4 rate series. retry count for rate 0 is stored |
| 5593 | * in byte 0 (LSB) and retry count for rate 3 is stored at byte 3 |
| 5594 | * (MSB) |
| 5595 | */ |
| 5596 | __le32 rate_retries; |
| 5597 | } __packed; |
| 5598 | |
| 5599 | struct wmi_peer_fixed_rate_cmd { |
| 5600 | /* unique id identifying the VDEV, generated by the caller */ |
| 5601 | __le32 vdev_id; |
| 5602 | /* peer MAC address */ |
| 5603 | struct wmi_mac_addr peer_macaddr; |
| 5604 | /* fixed rate */ |
| 5605 | struct wmi_fixed_rate peer_fixed_rate; |
| 5606 | } __packed; |
| 5607 | |
| 5608 | #define WMI_MGMT_TID 17 |
| 5609 | |
| 5610 | struct wmi_addba_clear_resp_cmd { |
| 5611 | /* unique id identifying the VDEV, generated by the caller */ |
| 5612 | __le32 vdev_id; |
| 5613 | /* peer MAC address */ |
| 5614 | struct wmi_mac_addr peer_macaddr; |
| 5615 | } __packed; |
| 5616 | |
| 5617 | struct wmi_addba_send_cmd { |
| 5618 | /* unique id identifying the VDEV, generated by the caller */ |
| 5619 | __le32 vdev_id; |
| 5620 | /* peer MAC address */ |
| 5621 | struct wmi_mac_addr peer_macaddr; |
| 5622 | /* Tid number */ |
| 5623 | __le32 tid; |
| 5624 | /* Buffer/Window size*/ |
| 5625 | __le32 buffersize; |
| 5626 | } __packed; |
| 5627 | |
| 5628 | struct wmi_delba_send_cmd { |
| 5629 | /* unique id identifying the VDEV, generated by the caller */ |
| 5630 | __le32 vdev_id; |
| 5631 | /* peer MAC address */ |
| 5632 | struct wmi_mac_addr peer_macaddr; |
| 5633 | /* Tid number */ |
| 5634 | __le32 tid; |
| 5635 | /* Is Initiator */ |
| 5636 | __le32 initiator; |
| 5637 | /* Reason code */ |
| 5638 | __le32 reasoncode; |
| 5639 | } __packed; |
| 5640 | |
| 5641 | struct wmi_addba_setresponse_cmd { |
| 5642 | /* unique id identifying the vdev, generated by the caller */ |
| 5643 | __le32 vdev_id; |
| 5644 | /* peer mac address */ |
| 5645 | struct wmi_mac_addr peer_macaddr; |
| 5646 | /* Tid number */ |
| 5647 | __le32 tid; |
| 5648 | /* status code */ |
| 5649 | __le32 statuscode; |
| 5650 | } __packed; |
| 5651 | |
| 5652 | struct wmi_send_singleamsdu_cmd { |
| 5653 | /* unique id identifying the vdev, generated by the caller */ |
| 5654 | __le32 vdev_id; |
| 5655 | /* peer mac address */ |
| 5656 | struct wmi_mac_addr peer_macaddr; |
| 5657 | /* Tid number */ |
| 5658 | __le32 tid; |
| 5659 | } __packed; |
| 5660 | |
| 5661 | enum wmi_peer_smps_state { |
| 5662 | WMI_PEER_SMPS_PS_NONE = 0x0, |
| 5663 | WMI_PEER_SMPS_STATIC = 0x1, |
| 5664 | WMI_PEER_SMPS_DYNAMIC = 0x2 |
| 5665 | }; |
| 5666 | |
Michal Kazior | 9797feb | 2014-02-14 14:49:48 +0100 | [diff] [blame] | 5667 | enum wmi_peer_chwidth { |
| 5668 | WMI_PEER_CHWIDTH_20MHZ = 0, |
| 5669 | WMI_PEER_CHWIDTH_40MHZ = 1, |
| 5670 | WMI_PEER_CHWIDTH_80MHZ = 2, |
| 5671 | }; |
| 5672 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5673 | enum wmi_peer_param { |
| 5674 | WMI_PEER_SMPS_STATE = 0x1, /* see %wmi_peer_smps_state */ |
| 5675 | WMI_PEER_AMPDU = 0x2, |
| 5676 | WMI_PEER_AUTHORIZE = 0x3, |
| 5677 | WMI_PEER_CHAN_WIDTH = 0x4, |
| 5678 | WMI_PEER_NSS = 0x5, |
Michal Kazior | 0a987fb | 2015-02-13 13:30:15 +0100 | [diff] [blame] | 5679 | WMI_PEER_USE_4ADDR = 0x6, |
| 5680 | WMI_PEER_DUMMY_VAR = 0xff, /* dummy parameter for STA PS workaround */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5681 | }; |
| 5682 | |
| 5683 | struct wmi_peer_set_param_cmd { |
| 5684 | __le32 vdev_id; |
| 5685 | struct wmi_mac_addr peer_macaddr; |
| 5686 | __le32 param_id; |
| 5687 | __le32 param_value; |
| 5688 | } __packed; |
| 5689 | |
| 5690 | #define MAX_SUPPORTED_RATES 128 |
| 5691 | |
| 5692 | struct wmi_rate_set { |
| 5693 | /* total number of rates */ |
| 5694 | __le32 num_rates; |
| 5695 | /* |
| 5696 | * rates (each 8bit value) packed into a 32 bit word. |
| 5697 | * the rates are filled from least significant byte to most |
| 5698 | * significant byte. |
| 5699 | */ |
| 5700 | __le32 rates[(MAX_SUPPORTED_RATES/4)+1]; |
| 5701 | } __packed; |
| 5702 | |
| 5703 | struct wmi_rate_set_arg { |
| 5704 | unsigned int num_rates; |
| 5705 | u8 rates[MAX_SUPPORTED_RATES]; |
| 5706 | }; |
| 5707 | |
| 5708 | /* |
| 5709 | * NOTE: It would bea good idea to represent the Tx MCS |
| 5710 | * info in one word and Rx in another word. This is split |
| 5711 | * into multiple words for convenience |
| 5712 | */ |
| 5713 | struct wmi_vht_rate_set { |
| 5714 | __le32 rx_max_rate; /* Max Rx data rate */ |
| 5715 | __le32 rx_mcs_set; /* Negotiated RX VHT rates */ |
| 5716 | __le32 tx_max_rate; /* Max Tx data rate */ |
| 5717 | __le32 tx_mcs_set; /* Negotiated TX VHT rates */ |
| 5718 | } __packed; |
| 5719 | |
| 5720 | struct wmi_vht_rate_set_arg { |
| 5721 | u32 rx_max_rate; |
| 5722 | u32 rx_mcs_set; |
| 5723 | u32 tx_max_rate; |
| 5724 | u32 tx_mcs_set; |
| 5725 | }; |
| 5726 | |
| 5727 | struct wmi_peer_set_rates_cmd { |
| 5728 | /* peer MAC address */ |
| 5729 | struct wmi_mac_addr peer_macaddr; |
| 5730 | /* legacy rate set */ |
| 5731 | struct wmi_rate_set peer_legacy_rates; |
| 5732 | /* ht rate set */ |
| 5733 | struct wmi_rate_set peer_ht_rates; |
| 5734 | } __packed; |
| 5735 | |
| 5736 | struct wmi_peer_set_q_empty_callback_cmd { |
| 5737 | /* unique id identifying the VDEV, generated by the caller */ |
| 5738 | __le32 vdev_id; |
| 5739 | /* peer MAC address */ |
| 5740 | struct wmi_mac_addr peer_macaddr; |
| 5741 | __le32 callback_enable; |
| 5742 | } __packed; |
| 5743 | |
Tamizh chelvam | 3fab30f | 2015-10-29 14:27:37 +0200 | [diff] [blame] | 5744 | struct wmi_peer_flags_map { |
| 5745 | u32 auth; |
| 5746 | u32 qos; |
| 5747 | u32 need_ptk_4_way; |
| 5748 | u32 need_gtk_2_way; |
| 5749 | u32 apsd; |
| 5750 | u32 ht; |
| 5751 | u32 bw40; |
| 5752 | u32 stbc; |
| 5753 | u32 ldbc; |
| 5754 | u32 dyn_mimops; |
| 5755 | u32 static_mimops; |
| 5756 | u32 spatial_mux; |
| 5757 | u32 vht; |
| 5758 | u32 bw80; |
| 5759 | u32 vht_2g; |
| 5760 | u32 pmf; |
| 5761 | }; |
| 5762 | |
| 5763 | enum wmi_peer_flags { |
| 5764 | WMI_PEER_AUTH = 0x00000001, |
| 5765 | WMI_PEER_QOS = 0x00000002, |
| 5766 | WMI_PEER_NEED_PTK_4_WAY = 0x00000004, |
| 5767 | WMI_PEER_NEED_GTK_2_WAY = 0x00000010, |
| 5768 | WMI_PEER_APSD = 0x00000800, |
| 5769 | WMI_PEER_HT = 0x00001000, |
| 5770 | WMI_PEER_40MHZ = 0x00002000, |
| 5771 | WMI_PEER_STBC = 0x00008000, |
| 5772 | WMI_PEER_LDPC = 0x00010000, |
| 5773 | WMI_PEER_DYN_MIMOPS = 0x00020000, |
| 5774 | WMI_PEER_STATIC_MIMOPS = 0x00040000, |
| 5775 | WMI_PEER_SPATIAL_MUX = 0x00200000, |
| 5776 | WMI_PEER_VHT = 0x02000000, |
| 5777 | WMI_PEER_80MHZ = 0x04000000, |
| 5778 | WMI_PEER_VHT_2G = 0x08000000, |
| 5779 | WMI_PEER_PMF = 0x10000000, |
| 5780 | }; |
| 5781 | |
| 5782 | enum wmi_10x_peer_flags { |
| 5783 | WMI_10X_PEER_AUTH = 0x00000001, |
| 5784 | WMI_10X_PEER_QOS = 0x00000002, |
| 5785 | WMI_10X_PEER_NEED_PTK_4_WAY = 0x00000004, |
| 5786 | WMI_10X_PEER_NEED_GTK_2_WAY = 0x00000010, |
| 5787 | WMI_10X_PEER_APSD = 0x00000800, |
| 5788 | WMI_10X_PEER_HT = 0x00001000, |
| 5789 | WMI_10X_PEER_40MHZ = 0x00002000, |
| 5790 | WMI_10X_PEER_STBC = 0x00008000, |
| 5791 | WMI_10X_PEER_LDPC = 0x00010000, |
| 5792 | WMI_10X_PEER_DYN_MIMOPS = 0x00020000, |
| 5793 | WMI_10X_PEER_STATIC_MIMOPS = 0x00040000, |
| 5794 | WMI_10X_PEER_SPATIAL_MUX = 0x00200000, |
| 5795 | WMI_10X_PEER_VHT = 0x02000000, |
| 5796 | WMI_10X_PEER_80MHZ = 0x04000000, |
| 5797 | }; |
| 5798 | |
| 5799 | enum wmi_10_2_peer_flags { |
| 5800 | WMI_10_2_PEER_AUTH = 0x00000001, |
| 5801 | WMI_10_2_PEER_QOS = 0x00000002, |
| 5802 | WMI_10_2_PEER_NEED_PTK_4_WAY = 0x00000004, |
| 5803 | WMI_10_2_PEER_NEED_GTK_2_WAY = 0x00000010, |
| 5804 | WMI_10_2_PEER_APSD = 0x00000800, |
| 5805 | WMI_10_2_PEER_HT = 0x00001000, |
| 5806 | WMI_10_2_PEER_40MHZ = 0x00002000, |
| 5807 | WMI_10_2_PEER_STBC = 0x00008000, |
| 5808 | WMI_10_2_PEER_LDPC = 0x00010000, |
| 5809 | WMI_10_2_PEER_DYN_MIMOPS = 0x00020000, |
| 5810 | WMI_10_2_PEER_STATIC_MIMOPS = 0x00040000, |
| 5811 | WMI_10_2_PEER_SPATIAL_MUX = 0x00200000, |
| 5812 | WMI_10_2_PEER_VHT = 0x02000000, |
| 5813 | WMI_10_2_PEER_80MHZ = 0x04000000, |
| 5814 | WMI_10_2_PEER_VHT_2G = 0x08000000, |
| 5815 | WMI_10_2_PEER_PMF = 0x10000000, |
| 5816 | }; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5817 | |
| 5818 | /* |
| 5819 | * Peer rate capabilities. |
| 5820 | * |
| 5821 | * This is of interest to the ratecontrol |
| 5822 | * module which resides in the firmware. The bit definitions are |
| 5823 | * consistent with that defined in if_athrate.c. |
| 5824 | */ |
| 5825 | #define WMI_RC_DS_FLAG 0x01 |
| 5826 | #define WMI_RC_CW40_FLAG 0x02 |
| 5827 | #define WMI_RC_SGI_FLAG 0x04 |
| 5828 | #define WMI_RC_HT_FLAG 0x08 |
| 5829 | #define WMI_RC_RTSCTS_FLAG 0x10 |
| 5830 | #define WMI_RC_TX_STBC_FLAG 0x20 |
| 5831 | #define WMI_RC_RX_STBC_FLAG 0xC0 |
| 5832 | #define WMI_RC_RX_STBC_FLAG_S 6 |
| 5833 | #define WMI_RC_WEP_TKIP_FLAG 0x100 |
| 5834 | #define WMI_RC_TS_FLAG 0x200 |
| 5835 | #define WMI_RC_UAPSD_FLAG 0x400 |
| 5836 | |
| 5837 | /* Maximum listen interval supported by hw in units of beacon interval */ |
| 5838 | #define ATH10K_MAX_HW_LISTEN_INTERVAL 5 |
| 5839 | |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 5840 | struct wmi_common_peer_assoc_complete_cmd { |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5841 | struct wmi_mac_addr peer_macaddr; |
| 5842 | __le32 vdev_id; |
| 5843 | __le32 peer_new_assoc; /* 1=assoc, 0=reassoc */ |
| 5844 | __le32 peer_associd; /* 16 LSBs */ |
| 5845 | __le32 peer_flags; |
| 5846 | __le32 peer_caps; /* 16 LSBs */ |
| 5847 | __le32 peer_listen_intval; |
| 5848 | __le32 peer_ht_caps; |
| 5849 | __le32 peer_max_mpdu; |
| 5850 | __le32 peer_mpdu_density; /* 0..16 */ |
| 5851 | __le32 peer_rate_caps; |
| 5852 | struct wmi_rate_set peer_legacy_rates; |
| 5853 | struct wmi_rate_set peer_ht_rates; |
| 5854 | __le32 peer_nss; /* num of spatial streams */ |
| 5855 | __le32 peer_vht_caps; |
| 5856 | __le32 peer_phymode; |
| 5857 | struct wmi_vht_rate_set peer_vht_rates; |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 5858 | }; |
| 5859 | |
| 5860 | struct wmi_main_peer_assoc_complete_cmd { |
| 5861 | struct wmi_common_peer_assoc_complete_cmd cmd; |
| 5862 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5863 | /* HT Operation Element of the peer. Five bytes packed in 2 |
| 5864 | * INT32 array and filled from lsb to msb. */ |
| 5865 | __le32 peer_ht_info[2]; |
| 5866 | } __packed; |
| 5867 | |
Michal Kazior | 24c88f7 | 2014-07-25 13:32:17 +0200 | [diff] [blame] | 5868 | struct wmi_10_1_peer_assoc_complete_cmd { |
| 5869 | struct wmi_common_peer_assoc_complete_cmd cmd; |
| 5870 | } __packed; |
| 5871 | |
| 5872 | #define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_LSB 0 |
| 5873 | #define WMI_PEER_ASSOC_INFO0_MAX_MCS_IDX_MASK 0x0f |
| 5874 | #define WMI_PEER_ASSOC_INFO0_MAX_NSS_LSB 4 |
| 5875 | #define WMI_PEER_ASSOC_INFO0_MAX_NSS_MASK 0xf0 |
| 5876 | |
| 5877 | struct wmi_10_2_peer_assoc_complete_cmd { |
| 5878 | struct wmi_common_peer_assoc_complete_cmd cmd; |
| 5879 | __le32 info0; /* WMI_PEER_ASSOC_INFO0_ */ |
| 5880 | } __packed; |
| 5881 | |
Vasanthakumar Thiagarajan | b54e16f | 2015-11-05 11:33:58 +0530 | [diff] [blame] | 5882 | struct wmi_10_4_peer_assoc_complete_cmd { |
| 5883 | struct wmi_10_2_peer_assoc_complete_cmd cmd; |
| 5884 | __le32 peer_bw_rxnss_override; |
| 5885 | } __packed; |
| 5886 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5887 | struct wmi_peer_assoc_complete_arg { |
| 5888 | u8 addr[ETH_ALEN]; |
| 5889 | u32 vdev_id; |
| 5890 | bool peer_reassoc; |
| 5891 | u16 peer_aid; |
| 5892 | u32 peer_flags; /* see %WMI_PEER_ */ |
| 5893 | u16 peer_caps; |
| 5894 | u32 peer_listen_intval; |
| 5895 | u32 peer_ht_caps; |
| 5896 | u32 peer_max_mpdu; |
| 5897 | u32 peer_mpdu_density; /* 0..16 */ |
| 5898 | u32 peer_rate_caps; /* see %WMI_RC_ */ |
| 5899 | struct wmi_rate_set_arg peer_legacy_rates; |
| 5900 | struct wmi_rate_set_arg peer_ht_rates; |
| 5901 | u32 peer_num_spatial_streams; |
| 5902 | u32 peer_vht_caps; |
| 5903 | enum wmi_phy_mode peer_phymode; |
| 5904 | struct wmi_vht_rate_set_arg peer_vht_rates; |
| 5905 | }; |
| 5906 | |
| 5907 | struct wmi_peer_add_wds_entry_cmd { |
| 5908 | /* peer MAC address */ |
| 5909 | struct wmi_mac_addr peer_macaddr; |
| 5910 | /* wds MAC addr */ |
| 5911 | struct wmi_mac_addr wds_macaddr; |
| 5912 | } __packed; |
| 5913 | |
| 5914 | struct wmi_peer_remove_wds_entry_cmd { |
| 5915 | /* wds MAC addr */ |
| 5916 | struct wmi_mac_addr wds_macaddr; |
| 5917 | } __packed; |
| 5918 | |
| 5919 | struct wmi_peer_q_empty_callback_event { |
| 5920 | /* peer MAC address */ |
| 5921 | struct wmi_mac_addr peer_macaddr; |
| 5922 | } __packed; |
| 5923 | |
| 5924 | /* |
| 5925 | * Channel info WMI event |
| 5926 | */ |
| 5927 | struct wmi_chan_info_event { |
| 5928 | __le32 err_code; |
| 5929 | __le32 freq; |
| 5930 | __le32 cmd_flags; |
| 5931 | __le32 noise_floor; |
| 5932 | __le32 rx_clear_count; |
| 5933 | __le32 cycle_count; |
| 5934 | } __packed; |
| 5935 | |
Raja Mani | b2297ba | 2015-06-22 20:22:23 +0530 | [diff] [blame] | 5936 | struct wmi_10_4_chan_info_event { |
| 5937 | __le32 err_code; |
| 5938 | __le32 freq; |
| 5939 | __le32 cmd_flags; |
| 5940 | __le32 noise_floor; |
| 5941 | __le32 rx_clear_count; |
| 5942 | __le32 cycle_count; |
| 5943 | __le32 chan_tx_pwr_range; |
| 5944 | __le32 chan_tx_pwr_tp; |
| 5945 | __le32 rx_frame_count; |
| 5946 | } __packed; |
| 5947 | |
Kalle Valo | 5a13e76 | 2014-01-20 11:01:46 +0200 | [diff] [blame] | 5948 | struct wmi_peer_sta_kickout_event { |
| 5949 | struct wmi_mac_addr peer_macaddr; |
| 5950 | } __packed; |
| 5951 | |
Michal Kazior | 2e1dea4 | 2013-07-31 10:32:40 +0200 | [diff] [blame] | 5952 | #define WMI_CHAN_INFO_FLAG_COMPLETE BIT(0) |
Vasanthakumar Thiagarajan | 3d2a2e2 | 2015-08-12 16:24:04 +0530 | [diff] [blame] | 5953 | #define WMI_CHAN_INFO_FLAG_PRE_COMPLETE BIT(1) |
Michal Kazior | 2e1dea4 | 2013-07-31 10:32:40 +0200 | [diff] [blame] | 5954 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5955 | /* Beacon filter wmi command info */ |
| 5956 | #define BCN_FLT_MAX_SUPPORTED_IES 256 |
| 5957 | #define BCN_FLT_MAX_ELEMS_IE_LIST (BCN_FLT_MAX_SUPPORTED_IES / 32) |
| 5958 | |
| 5959 | struct bss_bcn_stats { |
| 5960 | __le32 vdev_id; |
| 5961 | __le32 bss_bcnsdropped; |
| 5962 | __le32 bss_bcnsdelivered; |
| 5963 | } __packed; |
| 5964 | |
| 5965 | struct bcn_filter_stats { |
| 5966 | __le32 bcns_dropped; |
| 5967 | __le32 bcns_delivered; |
| 5968 | __le32 activefilters; |
| 5969 | struct bss_bcn_stats bss_stats; |
| 5970 | } __packed; |
| 5971 | |
| 5972 | struct wmi_add_bcn_filter_cmd { |
| 5973 | u32 vdev_id; |
| 5974 | u32 ie_map[BCN_FLT_MAX_ELEMS_IE_LIST]; |
| 5975 | } __packed; |
| 5976 | |
| 5977 | enum wmi_sta_keepalive_method { |
| 5978 | WMI_STA_KEEPALIVE_METHOD_NULL_FRAME = 1, |
| 5979 | WMI_STA_KEEPALIVE_METHOD_UNSOLICITATED_ARP_RESPONSE = 2, |
| 5980 | }; |
| 5981 | |
Michal Kazior | 46725b15 | 2015-01-28 09:57:49 +0200 | [diff] [blame] | 5982 | #define WMI_STA_KEEPALIVE_INTERVAL_DISABLE 0 |
| 5983 | |
| 5984 | /* Firmware crashes if keepalive interval exceeds this limit */ |
| 5985 | #define WMI_STA_KEEPALIVE_INTERVAL_MAX_SECONDS 0xffff |
| 5986 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 5987 | /* note: ip4 addresses are in network byte order, i.e. big endian */ |
| 5988 | struct wmi_sta_keepalive_arp_resp { |
| 5989 | __be32 src_ip4_addr; |
| 5990 | __be32 dest_ip4_addr; |
| 5991 | struct wmi_mac_addr dest_mac_addr; |
| 5992 | } __packed; |
| 5993 | |
| 5994 | struct wmi_sta_keepalive_cmd { |
| 5995 | __le32 vdev_id; |
| 5996 | __le32 enabled; |
| 5997 | __le32 method; /* WMI_STA_KEEPALIVE_METHOD_ */ |
| 5998 | __le32 interval; /* in seconds */ |
| 5999 | struct wmi_sta_keepalive_arp_resp arp_resp; |
| 6000 | } __packed; |
| 6001 | |
Janusz Dziedzic | 6e8b188 | 2015-01-28 09:57:39 +0200 | [diff] [blame] | 6002 | struct wmi_sta_keepalive_arg { |
| 6003 | u32 vdev_id; |
| 6004 | u32 enabled; |
| 6005 | u32 method; |
| 6006 | u32 interval; |
| 6007 | __be32 src_ip4_addr; |
| 6008 | __be32 dest_ip4_addr; |
| 6009 | const u8 dest_mac_addr[ETH_ALEN]; |
| 6010 | }; |
| 6011 | |
Michal Kazior | 9cfbce7 | 2013-07-16 09:54:36 +0200 | [diff] [blame] | 6012 | enum wmi_force_fw_hang_type { |
| 6013 | WMI_FORCE_FW_HANG_ASSERT = 1, |
| 6014 | WMI_FORCE_FW_HANG_NO_DETECT, |
| 6015 | WMI_FORCE_FW_HANG_CTRL_EP_FULL, |
| 6016 | WMI_FORCE_FW_HANG_EMPTY_POINT, |
| 6017 | WMI_FORCE_FW_HANG_STACK_OVERFLOW, |
| 6018 | WMI_FORCE_FW_HANG_INFINITE_LOOP, |
| 6019 | }; |
| 6020 | |
| 6021 | #define WMI_FORCE_FW_HANG_RANDOM_TIME 0xFFFFFFFF |
| 6022 | |
| 6023 | struct wmi_force_fw_hang_cmd { |
| 6024 | __le32 type; |
| 6025 | __le32 delay_ms; |
| 6026 | } __packed; |
| 6027 | |
Kalle Valo | f118a3e | 2014-01-03 12:59:31 +0200 | [diff] [blame] | 6028 | enum ath10k_dbglog_level { |
| 6029 | ATH10K_DBGLOG_LEVEL_VERBOSE = 0, |
| 6030 | ATH10K_DBGLOG_LEVEL_INFO = 1, |
| 6031 | ATH10K_DBGLOG_LEVEL_WARN = 2, |
| 6032 | ATH10K_DBGLOG_LEVEL_ERR = 3, |
| 6033 | }; |
| 6034 | |
| 6035 | /* VAP ids to enable dbglog */ |
| 6036 | #define ATH10K_DBGLOG_CFG_VAP_LOG_LSB 0 |
| 6037 | #define ATH10K_DBGLOG_CFG_VAP_LOG_MASK 0x0000ffff |
| 6038 | |
| 6039 | /* to enable dbglog in the firmware */ |
| 6040 | #define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_LSB 16 |
| 6041 | #define ATH10K_DBGLOG_CFG_REPORTING_ENABLE_MASK 0x00010000 |
| 6042 | |
| 6043 | /* timestamp resolution */ |
| 6044 | #define ATH10K_DBGLOG_CFG_RESOLUTION_LSB 17 |
| 6045 | #define ATH10K_DBGLOG_CFG_RESOLUTION_MASK 0x000E0000 |
| 6046 | |
| 6047 | /* number of queued messages before sending them to the host */ |
| 6048 | #define ATH10K_DBGLOG_CFG_REPORT_SIZE_LSB 20 |
| 6049 | #define ATH10K_DBGLOG_CFG_REPORT_SIZE_MASK 0x0ff00000 |
| 6050 | |
| 6051 | /* |
| 6052 | * Log levels to enable. This defines the minimum level to enable, this is |
| 6053 | * not a bitmask. See enum ath10k_dbglog_level for the values. |
| 6054 | */ |
| 6055 | #define ATH10K_DBGLOG_CFG_LOG_LVL_LSB 28 |
| 6056 | #define ATH10K_DBGLOG_CFG_LOG_LVL_MASK 0x70000000 |
| 6057 | |
| 6058 | /* |
| 6059 | * Note: this is a cleaned up version of a struct firmware uses. For |
| 6060 | * example, config_valid was hidden inside an array. |
| 6061 | */ |
| 6062 | struct wmi_dbglog_cfg_cmd { |
| 6063 | /* bitmask to hold mod id config*/ |
| 6064 | __le32 module_enable; |
| 6065 | |
| 6066 | /* see ATH10K_DBGLOG_CFG_ */ |
| 6067 | __le32 config_enable; |
| 6068 | |
| 6069 | /* mask of module id bits to be changed */ |
| 6070 | __le32 module_valid; |
| 6071 | |
| 6072 | /* mask of config bits to be changed, see ATH10K_DBGLOG_CFG_ */ |
| 6073 | __le32 config_valid; |
| 6074 | } __packed; |
| 6075 | |
Michal Kazior | c1a4654 | 2015-03-10 16:21:54 +0200 | [diff] [blame] | 6076 | enum wmi_roam_reason { |
| 6077 | WMI_ROAM_REASON_BETTER_AP = 1, |
| 6078 | WMI_ROAM_REASON_BEACON_MISS = 2, |
| 6079 | WMI_ROAM_REASON_LOW_RSSI = 3, |
| 6080 | WMI_ROAM_REASON_SUITABLE_AP_FOUND = 4, |
| 6081 | WMI_ROAM_REASON_HO_FAILED = 5, |
| 6082 | |
| 6083 | /* keep last */ |
| 6084 | WMI_ROAM_REASON_MAX, |
| 6085 | }; |
| 6086 | |
| 6087 | struct wmi_roam_ev { |
| 6088 | __le32 vdev_id; |
| 6089 | __le32 reason; |
| 6090 | } __packed; |
| 6091 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6092 | #define ATH10K_FRAGMT_THRESHOLD_MIN 540 |
| 6093 | #define ATH10K_FRAGMT_THRESHOLD_MAX 2346 |
| 6094 | |
| 6095 | #define WMI_MAX_EVENT 0x1000 |
| 6096 | /* Maximum number of pending TXed WMI packets */ |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6097 | #define WMI_SKB_HEADROOM sizeof(struct wmi_cmd_hdr) |
| 6098 | |
| 6099 | /* By default disable power save for IBSS */ |
| 6100 | #define ATH10K_DEFAULT_ATIM 0 |
| 6101 | |
Michal Kazior | 5c01aa3d | 2014-09-18 15:21:24 +0200 | [diff] [blame] | 6102 | #define WMI_MAX_MEM_REQS 16 |
| 6103 | |
Michal Kazior | 32653cf | 2014-12-03 10:10:26 +0200 | [diff] [blame] | 6104 | struct wmi_scan_ev_arg { |
| 6105 | __le32 event_type; /* %WMI_SCAN_EVENT_ */ |
| 6106 | __le32 reason; /* %WMI_SCAN_REASON_ */ |
| 6107 | __le32 channel_freq; /* only valid for WMI_SCAN_EVENT_FOREIGN_CHANNEL */ |
| 6108 | __le32 scan_req_id; |
| 6109 | __le32 scan_id; |
| 6110 | __le32 vdev_id; |
| 6111 | }; |
| 6112 | |
| 6113 | struct wmi_mgmt_rx_ev_arg { |
| 6114 | __le32 channel; |
| 6115 | __le32 snr; |
| 6116 | __le32 rate; |
| 6117 | __le32 phy_mode; |
| 6118 | __le32 buf_len; |
| 6119 | __le32 status; /* %WMI_RX_STATUS_ */ |
| 6120 | }; |
| 6121 | |
| 6122 | struct wmi_ch_info_ev_arg { |
| 6123 | __le32 err_code; |
| 6124 | __le32 freq; |
| 6125 | __le32 cmd_flags; |
| 6126 | __le32 noise_floor; |
| 6127 | __le32 rx_clear_count; |
| 6128 | __le32 cycle_count; |
Raja Mani | b2297ba | 2015-06-22 20:22:23 +0530 | [diff] [blame] | 6129 | __le32 chan_tx_pwr_range; |
| 6130 | __le32 chan_tx_pwr_tp; |
| 6131 | __le32 rx_frame_count; |
Michal Kazior | 32653cf | 2014-12-03 10:10:26 +0200 | [diff] [blame] | 6132 | }; |
| 6133 | |
| 6134 | struct wmi_vdev_start_ev_arg { |
| 6135 | __le32 vdev_id; |
| 6136 | __le32 req_id; |
| 6137 | __le32 resp_type; /* %WMI_VDEV_RESP_ */ |
| 6138 | __le32 status; |
| 6139 | }; |
| 6140 | |
| 6141 | struct wmi_peer_kick_ev_arg { |
| 6142 | const u8 *mac_addr; |
| 6143 | }; |
| 6144 | |
| 6145 | struct wmi_swba_ev_arg { |
| 6146 | __le32 vdev_map; |
Raja Mani | a03fee3 | 2015-06-22 20:22:20 +0530 | [diff] [blame] | 6147 | struct wmi_tim_info_arg tim_info[WMI_MAX_AP_VDEV]; |
Michal Kazior | 32653cf | 2014-12-03 10:10:26 +0200 | [diff] [blame] | 6148 | const struct wmi_p2p_noa_info *noa_info[WMI_MAX_AP_VDEV]; |
| 6149 | }; |
| 6150 | |
| 6151 | struct wmi_phyerr_ev_arg { |
Raja Mani | 991adf7 | 2015-08-14 11:13:29 +0300 | [diff] [blame] | 6152 | u32 tsf_timestamp; |
| 6153 | u16 freq1; |
| 6154 | u16 freq2; |
| 6155 | u8 rssi_combined; |
| 6156 | u8 chan_width_mhz; |
| 6157 | u8 phy_err_code; |
| 6158 | u16 nf_chains[4]; |
| 6159 | u32 buf_len; |
| 6160 | const u8 *buf; |
| 6161 | u8 hdr_len; |
| 6162 | }; |
| 6163 | |
| 6164 | struct wmi_phyerr_hdr_arg { |
| 6165 | u32 num_phyerrs; |
| 6166 | u32 tsf_l32; |
| 6167 | u32 tsf_u32; |
| 6168 | u32 buf_len; |
| 6169 | const void *phyerrs; |
Michal Kazior | 32653cf | 2014-12-03 10:10:26 +0200 | [diff] [blame] | 6170 | }; |
| 6171 | |
Michal Kazior | 5c01aa3d | 2014-09-18 15:21:24 +0200 | [diff] [blame] | 6172 | struct wmi_svc_rdy_ev_arg { |
| 6173 | __le32 min_tx_power; |
| 6174 | __le32 max_tx_power; |
| 6175 | __le32 ht_cap; |
| 6176 | __le32 vht_cap; |
| 6177 | __le32 sw_ver0; |
| 6178 | __le32 sw_ver1; |
Michal Kazior | ca996ec | 2014-12-03 10:11:32 +0200 | [diff] [blame] | 6179 | __le32 fw_build; |
Michal Kazior | 5c01aa3d | 2014-09-18 15:21:24 +0200 | [diff] [blame] | 6180 | __le32 phy_capab; |
| 6181 | __le32 num_rf_chains; |
| 6182 | __le32 eeprom_rd; |
| 6183 | __le32 num_mem_reqs; |
| 6184 | const __le32 *service_map; |
Michal Kazior | 2a3e60d | 2014-11-27 10:11:15 +0100 | [diff] [blame] | 6185 | size_t service_map_len; |
Michal Kazior | 5c01aa3d | 2014-09-18 15:21:24 +0200 | [diff] [blame] | 6186 | const struct wlan_host_mem_req *mem_reqs[WMI_MAX_MEM_REQS]; |
| 6187 | }; |
| 6188 | |
Michal Kazior | 32653cf | 2014-12-03 10:10:26 +0200 | [diff] [blame] | 6189 | struct wmi_rdy_ev_arg { |
| 6190 | __le32 sw_version; |
| 6191 | __le32 abi_version; |
| 6192 | __le32 status; |
| 6193 | const u8 *mac_addr; |
| 6194 | }; |
| 6195 | |
Michal Kazior | c1a4654 | 2015-03-10 16:21:54 +0200 | [diff] [blame] | 6196 | struct wmi_roam_ev_arg { |
| 6197 | __le32 vdev_id; |
| 6198 | __le32 reason; |
| 6199 | __le32 rssi; |
| 6200 | }; |
| 6201 | |
Rajkumar Manoharan | a57a6a2 | 2014-12-17 12:22:17 +0200 | [diff] [blame] | 6202 | struct wmi_pdev_temperature_event { |
| 6203 | /* temperature value in Celcius degree */ |
| 6204 | __le32 temperature; |
| 6205 | } __packed; |
| 6206 | |
Janusz Dziedzic | f5431e8 | 2015-03-23 17:32:53 +0200 | [diff] [blame] | 6207 | /* WOW structures */ |
| 6208 | enum wmi_wow_wakeup_event { |
| 6209 | WOW_BMISS_EVENT = 0, |
| 6210 | WOW_BETTER_AP_EVENT, |
| 6211 | WOW_DEAUTH_RECVD_EVENT, |
| 6212 | WOW_MAGIC_PKT_RECVD_EVENT, |
| 6213 | WOW_GTK_ERR_EVENT, |
| 6214 | WOW_FOURWAY_HSHAKE_EVENT, |
| 6215 | WOW_EAPOL_RECVD_EVENT, |
| 6216 | WOW_NLO_DETECTED_EVENT, |
| 6217 | WOW_DISASSOC_RECVD_EVENT, |
| 6218 | WOW_PATTERN_MATCH_EVENT, |
| 6219 | WOW_CSA_IE_EVENT, |
| 6220 | WOW_PROBE_REQ_WPS_IE_EVENT, |
| 6221 | WOW_AUTH_REQ_EVENT, |
| 6222 | WOW_ASSOC_REQ_EVENT, |
| 6223 | WOW_HTT_EVENT, |
| 6224 | WOW_RA_MATCH_EVENT, |
| 6225 | WOW_HOST_AUTO_SHUTDOWN_EVENT, |
| 6226 | WOW_IOAC_MAGIC_EVENT, |
| 6227 | WOW_IOAC_SHORT_EVENT, |
| 6228 | WOW_IOAC_EXTEND_EVENT, |
| 6229 | WOW_IOAC_TIMER_EVENT, |
| 6230 | WOW_DFS_PHYERR_RADAR_EVENT, |
| 6231 | WOW_BEACON_EVENT, |
| 6232 | WOW_CLIENT_KICKOUT_EVENT, |
| 6233 | WOW_EVENT_MAX, |
| 6234 | }; |
| 6235 | |
| 6236 | #define C2S(x) case x: return #x |
| 6237 | |
| 6238 | static inline const char *wow_wakeup_event(enum wmi_wow_wakeup_event ev) |
| 6239 | { |
| 6240 | switch (ev) { |
| 6241 | C2S(WOW_BMISS_EVENT); |
| 6242 | C2S(WOW_BETTER_AP_EVENT); |
| 6243 | C2S(WOW_DEAUTH_RECVD_EVENT); |
| 6244 | C2S(WOW_MAGIC_PKT_RECVD_EVENT); |
| 6245 | C2S(WOW_GTK_ERR_EVENT); |
| 6246 | C2S(WOW_FOURWAY_HSHAKE_EVENT); |
| 6247 | C2S(WOW_EAPOL_RECVD_EVENT); |
| 6248 | C2S(WOW_NLO_DETECTED_EVENT); |
| 6249 | C2S(WOW_DISASSOC_RECVD_EVENT); |
| 6250 | C2S(WOW_PATTERN_MATCH_EVENT); |
| 6251 | C2S(WOW_CSA_IE_EVENT); |
| 6252 | C2S(WOW_PROBE_REQ_WPS_IE_EVENT); |
| 6253 | C2S(WOW_AUTH_REQ_EVENT); |
| 6254 | C2S(WOW_ASSOC_REQ_EVENT); |
| 6255 | C2S(WOW_HTT_EVENT); |
| 6256 | C2S(WOW_RA_MATCH_EVENT); |
| 6257 | C2S(WOW_HOST_AUTO_SHUTDOWN_EVENT); |
| 6258 | C2S(WOW_IOAC_MAGIC_EVENT); |
| 6259 | C2S(WOW_IOAC_SHORT_EVENT); |
| 6260 | C2S(WOW_IOAC_EXTEND_EVENT); |
| 6261 | C2S(WOW_IOAC_TIMER_EVENT); |
| 6262 | C2S(WOW_DFS_PHYERR_RADAR_EVENT); |
| 6263 | C2S(WOW_BEACON_EVENT); |
| 6264 | C2S(WOW_CLIENT_KICKOUT_EVENT); |
| 6265 | C2S(WOW_EVENT_MAX); |
| 6266 | default: |
| 6267 | return NULL; |
| 6268 | } |
| 6269 | } |
| 6270 | |
| 6271 | enum wmi_wow_wake_reason { |
| 6272 | WOW_REASON_UNSPECIFIED = -1, |
| 6273 | WOW_REASON_NLOD = 0, |
| 6274 | WOW_REASON_AP_ASSOC_LOST, |
| 6275 | WOW_REASON_LOW_RSSI, |
| 6276 | WOW_REASON_DEAUTH_RECVD, |
| 6277 | WOW_REASON_DISASSOC_RECVD, |
| 6278 | WOW_REASON_GTK_HS_ERR, |
| 6279 | WOW_REASON_EAP_REQ, |
| 6280 | WOW_REASON_FOURWAY_HS_RECV, |
| 6281 | WOW_REASON_TIMER_INTR_RECV, |
| 6282 | WOW_REASON_PATTERN_MATCH_FOUND, |
| 6283 | WOW_REASON_RECV_MAGIC_PATTERN, |
| 6284 | WOW_REASON_P2P_DISC, |
| 6285 | WOW_REASON_WLAN_HB, |
| 6286 | WOW_REASON_CSA_EVENT, |
| 6287 | WOW_REASON_PROBE_REQ_WPS_IE_RECV, |
| 6288 | WOW_REASON_AUTH_REQ_RECV, |
| 6289 | WOW_REASON_ASSOC_REQ_RECV, |
| 6290 | WOW_REASON_HTT_EVENT, |
| 6291 | WOW_REASON_RA_MATCH, |
| 6292 | WOW_REASON_HOST_AUTO_SHUTDOWN, |
| 6293 | WOW_REASON_IOAC_MAGIC_EVENT, |
| 6294 | WOW_REASON_IOAC_SHORT_EVENT, |
| 6295 | WOW_REASON_IOAC_EXTEND_EVENT, |
| 6296 | WOW_REASON_IOAC_TIMER_EVENT, |
| 6297 | WOW_REASON_ROAM_HO, |
| 6298 | WOW_REASON_DFS_PHYERR_RADADR_EVENT, |
| 6299 | WOW_REASON_BEACON_RECV, |
| 6300 | WOW_REASON_CLIENT_KICKOUT_EVENT, |
| 6301 | WOW_REASON_DEBUG_TEST = 0xFF, |
| 6302 | }; |
| 6303 | |
| 6304 | static inline const char *wow_reason(enum wmi_wow_wake_reason reason) |
| 6305 | { |
| 6306 | switch (reason) { |
| 6307 | C2S(WOW_REASON_UNSPECIFIED); |
| 6308 | C2S(WOW_REASON_NLOD); |
| 6309 | C2S(WOW_REASON_AP_ASSOC_LOST); |
| 6310 | C2S(WOW_REASON_LOW_RSSI); |
| 6311 | C2S(WOW_REASON_DEAUTH_RECVD); |
| 6312 | C2S(WOW_REASON_DISASSOC_RECVD); |
| 6313 | C2S(WOW_REASON_GTK_HS_ERR); |
| 6314 | C2S(WOW_REASON_EAP_REQ); |
| 6315 | C2S(WOW_REASON_FOURWAY_HS_RECV); |
| 6316 | C2S(WOW_REASON_TIMER_INTR_RECV); |
| 6317 | C2S(WOW_REASON_PATTERN_MATCH_FOUND); |
| 6318 | C2S(WOW_REASON_RECV_MAGIC_PATTERN); |
| 6319 | C2S(WOW_REASON_P2P_DISC); |
| 6320 | C2S(WOW_REASON_WLAN_HB); |
| 6321 | C2S(WOW_REASON_CSA_EVENT); |
| 6322 | C2S(WOW_REASON_PROBE_REQ_WPS_IE_RECV); |
| 6323 | C2S(WOW_REASON_AUTH_REQ_RECV); |
| 6324 | C2S(WOW_REASON_ASSOC_REQ_RECV); |
| 6325 | C2S(WOW_REASON_HTT_EVENT); |
| 6326 | C2S(WOW_REASON_RA_MATCH); |
| 6327 | C2S(WOW_REASON_HOST_AUTO_SHUTDOWN); |
| 6328 | C2S(WOW_REASON_IOAC_MAGIC_EVENT); |
| 6329 | C2S(WOW_REASON_IOAC_SHORT_EVENT); |
| 6330 | C2S(WOW_REASON_IOAC_EXTEND_EVENT); |
| 6331 | C2S(WOW_REASON_IOAC_TIMER_EVENT); |
| 6332 | C2S(WOW_REASON_ROAM_HO); |
| 6333 | C2S(WOW_REASON_DFS_PHYERR_RADADR_EVENT); |
| 6334 | C2S(WOW_REASON_BEACON_RECV); |
| 6335 | C2S(WOW_REASON_CLIENT_KICKOUT_EVENT); |
| 6336 | C2S(WOW_REASON_DEBUG_TEST); |
| 6337 | default: |
| 6338 | return NULL; |
| 6339 | } |
| 6340 | } |
| 6341 | |
| 6342 | #undef C2S |
| 6343 | |
| 6344 | struct wmi_wow_ev_arg { |
| 6345 | u32 vdev_id; |
| 6346 | u32 flag; |
| 6347 | enum wmi_wow_wake_reason wake_reason; |
| 6348 | u32 data_len; |
| 6349 | }; |
| 6350 | |
Janusz Dziedzic | 25c8661 | 2015-03-23 17:32:54 +0200 | [diff] [blame] | 6351 | #define WOW_MIN_PATTERN_SIZE 1 |
| 6352 | #define WOW_MAX_PATTERN_SIZE 148 |
| 6353 | #define WOW_MAX_PKT_OFFSET 128 |
| 6354 | |
Marek Puzyniak | ad45c88 | 2015-03-30 09:51:53 +0300 | [diff] [blame] | 6355 | enum wmi_tdls_state { |
| 6356 | WMI_TDLS_DISABLE, |
| 6357 | WMI_TDLS_ENABLE_PASSIVE, |
| 6358 | WMI_TDLS_ENABLE_ACTIVE, |
| 6359 | }; |
| 6360 | |
| 6361 | enum wmi_tdls_peer_state { |
| 6362 | WMI_TDLS_PEER_STATE_PEERING, |
| 6363 | WMI_TDLS_PEER_STATE_CONNECTED, |
| 6364 | WMI_TDLS_PEER_STATE_TEARDOWN, |
| 6365 | }; |
| 6366 | |
| 6367 | struct wmi_tdls_peer_update_cmd_arg { |
| 6368 | u32 vdev_id; |
| 6369 | enum wmi_tdls_peer_state peer_state; |
| 6370 | u8 addr[ETH_ALEN]; |
| 6371 | }; |
| 6372 | |
| 6373 | #define WMI_TDLS_MAX_SUPP_OPER_CLASSES 32 |
| 6374 | |
| 6375 | struct wmi_tdls_peer_capab_arg { |
| 6376 | u8 peer_uapsd_queues; |
| 6377 | u8 peer_max_sp; |
| 6378 | u32 buff_sta_support; |
| 6379 | u32 off_chan_support; |
| 6380 | u32 peer_curr_operclass; |
| 6381 | u32 self_curr_operclass; |
| 6382 | u32 peer_chan_len; |
| 6383 | u32 peer_operclass_len; |
| 6384 | u8 peer_operclass[WMI_TDLS_MAX_SUPP_OPER_CLASSES]; |
| 6385 | u32 is_peer_responder; |
| 6386 | u32 pref_offchan_num; |
| 6387 | u32 pref_offchan_bw; |
| 6388 | }; |
| 6389 | |
Vivek Natarajan | 08e75ea | 2015-08-04 10:45:11 +0530 | [diff] [blame] | 6390 | enum wmi_txbf_conf { |
| 6391 | WMI_TXBF_CONF_UNSUPPORTED, |
| 6392 | WMI_TXBF_CONF_BEFORE_ASSOC, |
| 6393 | WMI_TXBF_CONF_AFTER_ASSOC, |
| 6394 | }; |
| 6395 | |
Maharaja | 62f77f0 | 2015-10-21 11:49:18 +0300 | [diff] [blame] | 6396 | #define WMI_CCA_DETECT_LEVEL_AUTO 0 |
| 6397 | #define WMI_CCA_DETECT_MARGIN_AUTO 0 |
| 6398 | |
| 6399 | struct wmi_pdev_set_adaptive_cca_params { |
| 6400 | __le32 enable; |
| 6401 | __le32 cca_detect_level; |
| 6402 | __le32 cca_detect_margin; |
| 6403 | } __packed; |
| 6404 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6405 | struct ath10k; |
| 6406 | struct ath10k_vif; |
Michal Kazior | 0226d60 | 2014-12-03 10:11:22 +0200 | [diff] [blame] | 6407 | struct ath10k_fw_stats_pdev; |
| 6408 | struct ath10k_fw_stats_peer; |
Manikanta Pubbisetty | bc6f9ae | 2015-10-16 15:54:52 +0300 | [diff] [blame] | 6409 | struct ath10k_fw_stats; |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6410 | |
| 6411 | int ath10k_wmi_attach(struct ath10k *ar); |
| 6412 | void ath10k_wmi_detach(struct ath10k *ar); |
Vasanthakumar Thiagarajan | a925a37 | 2015-08-28 17:21:34 +0530 | [diff] [blame] | 6413 | void ath10k_wmi_free_host_mem(struct ath10k *ar); |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6414 | int ath10k_wmi_wait_for_service_ready(struct ath10k *ar); |
| 6415 | int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar); |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6416 | |
Michal Kazior | 0226d60 | 2014-12-03 10:11:22 +0200 | [diff] [blame] | 6417 | struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len); |
Michal Kazior | 95bf21f | 2014-05-16 17:15:39 +0300 | [diff] [blame] | 6418 | int ath10k_wmi_connect(struct ath10k *ar); |
Kalle Valo | 666a73f3 | 2014-09-10 18:23:23 +0300 | [diff] [blame] | 6419 | |
| 6420 | struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len); |
| 6421 | int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id); |
Michal Kazior | d7579d1 | 2014-12-03 10:10:54 +0200 | [diff] [blame] | 6422 | int ath10k_wmi_cmd_send_nowait(struct ath10k *ar, struct sk_buff *skb, |
| 6423 | u32 cmd_id); |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6424 | void ath10k_wmi_start_scan_init(struct ath10k *ar, struct wmi_start_scan_arg *); |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6425 | |
Michal Kazior | b91251f | 2015-01-24 12:14:49 +0200 | [diff] [blame] | 6426 | void ath10k_wmi_pull_pdev_stats_base(const struct wmi_pdev_stats_base *src, |
| 6427 | struct ath10k_fw_stats_pdev *dst); |
| 6428 | void ath10k_wmi_pull_pdev_stats_tx(const struct wmi_pdev_stats_tx *src, |
| 6429 | struct ath10k_fw_stats_pdev *dst); |
| 6430 | void ath10k_wmi_pull_pdev_stats_rx(const struct wmi_pdev_stats_rx *src, |
| 6431 | struct ath10k_fw_stats_pdev *dst); |
| 6432 | void ath10k_wmi_pull_pdev_stats_extra(const struct wmi_pdev_stats_extra *src, |
| 6433 | struct ath10k_fw_stats_pdev *dst); |
Michal Kazior | 0226d60 | 2014-12-03 10:11:22 +0200 | [diff] [blame] | 6434 | void ath10k_wmi_pull_peer_stats(const struct wmi_peer_stats *src, |
| 6435 | struct ath10k_fw_stats_peer *dst); |
| 6436 | void ath10k_wmi_put_host_mem_chunks(struct ath10k *ar, |
| 6437 | struct wmi_host_mem_chunks *chunks); |
| 6438 | void ath10k_wmi_put_start_scan_common(struct wmi_start_scan_common *cmn, |
| 6439 | const struct wmi_start_scan_arg *arg); |
Michal Kazior | 5e752e4 | 2015-01-19 09:53:41 +0100 | [diff] [blame] | 6440 | void ath10k_wmi_set_wmm_param(struct wmi_wmm_params *params, |
| 6441 | const struct wmi_wmm_params_arg *arg); |
Michal Kazior | 0226d60 | 2014-12-03 10:11:22 +0200 | [diff] [blame] | 6442 | void ath10k_wmi_put_wmi_channel(struct wmi_channel *ch, |
| 6443 | const struct wmi_channel_arg *arg); |
| 6444 | int ath10k_wmi_start_scan_verify(const struct wmi_start_scan_arg *arg); |
| 6445 | |
| 6446 | int ath10k_wmi_event_scan(struct ath10k *ar, struct sk_buff *skb); |
| 6447 | int ath10k_wmi_event_mgmt_rx(struct ath10k *ar, struct sk_buff *skb); |
| 6448 | void ath10k_wmi_event_chan_info(struct ath10k *ar, struct sk_buff *skb); |
| 6449 | void ath10k_wmi_event_echo(struct ath10k *ar, struct sk_buff *skb); |
| 6450 | int ath10k_wmi_event_debug_mesg(struct ath10k *ar, struct sk_buff *skb); |
| 6451 | void ath10k_wmi_event_update_stats(struct ath10k *ar, struct sk_buff *skb); |
| 6452 | void ath10k_wmi_event_vdev_start_resp(struct ath10k *ar, struct sk_buff *skb); |
| 6453 | void ath10k_wmi_event_vdev_stopped(struct ath10k *ar, struct sk_buff *skb); |
| 6454 | void ath10k_wmi_event_peer_sta_kickout(struct ath10k *ar, struct sk_buff *skb); |
| 6455 | void ath10k_wmi_event_host_swba(struct ath10k *ar, struct sk_buff *skb); |
| 6456 | void ath10k_wmi_event_tbttoffset_update(struct ath10k *ar, struct sk_buff *skb); |
| 6457 | void ath10k_wmi_event_dfs(struct ath10k *ar, |
Raja Mani | 991adf7 | 2015-08-14 11:13:29 +0300 | [diff] [blame] | 6458 | struct wmi_phyerr_ev_arg *phyerr, u64 tsf); |
Michal Kazior | 0226d60 | 2014-12-03 10:11:22 +0200 | [diff] [blame] | 6459 | void ath10k_wmi_event_spectral_scan(struct ath10k *ar, |
Raja Mani | 991adf7 | 2015-08-14 11:13:29 +0300 | [diff] [blame] | 6460 | struct wmi_phyerr_ev_arg *phyerr, |
Michal Kazior | 0226d60 | 2014-12-03 10:11:22 +0200 | [diff] [blame] | 6461 | u64 tsf); |
| 6462 | void ath10k_wmi_event_phyerr(struct ath10k *ar, struct sk_buff *skb); |
| 6463 | void ath10k_wmi_event_roam(struct ath10k *ar, struct sk_buff *skb); |
| 6464 | void ath10k_wmi_event_profile_match(struct ath10k *ar, struct sk_buff *skb); |
| 6465 | void ath10k_wmi_event_debug_print(struct ath10k *ar, struct sk_buff *skb); |
| 6466 | void ath10k_wmi_event_pdev_qvit(struct ath10k *ar, struct sk_buff *skb); |
| 6467 | void ath10k_wmi_event_wlan_profile_data(struct ath10k *ar, struct sk_buff *skb); |
| 6468 | void ath10k_wmi_event_rtt_measurement_report(struct ath10k *ar, |
| 6469 | struct sk_buff *skb); |
| 6470 | void ath10k_wmi_event_tsf_measurement_report(struct ath10k *ar, |
| 6471 | struct sk_buff *skb); |
| 6472 | void ath10k_wmi_event_rtt_error_report(struct ath10k *ar, struct sk_buff *skb); |
| 6473 | void ath10k_wmi_event_wow_wakeup_host(struct ath10k *ar, struct sk_buff *skb); |
| 6474 | void ath10k_wmi_event_dcs_interference(struct ath10k *ar, struct sk_buff *skb); |
| 6475 | void ath10k_wmi_event_pdev_tpc_config(struct ath10k *ar, struct sk_buff *skb); |
| 6476 | void ath10k_wmi_event_pdev_ftm_intg(struct ath10k *ar, struct sk_buff *skb); |
| 6477 | void ath10k_wmi_event_gtk_offload_status(struct ath10k *ar, |
| 6478 | struct sk_buff *skb); |
| 6479 | void ath10k_wmi_event_gtk_rekey_fail(struct ath10k *ar, struct sk_buff *skb); |
| 6480 | void ath10k_wmi_event_delba_complete(struct ath10k *ar, struct sk_buff *skb); |
| 6481 | void ath10k_wmi_event_addba_complete(struct ath10k *ar, struct sk_buff *skb); |
| 6482 | void ath10k_wmi_event_vdev_install_key_complete(struct ath10k *ar, |
| 6483 | struct sk_buff *skb); |
| 6484 | void ath10k_wmi_event_inst_rssi_stats(struct ath10k *ar, struct sk_buff *skb); |
| 6485 | void ath10k_wmi_event_vdev_standby_req(struct ath10k *ar, struct sk_buff *skb); |
| 6486 | void ath10k_wmi_event_vdev_resume_req(struct ath10k *ar, struct sk_buff *skb); |
| 6487 | void ath10k_wmi_event_service_ready(struct ath10k *ar, struct sk_buff *skb); |
| 6488 | int ath10k_wmi_event_ready(struct ath10k *ar, struct sk_buff *skb); |
Raja Mani | 991adf7 | 2015-08-14 11:13:29 +0300 | [diff] [blame] | 6489 | int ath10k_wmi_op_pull_phyerr_ev(struct ath10k *ar, const void *phyerr_buf, |
| 6490 | int left_len, struct wmi_phyerr_ev_arg *arg); |
Manikanta Pubbisetty | bc6f9ae | 2015-10-16 15:54:52 +0300 | [diff] [blame] | 6491 | void ath10k_wmi_main_op_fw_stats_fill(struct ath10k *ar, |
| 6492 | struct ath10k_fw_stats *fw_stats, |
| 6493 | char *buf); |
| 6494 | void ath10k_wmi_10x_op_fw_stats_fill(struct ath10k *ar, |
| 6495 | struct ath10k_fw_stats *fw_stats, |
| 6496 | char *buf); |
| 6497 | size_t ath10k_wmi_fw_stats_num_peers(struct list_head *head); |
| 6498 | size_t ath10k_wmi_fw_stats_num_vdevs(struct list_head *head); |
Manikanta Pubbisetty | 98dd2b9 | 2015-10-28 21:38:33 +0200 | [diff] [blame] | 6499 | void ath10k_wmi_10_4_op_fw_stats_fill(struct ath10k *ar, |
| 6500 | struct ath10k_fw_stats *fw_stats, |
| 6501 | char *buf); |
Peter Oh | 6e4de1a | 2016-01-28 13:54:10 -0800 | [diff] [blame^] | 6502 | int ath10k_wmi_op_get_vdev_subtype(struct ath10k *ar, |
| 6503 | enum wmi_vdev_subtype subtype); |
Manikanta Pubbisetty | bc6f9ae | 2015-10-16 15:54:52 +0300 | [diff] [blame] | 6504 | |
Kalle Valo | 5e3dd15 | 2013-06-12 20:52:10 +0300 | [diff] [blame] | 6505 | #endif /* _WMI_H_ */ |