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