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