Linux Audio

Check our new training course

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