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