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