Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1 | /* |
Kiran Venkatappa | 4110f0a | 2016-12-27 22:51:29 +0530 | [diff] [blame] | 2 | * Copyright (c) 2016-2017 The Linux Foundation. All rights reserved. |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 3 | * |
| 4 | * Previously licensed under the ISC license by Qualcomm Atheros, Inc. |
| 5 | * |
| 6 | * |
| 7 | * Permission to use, copy, modify, and/or distribute this software for |
| 8 | * any purpose with or without fee is hereby granted, provided that the |
| 9 | * above copyright notice and this permission notice appear in all |
| 10 | * copies. |
| 11 | * |
| 12 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL |
| 13 | * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED |
| 14 | * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE |
| 15 | * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL |
| 16 | * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR |
| 17 | * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
| 18 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
| 19 | * PERFORMANCE OF THIS SOFTWARE. |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * This file was originally distributed by Qualcomm Atheros, Inc. |
| 24 | * under proprietary terms before Copyright ownership was assigned |
| 25 | * to the Linux Foundation. |
| 26 | */ |
| 27 | |
| 28 | /* |
| 29 | * This file contains the API definitions for the Unified Wireless Module |
| 30 | * Interface (WMI). |
| 31 | */ |
| 32 | |
| 33 | #ifndef _WMI_UNIFIED_PARAM_H_ |
| 34 | #define _WMI_UNIFIED_PARAM_H_ |
Padma, Santhosh Kumar | 7352405 | 2016-09-11 18:24:59 +0530 | [diff] [blame] | 35 | |
| 36 | #define MAC_MAX_KEY_LENGTH 32 |
| 37 | #define MAC_PN_LENGTH 8 |
| 38 | #define MAX_MAC_HEADER_LEN 32 |
| 39 | #define MIN_MAC_HEADER_LEN 24 |
| 40 | #define QOS_CONTROL_LEN 2 |
| 41 | |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 42 | #define IEEE80211_ADDR_LEN 6 /* size of 802.11 address */ |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 43 | #define WMI_MAC_MAX_SSID_LENGTH 32 |
| 44 | #define WMI_SCAN_MAX_NUM_SSID 0x0A |
| 45 | #define mgmt_tx_dl_frm_len 64 |
| 46 | #define WMI_SMPS_MASK_LOWER_16BITS 0xFF |
| 47 | #define WMI_SMPS_MASK_UPPER_3BITS 0x7 |
| 48 | #define WMI_SMPS_PARAM_VALUE_S 29 |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 49 | #define WMI_MAX_NUM_ARGS 8 |
Govind Singh | e7b800c | 2016-03-01 15:30:53 +0530 | [diff] [blame] | 50 | /* The size of the utc time in bytes. */ |
| 51 | #define WMI_SIZE_UTC_TIME (10) |
| 52 | /* The size of the utc time error in bytes. */ |
| 53 | #define WMI_SIZE_UTC_TIME_ERROR (5) |
Govind Singh | 9bad000 | 2016-03-01 15:54:59 +0530 | [diff] [blame] | 54 | #define WMI_MCC_MIN_CHANNEL_QUOTA 20 |
| 55 | #define WMI_MCC_MAX_CHANNEL_QUOTA 80 |
| 56 | #define WMI_MCC_MIN_NON_ZERO_CHANNEL_LATENCY 30 |
| 57 | #define WMI_BEACON_TX_BUFFER_SIZE (512) |
| 58 | #define WMI_WIFI_SCANNING_MAC_OUI_LENGTH 3 |
| 59 | #define WMI_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS 64 |
| 60 | #define WMI_RSSI_THOLD_DEFAULT -300 |
| 61 | #define WMI_NLO_FREQ_THRESH 1000 |
| 62 | #define WMI_SEC_TO_MSEC(sec) (sec * 1000) |
| 63 | #define WMI_MSEC_TO_USEC(msec) (msec * 1000) |
| 64 | #define WMI_ETH_LEN 64 |
| 65 | #define WMI_QOS_NUM_TSPEC_MAX 2 |
| 66 | #define WMI_QOS_NUM_AC_MAX 4 |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 67 | #define WMI_IPV4_ADDR_LEN 4 |
| 68 | #define WMI_KEEP_ALIVE_NULL_PKT 1 |
| 69 | #define WMI_KEEP_ALIVE_UNSOLICIT_ARP_RSP 2 |
Himanshu Agarwal | 9efd9bf | 2016-03-09 18:49:18 +0530 | [diff] [blame] | 70 | #define WMI_MAC_MAX_KEY_LENGTH 32 |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 71 | #define WMI_KRK_KEY_LEN 16 |
| 72 | #ifdef WLAN_FEATURE_ROAM_OFFLOAD |
| 73 | #define WMI_BTK_KEY_LEN 32 |
| 74 | #define WMI_ROAM_R0KH_ID_MAX_LEN 48 |
| 75 | #define WMI_ROAM_SCAN_PSK_SIZE 32 |
| 76 | #endif |
| 77 | #define WMI_NOISE_FLOOR_DBM_DEFAULT (-96) |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 78 | #define WMI_EXTSCAN_MAX_HOTLIST_SSIDS 8 |
| 79 | #define WMI_ROAM_MAX_CHANNELS 80 |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 80 | #ifdef FEATURE_WLAN_EXTSCAN |
| 81 | #define WMI_MAX_EXTSCAN_MSG_SIZE 1536 |
| 82 | #define WMI_EXTSCAN_REST_TIME 100 |
| 83 | #define WMI_EXTSCAN_MAX_SCAN_TIME 50000 |
| 84 | #define WMI_EXTSCAN_BURST_DURATION 150 |
| 85 | #endif |
| 86 | #define WMI_SCAN_NPROBES_DEFAULT (2) |
| 87 | #define WMI_SEC_TO_MSEC(sec) (sec * 1000) /* sec to msec */ |
| 88 | #define WMI_MSEC_TO_USEC(msec) (msec * 1000) /* msec to usec */ |
| 89 | #define WMI_NLO_FREQ_THRESH 1000 /* in MHz */ |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 90 | |
| 91 | #define MAX_UTF_EVENT_LENGTH 2048 |
| 92 | #define MAX_WMI_UTF_LEN 252 |
| 93 | #define MAX_WMI_QVIT_LEN 252 |
| 94 | #define THERMAL_LEVELS 4 |
| 95 | #define WMI_HOST_BCN_FLT_MAX_SUPPORTED_IES 256 |
| 96 | #define WMI_HOST_BCN_FLT_MAX_ELEMS_IE_LIST \ |
| 97 | (WMI_HOST_BCN_FLT_MAX_SUPPORTED_IES/32) |
| 98 | #define LTEU_MAX_BINS 10 |
| 99 | #define ATF_ACTIVED_MAX_CLIENTS 50 |
| 100 | #define ATF_ACTIVED_MAX_ATFGROUPS 8 |
| 101 | #define CTL_5G_SIZE 1536 |
| 102 | #define CTL_2G_SIZE 684 |
| 103 | #define MAX_CTL_SIZE (CTL_5G_SIZE > CTL_2G_SIZE ? CTL_5G_SIZE : CTL_2G_SIZE) |
| 104 | #define IEEE80211_MICBUF_SIZE (8+8) |
| 105 | #define IEEE80211_TID_SIZE 17 |
| 106 | #define WME_NUM_AC 4 |
| 107 | #define SMART_ANT_MODE_SERIAL 0 |
| 108 | #define SMART_ANT_MODE_PARALLEL 1 |
| 109 | #define IEEE80211_WEP_NKID 4 /* number of key ids */ |
| 110 | #define WPI_IV_LEN 16 |
| 111 | #define WMI_SCAN_MAX_NUM_BSSID 10 |
| 112 | #define MAX_CHANS 1023 |
| 113 | #define TARGET_OEM_CONFIGURE_LCI 0x0A |
| 114 | #define RTT_LCI_ALTITUDE_MASK 0x3FFFFFFF |
| 115 | #define TARGET_OEM_CONFIGURE_LCR 0x09 |
| 116 | #define RTT_TIMEOUT_MS 180 |
| 117 | #define MAX_SUPPORTED_RATES 128 |
| 118 | #define WMI_HOST_MAX_BUFFER_SIZE 1712 |
Govind Singh | 41da315 | 2016-05-06 20:20:25 +0530 | [diff] [blame] | 119 | #define WMI_HAL_MAX_SANTENNA 4 |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 120 | #define WMI_HOST_PDEV_VI_PRIORITY_BIT (1<<2) |
| 121 | #define WMI_HOST_PDEV_BEACON_PRIORITY_BIT (1<<4) |
| 122 | #define WMI_HOST_PDEV_MGMT_PRIORITY_BIT (1<<5) |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 123 | |
Govind Singh | ec1401a | 2016-07-08 19:00:56 +0530 | [diff] [blame] | 124 | #define FIPS_ALIGN 4 |
Kiran Venkatappa | 9f5fcc0 | 2016-12-29 22:07:14 +0530 | [diff] [blame] | 125 | #define FIPS_ALIGNTO(__addr, __to) \ |
| 126 | ((((unsigned long int)(__addr)) + (__to) - 1) & ~((__to) - 1)) |
| 127 | #define FIPS_IS_ALIGNED(__addr, __to) \ |
| 128 | (!(((unsigned long int)(__addr)) & ((__to)-1))) |
Govind Singh | ec1401a | 2016-07-08 19:00:56 +0530 | [diff] [blame] | 129 | |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 130 | #define WMI_HOST_MAX_SERIAL_ANTENNA 2 |
| 131 | #define WMI_SMART_ANT_MAX_RATE_SERIES 2 |
| 132 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 133 | #define WMI_HOST_F_MS(_v, _f) \ |
| 134 | (((_v) & (_f)) >> (_f##_S)) |
| 135 | |
| 136 | #define WMI_HOST_F_RMW(_var, _v, _f) \ |
| 137 | do { \ |
| 138 | (_var) &= ~(_f); \ |
| 139 | (_var) |= (((_v) << (_f##_S)) & (_f)); \ |
| 140 | } while (0) |
| 141 | |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 142 | /* vdev capabilities bit mask */ |
| 143 | #define WMI_HOST_VDEV_BEACON_SUPPORT 0x1 |
| 144 | #define WMI_HOST_VDEV_WDS_LRN_ENABLED 0x2 |
| 145 | #define WMI_HOST_VDEV_VOW_ENABLED 0x4 |
| 146 | #define WMI_HOST_VDEV_IS_BEACON_SUPPORTED(param) \ |
| 147 | ((param) & WMI_HOST_VDEV_BEACON_SUPPORT) |
| 148 | #define WMI_HOST_VDEV_IS_WDS_LRN_ENABLED(param) \ |
| 149 | ((param) & WMI_HOST_VDEV_WDS_LRN_ENABLED) |
| 150 | #define WMI_HOST_VDEV_IS_VOW_ENABLED(param) \ |
| 151 | ((param) & WMI_HOST_VDEV_VOW_ENABLED) |
| 152 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 153 | /* TXBF capabilities masks */ |
| 154 | #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_S 0 |
| 155 | #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_M 0x1 |
| 156 | #define WMI_HOST_TXBF_CONF_SU_TX_BFEE \ |
| 157 | (WMI_HOST_TXBF_CONF_SU_TX_BFEE_M << WMI_HOST_TXBF_CONF_SU_TX_BFEE_S) |
| 158 | #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_GET(x) \ |
| 159 | WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_SU_TX_BFEE) |
| 160 | #define WMI_HOST_TXBF_CONF_SU_TX_BFEE_SET(x, z) \ |
| 161 | WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_SU_TX_BFEE) |
| 162 | |
| 163 | #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_S 1 |
| 164 | #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_M 0x1 |
| 165 | #define WMI_HOST_TXBF_CONF_MU_TX_BFEE \ |
| 166 | (WMI_HOST_TXBF_CONF_MU_TX_BFEE_M << WMI_HOST_TXBF_CONF_MU_TX_BFEE_S) |
| 167 | #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_GET(x) \ |
| 168 | WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_MU_TX_BFEE) |
| 169 | #define WMI_HOST_TXBF_CONF_MU_TX_BFEE_SET(x, z) \ |
| 170 | WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_MU_TX_BFEE) |
| 171 | |
| 172 | #define WMI_HOST_TXBF_CONF_SU_TX_BFER_S 2 |
| 173 | #define WMI_HOST_TXBF_CONF_SU_TX_BFER_M 0x1 |
| 174 | #define WMI_HOST_TXBF_CONF_SU_TX_BFER \ |
| 175 | (WMI_HOST_TXBF_CONF_SU_TX_BFER_M << WMI_HOST_TXBF_CONF_SU_TX_BFER_S) |
| 176 | #define WMI_HOST_TXBF_CONF_SU_TX_BFER_GET(x) \ |
| 177 | WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_SU_TX_BFER) |
| 178 | #define WMI_HOST_TXBF_CONF_SU_TX_BFER_SET(x, z) \ |
| 179 | WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_SU_TX_BFER) |
| 180 | |
| 181 | #define WMI_HOST_TXBF_CONF_MU_TX_BFER_S 3 |
| 182 | #define WMI_HOST_TXBF_CONF_MU_TX_BFER_M 0x1 |
| 183 | #define WMI_HOST_TXBF_CONF_MU_TX_BFER \ |
| 184 | (WMI_HOST_TXBF_CONF_MU_TX_BFER_M << WMI_HOST_TXBF_CONF_MU_TX_BFER_S) |
| 185 | #define WMI_HOST_TXBF_CONF_MU_TX_BFER_GET(x) \ |
| 186 | WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_MU_TX_BFER) |
| 187 | #define WMI_HOST_TXBF_CONF_MU_TX_BFER_SET(x, z) \ |
| 188 | WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_MU_TX_BFER) |
| 189 | |
| 190 | #define WMI_HOST_TXBF_CONF_STS_CAP_S 4 |
| 191 | #define WMI_HOST_TXBF_CONF_STS_CAP_M 0x7 |
| 192 | #define WMI_HOST_TXBF_CONF_STS_CAP \ |
| 193 | (WMI_HOST_TXBF_CONF_STS_CAP_M << WMI_HOST_TXBF_CONF_STS_CAP_S) |
| 194 | #define WMI_HOST_TXBF_CONF_STS_CAP_GET(x) \ |
| 195 | WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_STS_CAP); |
| 196 | #define WMI_HOST_TXBF_CONF_STS_CAP_SET(x, z) \ |
| 197 | WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_STS_CAP) |
| 198 | |
| 199 | #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_S 7 |
| 200 | #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_M 0x1 |
| 201 | #define WMI_HOST_TXBF_CONF_IMPLICIT_BF \ |
| 202 | (WMI_HOST_TXBF_CONF_IMPLICIT_BF_M << WMI_HOST_TXBF_CONF_IMPLICIT_BF_S) |
| 203 | #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_GET(x) \ |
| 204 | WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_IMPLICIT_BF) |
| 205 | #define WMI_HOST_TXBF_CONF_IMPLICIT_BF_SET(x, z) \ |
| 206 | WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_IMPLICIT_BF) |
| 207 | |
| 208 | #define WMI_HOST_TXBF_CONF_BF_SND_DIM_S 8 |
| 209 | #define WMI_HOST_TXBF_CONF_BF_SND_DIM_M 0x7 |
| 210 | #define WMI_HOST_TXBF_CONF_BF_SND_DIM \ |
| 211 | (WMI_HOST_TXBF_CONF_BF_SND_DIM_M << WMI_HOST_TXBF_CONF_BF_SND_DIM_S) |
| 212 | #define WMI_HOST_TXBF_CONF_BF_SND_DIM_GET(x) \ |
| 213 | WMI_HOST_F_MS(x, WMI_HOST_TXBF_CONF_BF_SND_DIM) |
| 214 | #define WMI_HOST_TXBF_CONF_BF_SND_DIM_SET(x, z) \ |
| 215 | WMI_HOST_F_RMW(x, z, WMI_HOST_TXBF_CONF_BF_SND_DIM) |
| 216 | |
| 217 | #define WMI_HOST_TPC_RATE_MAX 160 |
| 218 | #define WMI_HOST_TPC_TX_NUM_CHAIN 4 |
| 219 | #define WMI_HOST_RXG_CAL_CHAN_MAX 4 |
| 220 | #define WMI_HOST_MAX_NUM_CHAINS 4 |
Poddar, Siddarth | 794b996 | 2016-04-28 15:49:11 +0530 | [diff] [blame] | 221 | #define WMI_MAX_NUM_OF_RATE_THRESH 4 |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 222 | |
Sathish Kumar | 907a746 | 2017-02-27 10:35:40 +0530 | [diff] [blame] | 223 | #define WMI_HOST_PDEV_MAX_VDEVS 17 |
| 224 | |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 225 | /* for QC98XX only */ |
| 226 | /*6 modes (A, HT20, HT40, VHT20, VHT40, VHT80) * 3 reg dommains |
| 227 | */ |
| 228 | #define WMI_HOST_NUM_CTLS_5G 18 |
| 229 | /*6 modes (B, G, HT20, HT40, VHT20, VHT40) * 3 reg domains */ |
| 230 | #define WMI_HOST_NUM_CTLS_2G 18 |
| 231 | #define WMI_HOST_NUM_BAND_EDGES_5G 8 |
| 232 | #define WMI_HOST_NUM_BAND_EDGES_2G 4 |
| 233 | |
| 234 | /*Beelinier 5G*/ |
| 235 | #define WMI_HOST_NUM_CTLS_5G_11A 9 |
| 236 | #define WMI_HOST_NUM_BAND_EDGES_5G_11A 25 |
| 237 | #define WMI_HOST_NUM_CTLS_5G_HT20 24 |
| 238 | #define WMI_HOST_NUM_BAND_EDGES_5G_HT20 25 |
| 239 | #define WMI_HOST_NUM_CTLS_5G_HT40 18 |
| 240 | #define WMI_HOST_NUM_BAND_EDGES_5G_HT40 12 |
| 241 | #define WMI_HOST_NUM_CTLS_5G_HT80 18 |
| 242 | #define WMI_HOST_NUM_BAND_EDGES_5G_HT80 6 |
| 243 | #define WMI_HOST_NUM_CTLS_5G_HT160 9 |
| 244 | #define WMI_HOST_NUM_BAND_EDGES_5G_HT160 2 |
| 245 | |
| 246 | /* Beeliner 2G */ |
| 247 | #define WMI_HOST_NUM_CTLS_2G_11B 6 |
| 248 | #define WMI_HOST_NUM_BAND_EDGES_2G_11B 9 |
| 249 | #define WMI_HOST_NUM_CTLS_2G_20MHZ 30 |
| 250 | #define WMI_HOST_NUM_BAND_EDGES_2G_20MHZ 11 |
| 251 | #define WMI_HOST_NUM_CTLS_2G_40MHZ 18 |
| 252 | #define WMI_HOST_NUM_BAND_EDGES_2G_40MHZ 6 |
| 253 | |
| 254 | /* for QC98XX only */ |
| 255 | #define WMI_HOST_TX_NUM_CHAIN 0x3 |
| 256 | #define WMI_HOST_TPC_REGINDEX_MAX 4 |
| 257 | #define WMI_HOST_ARRAY_GAIN_NUM_STREAMS 2 |
| 258 | |
Himanshu Agarwal | 7e4f4bc | 2016-03-09 16:49:38 +0530 | [diff] [blame] | 259 | #include "qdf_atomic.h" |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 260 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 261 | #ifdef BIG_ENDIAN_HOST |
| 262 | /* This API is used in copying in elements to WMI message, |
| 263 | since WMI message uses multilpes of 4 bytes, This API |
| 264 | converts length into multiples of 4 bytes, and performs copy |
| 265 | */ |
| 266 | #define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) do { \ |
| 267 | int j; \ |
| 268 | u_int32_t *src, *dest; \ |
| 269 | src = (u_int32_t *)srcp; \ |
| 270 | dest = (u_int32_t *)destp; \ |
| 271 | for (j = 0; j < roundup(len, sizeof(u_int32_t))/4; j++) { \ |
| 272 | *(dest+j) = qdf_le32_to_cpu(*(src+j)); \ |
| 273 | } \ |
| 274 | } while (0) |
| 275 | #else |
| 276 | |
| 277 | #define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) OS_MEMCPY(destp,\ |
| 278 | srcp, len) |
| 279 | |
| 280 | #endif |
| 281 | |
| 282 | /** macro to convert MAC address from WMI word format to char array */ |
| 283 | #define WMI_HOST_MAC_ADDR_TO_CHAR_ARRAY(pwmi_mac_addr, c_macaddr) do { \ |
| 284 | (c_macaddr)[0] = ((pwmi_mac_addr)->mac_addr31to0) & 0xff; \ |
| 285 | (c_macaddr)[1] = (((pwmi_mac_addr)->mac_addr31to0) >> 8) & 0xff; \ |
| 286 | (c_macaddr)[2] = (((pwmi_mac_addr)->mac_addr31to0) >> 16) & 0xff; \ |
| 287 | (c_macaddr)[3] = (((pwmi_mac_addr)->mac_addr31to0) >> 24) & 0xff; \ |
| 288 | (c_macaddr)[4] = ((pwmi_mac_addr)->mac_addr47to32) & 0xff; \ |
| 289 | (c_macaddr)[5] = (((pwmi_mac_addr)->mac_addr47to32) >> 8) & 0xff; \ |
| 290 | } while (0) |
| 291 | |
| 292 | #define TARGET_INIT_STATUS_SUCCESS 0x0 |
| 293 | #define TARGET_INIT_STATUS_GEN_FAILED 0x1 |
| 294 | #define TARGET_GET_INIT_STATUS_REASON(status) ((status) & 0xffff) |
| 295 | #define TARGET_GET_INIT_STATUS_MODULE_ID(status) (((status) >> 16) & 0xffff) |
Selvaraj, Sridhar | 0a1427f | 2016-07-04 21:40:23 +0530 | [diff] [blame] | 296 | |
| 297 | #define MAX_ASSOC_IE_LENGTH 1024 |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 298 | typedef uint32_t TARGET_INIT_STATUS; |
| 299 | |
| 300 | typedef enum { |
| 301 | WMI_HOST_MODE_11A = 0, /* 11a Mode */ |
| 302 | WMI_HOST_MODE_11G = 1, /* 11b/g Mode */ |
| 303 | WMI_HOST_MODE_11B = 2, /* 11b Mode */ |
| 304 | WMI_HOST_MODE_11GONLY = 3, /* 11g only Mode */ |
| 305 | WMI_HOST_MODE_11NA_HT20 = 4, /* 11a HT20 mode */ |
| 306 | WMI_HOST_MODE_11NG_HT20 = 5, /* 11g HT20 mode */ |
| 307 | WMI_HOST_MODE_11NA_HT40 = 6, /* 11a HT40 mode */ |
| 308 | WMI_HOST_MODE_11NG_HT40 = 7, /* 11g HT40 mode */ |
| 309 | WMI_HOST_MODE_11AC_VHT20 = 8, |
| 310 | WMI_HOST_MODE_11AC_VHT40 = 9, |
| 311 | WMI_HOST_MODE_11AC_VHT80 = 10, |
| 312 | WMI_HOST_MODE_11AC_VHT20_2G = 11, |
| 313 | WMI_HOST_MODE_11AC_VHT40_2G = 12, |
| 314 | WMI_HOST_MODE_11AC_VHT80_2G = 13, |
| 315 | WMI_HOST_MODE_11AC_VHT80_80 = 14, |
| 316 | WMI_HOST_MODE_11AC_VHT160 = 15, |
Krishna Rao | c5a97ba | 2017-01-12 18:05:02 +0530 | [diff] [blame] | 317 | WMI_HOST_MODE_11AX_HE20 = 16, |
| 318 | WMI_HOST_MODE_11AX_HE40 = 17, |
| 319 | WMI_HOST_MODE_11AX_HE80 = 18, |
| 320 | WMI_HOST_MODE_11AX_HE80_80 = 19, |
| 321 | WMI_HOST_MODE_11AX_HE160 = 20, |
| 322 | WMI_HOST_MODE_11AX_HE20_2G = 21, |
| 323 | WMI_HOST_MODE_11AX_HE40_2G = 22, |
| 324 | WMI_HOST_MODE_11AX_HE80_2G = 23, |
| 325 | WMI_HOST_MODE_UNKNOWN = 24, |
| 326 | WMI_HOST_MODE_MAX = 24 |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 327 | } WMI_HOST_WLAN_PHY_MODE; |
| 328 | |
Sathish Kumar | 753eb7d | 2016-10-25 18:47:52 +0530 | [diff] [blame] | 329 | typedef enum { |
| 330 | WMI_HOST_VDEV_START_OK = 0, |
| 331 | WMI_HOST_VDEV_START_CHAN_INVALID, |
| 332 | } WMI_HOST_VDEV_START_STATUS; |
| 333 | |
| 334 | /* |
| 335 | * Needs to be removed and use channel_param based |
| 336 | * on how it is processed |
| 337 | */ |
| 338 | typedef struct { |
| 339 | /** primary 20 MHz channel frequency in mhz */ |
| 340 | uint32_t mhz; |
| 341 | /** Center frequency 1 in MHz*/ |
| 342 | uint32_t band_center_freq1; |
| 343 | /** Center frequency 2 in MHz - valid only for 11acvht 80plus80 mode*/ |
| 344 | uint32_t band_center_freq2; |
| 345 | /** channel info described below */ |
| 346 | uint32_t info; |
| 347 | /** contains min power, max power, reg power and reg class id. */ |
| 348 | uint32_t reg_info_1; |
| 349 | /** contains antennamax */ |
| 350 | uint32_t reg_info_2; |
| 351 | } wmi_host_channel; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 352 | |
Gupta, Kapil | 7b76800 | 2016-04-25 19:14:19 +0530 | [diff] [blame] | 353 | /** |
Pratik Gandhi | 74ff2e5 | 2017-01-05 19:38:41 +0530 | [diff] [blame] | 354 | * enum WMI_HOST_REGDMN_MODE: |
| 355 | * @WMI_HOST_REGDMN_MODE_11A: 11a channels |
| 356 | * @WMI_HOST_REGDMN_MODE_TURBO: 11a turbo-only channels |
| 357 | * @WMI_HOST_REGDMN_MODE_11B: 11b channels |
| 358 | * @WMI_HOST_REGDMN_MODE_PUREG: 11g channels (OFDM only) |
| 359 | * @WMI_HOST_REGDMN_MODE_11G: historical |
| 360 | * @WMI_HOST_REGDMN_MODE_108G: 11g+Turbo channels |
| 361 | * @WMI_HOST_REGDMN_MODE_108A: 11a+Turbo channels |
| 362 | * @WMI_HOST_REGDMN_MODE_XR: XR channels |
| 363 | * @WMI_HOST_REGDMN_MODE_11A_HALF_RATE: 11a half rate channels |
| 364 | * @WMI_HOST_REGDMN_MODE_11A_QUARTER_RATE: 11a quarter rate channels |
| 365 | * @WMI_HOST_REGDMN_MODE_11NG_HT20: 11ng HT20 channels |
| 366 | * @WMI_HOST_REGDMN_MODE_11NA_HT20: 11na HT20 channels |
| 367 | * @WMI_HOST_REGDMN_MODE_11NG_HT40PLUS: 11ng HT40+ channels |
| 368 | * @WMI_HOST_REGDMN_MODE_11NG_HT40MINUS: 11ng HT40- channels |
| 369 | * @WMI_HOST_REGDMN_MODE_11NA_HT40PLUS: 11na HT40+ channels |
| 370 | * @WMI_HOST_REGDMN_MODE_11NA_HT40MINUS: 11na HT40- channels |
| 371 | * @WMI_HOST_REGDMN_MODE_11AC_VHT20: 5GHz, VHT20 |
| 372 | * @WMI_HOST_REGDMN_MODE_11AC_VHT40PLUS: 5GHz, VHT40+ channels |
| 373 | * @WMI_HOST_REGDMN_MODE_11AC_VHT40MINUS: 5GHz, VHT40- channels |
| 374 | * @WMI_HOST_REGDMN_MODE_11AC_VHT80: 5GHz, VHT80 channels |
| 375 | * @WMI_HOST_REGDMN_MODE_11AC_VHT160: 5GHz, VHT160 channels |
| 376 | * @WMI_HOST_REGDMN_MODE_11AC_VHT80_80: 5GHz, VHT80+80 channels |
| 377 | * @WMI_HOST_REGDMN_MODE_11AXG_HE20: 11ax 2.4GHz, HE20 channels |
| 378 | * @WMI_HOST_REGDMN_MODE_11AXA_HE20: 11ax 5GHz, HE20 channels |
| 379 | * @WMI_HOST_REGDMN_MODE_11AXG_HE40PLUS: 11ax 2.4GHz, HE40+ channels |
| 380 | * @WMI_HOST_REGDMN_MODE_11AXG_HE40MINUS: 11ax 2.4GHz, HE40- channels |
| 381 | * @WMI_HOST_REGDMN_MODE_11AXA_HE40PLUS: 11ax 5GHz, HE40+ channels |
| 382 | * @WMI_HOST_REGDMN_MODE_11AXA_HE40MINUS: 11ax 5GHz, HE40- channels |
| 383 | * @WMI_HOST_REGDMN_MODE_11AXA_HE80: 11ax 5GHz, HE80 channels |
| 384 | * @WMI_HOST_REGDMN_MODE_11AXA_HE160: 11ax 5GHz, HE160 channels |
| 385 | * @WMI_HOST_REGDMN_MODE_11AXA_HE80_80: 11ax 5GHz, HE80+80 channels |
| 386 | */ |
| 387 | typedef enum { |
| 388 | WMI_HOST_REGDMN_MODE_11A = 0x00000001, |
| 389 | WMI_HOST_REGDMN_MODE_TURBO = 0x00000002, |
| 390 | WMI_HOST_REGDMN_MODE_11B = 0x00000004, |
| 391 | WMI_HOST_REGDMN_MODE_PUREG = 0x00000008, |
| 392 | WMI_HOST_REGDMN_MODE_11G = 0x00000008, |
| 393 | WMI_HOST_REGDMN_MODE_108G = 0x00000020, |
| 394 | WMI_HOST_REGDMN_MODE_108A = 0x00000040, |
| 395 | WMI_HOST_REGDMN_MODE_XR = 0x00000100, |
| 396 | WMI_HOST_REGDMN_MODE_11A_HALF_RATE = 0x00000200, |
| 397 | WMI_HOST_REGDMN_MODE_11A_QUARTER_RATE = 0x00000400, |
| 398 | WMI_HOST_REGDMN_MODE_11NG_HT20 = 0x00000800, |
| 399 | WMI_HOST_REGDMN_MODE_11NA_HT20 = 0x00001000, |
| 400 | WMI_HOST_REGDMN_MODE_11NG_HT40PLUS = 0x00002000, |
| 401 | WMI_HOST_REGDMN_MODE_11NG_HT40MINUS = 0x00004000, |
| 402 | WMI_HOST_REGDMN_MODE_11NA_HT40PLUS = 0x00008000, |
| 403 | WMI_HOST_REGDMN_MODE_11NA_HT40MINUS = 0x00010000, |
| 404 | WMI_HOST_REGDMN_MODE_11AC_VHT20 = 0x00020000, |
| 405 | WMI_HOST_REGDMN_MODE_11AC_VHT40PLUS = 0x00040000, |
| 406 | WMI_HOST_REGDMN_MODE_11AC_VHT40MINUS = 0x00080000, |
| 407 | WMI_HOST_REGDMN_MODE_11AC_VHT80 = 0x00100000, |
| 408 | WMI_HOST_REGDMN_MODE_11AC_VHT160 = 0x00200000, |
| 409 | WMI_HOST_REGDMN_MODE_11AC_VHT80_80 = 0x00400000, |
| 410 | WMI_HOST_REGDMN_MODE_11AXG_HE20 = 0x00800000, |
| 411 | WMI_HOST_REGDMN_MODE_11AXA_HE20 = 0x01000000, |
| 412 | WMI_HOST_REGDMN_MODE_11AXG_HE40PLUS = 0x02000000, |
| 413 | WMI_HOST_REGDMN_MODE_11AXG_HE40MINUS = 0x04000000, |
| 414 | WMI_HOST_REGDMN_MODE_11AXA_HE40PLUS = 0x08000000, |
| 415 | WMI_HOST_REGDMN_MODE_11AXA_HE40MINUS = 0x10000000, |
| 416 | WMI_HOST_REGDMN_MODE_11AXA_HE80 = 0x20000000, |
| 417 | WMI_HOST_REGDMN_MODE_11AXA_HE160 = 0x40000000, |
| 418 | WMI_HOST_REGDMN_MODE_11AXA_HE80_80 = 0x80000000, |
| 419 | WMI_HOST_REGDMN_MODE_ALL = 0xffffffff |
| 420 | } WMI_HOST_REGDMN_MODE; |
| 421 | |
| 422 | /** |
Krishna Rao | 7462a8a | 2017-02-13 15:14:11 +0530 | [diff] [blame] | 423 | * enum WMI_HOST_WLAN_BAND_CAPABILITY: Band capability (2.4 GHz, 5 GHz). Maps to |
| 424 | * WLAN_BAND_CAPABILITY used in firmware header file(s). |
| 425 | * @WMI_HOST_WLAN_2G_CAPABILITY: 2.4 GHz capable |
| 426 | * @WMI_HOST_WLAN_5G_CAPABILITY: 5 GHz capable |
| 427 | */ |
| 428 | typedef enum { |
| 429 | WMI_HOST_WLAN_2G_CAPABILITY = 0x1, |
| 430 | WMI_HOST_WLAN_5G_CAPABILITY = 0x2, |
| 431 | } WMI_HOST_WLAN_BAND_CAPABILITY; |
| 432 | |
| 433 | /** |
| 434 | * enum wmi_host_channel_width: Channel operating width. Maps to |
| 435 | * wmi_channel_width used in firmware header file(s). |
| 436 | * @WMI_HOST_CHAN_WIDTH_20: 20 MHz channel operating width |
| 437 | * @WMI_HOST_CHAN_WIDTH_40: 40 MHz channel operating width |
| 438 | * @WMI_HOST_CHAN_WIDTH_80: 80 MHz channel operating width |
| 439 | * @WMI_HOST_CHAN_WIDTH_160: 160 MHz channel operating width |
| 440 | * @WMI_HOST_CHAN_WIDTH_80P80: 80+80 MHz channel operating width |
| 441 | * @WMI_HOST_CHAN_WIDTH_5: 5 MHz channel operating width |
| 442 | * @WMI_HOST_CHAN_WIDTH_10: 10 MHz channel operating width |
| 443 | */ |
| 444 | typedef enum { |
| 445 | WMI_HOST_CHAN_WIDTH_20 = 0, |
| 446 | WMI_HOST_CHAN_WIDTH_40 = 1, |
| 447 | WMI_HOST_CHAN_WIDTH_80 = 2, |
| 448 | WMI_HOST_CHAN_WIDTH_160 = 3, |
| 449 | WMI_HOST_CHAN_WIDTH_80P80 = 4, |
| 450 | WMI_HOST_CHAN_WIDTH_5 = 5, |
| 451 | WMI_HOST_CHAN_WIDTH_10 = 6, |
| 452 | } wmi_host_channel_width; |
| 453 | |
| 454 | /** |
Gupta, Kapil | 7b76800 | 2016-04-25 19:14:19 +0530 | [diff] [blame] | 455 | * enum wmi_dwelltime_adaptive_mode: dwelltime_mode |
| 456 | * @WMI_DWELL_MODE_DEFAULT: Use firmware default mode |
| 457 | * @WMI_DWELL_MODE_CONSERVATIVE: Conservative adaptive mode |
| 458 | * @WMI_DWELL_MODE_MODERATE: Moderate adaptive mode |
| 459 | * @WMI_DWELL_MODE_AGGRESSIVE: Aggressive adaptive mode |
| 460 | * @WMI_DWELL_MODE_STATIC: static adaptive mode |
| 461 | */ |
| 462 | enum wmi_dwelltime_adaptive_mode { |
| 463 | WMI_DWELL_MODE_DEFAULT = 0, |
| 464 | WMI_DWELL_MODE_CONSERVATIVE = 1, |
| 465 | WMI_DWELL_MODE_MODERATE = 2, |
| 466 | WMI_DWELL_MODE_AGGRESSIVE = 3, |
| 467 | WMI_DWELL_MODE_STATIC = 4 |
| 468 | }; |
| 469 | |
Manishekar Chandrasekaran | b8c5938 | 2016-04-21 19:16:32 +0530 | [diff] [blame] | 470 | #define MAX_NUM_CHAN 128 |
| 471 | |
Govind Singh | c7cd2d6 | 2016-06-21 14:33:26 +0530 | [diff] [blame] | 472 | /* WME stream classes */ |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 473 | #define WMI_HOST_AC_BE 0 /* best effort */ |
| 474 | #define WMI_HOST_AC_BK 1 /* background */ |
| 475 | #define WMI_HOST_AC_VI 2 /* video */ |
| 476 | #define WMI_HOST_AC_VO 3 /* voice */ |
Govind Singh | c7cd2d6 | 2016-06-21 14:33:26 +0530 | [diff] [blame] | 477 | #define WMI_TID_TO_AC(_tid) (\ |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 478 | (((_tid) == 0) || ((_tid) == 3)) ? WMI_HOST_AC_BE : \ |
| 479 | (((_tid) == 1) || ((_tid) == 2)) ? WMI_HOST_AC_BK : \ |
| 480 | (((_tid) == 4) || ((_tid) == 5)) ? WMI_HOST_AC_VI : \ |
| 481 | WMI_HOST_AC_VO) |
Govind Singh | c7cd2d6 | 2016-06-21 14:33:26 +0530 | [diff] [blame] | 482 | |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 483 | /** |
| 484 | * struct vdev_create_params - vdev create cmd parameter |
| 485 | * @if_id: interface id |
| 486 | * @type: interface type |
| 487 | * @subtype: interface subtype |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 488 | * @nss_2g: NSS for 2G |
| 489 | * @nss_5g: NSS for 5G |
| 490 | * @pdev_id: pdev id on pdev for this vdev |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 491 | */ |
| 492 | struct vdev_create_params { |
| 493 | uint8_t if_id; |
| 494 | uint32_t type; |
| 495 | uint32_t subtype; |
Kiran Kumar Lokere | 0ae9fb9 | 2016-05-02 12:32:27 -0700 | [diff] [blame] | 496 | uint8_t nss_2g; |
| 497 | uint8_t nss_5g; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 498 | uint32_t pdev_id; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 499 | }; |
| 500 | |
| 501 | /** |
| 502 | * struct vdev_delete_params - vdev delete cmd parameter |
| 503 | * @if_id: interface id |
| 504 | */ |
| 505 | struct vdev_delete_params { |
| 506 | uint8_t if_id; |
| 507 | }; |
| 508 | |
| 509 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 510 | * struct channel_param - Channel paramters with all |
| 511 | * info required by target. |
| 512 | * @chan_id: channel id |
| 513 | * @pwr: channel power |
| 514 | * @mhz: channel frequency |
| 515 | * @half_rate: is half rate |
| 516 | * @quarter_rate: is quarter rate |
| 517 | * @dfs_set: is dfs channel |
| 518 | * @dfs_set_cfreq2: is secondary freq dfs channel |
| 519 | * @is_chan_passive: is this passive channel |
| 520 | * @allow_ht: HT allowed in chan |
| 521 | * @allow_vht: VHT allowed on chan |
Nandha Kishore Easwaran | 3f1115a | 2016-11-10 16:01:07 +0530 | [diff] [blame] | 522 | * @set_agile: is agile mode |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 523 | * @phy_mode: phymode (vht80 or ht40 or ...) |
| 524 | * @cfreq1: centre frequency on primary |
| 525 | * @cfreq2: centre frequency on secondary |
| 526 | * @maxpower: max power for channel |
| 527 | * @minpower: min power for channel |
| 528 | * @maxreqpower: Max regulatory power |
| 529 | * @antennamac: Max antenna |
| 530 | * @reg_class_id: Regulatory class id. |
| 531 | */ |
| 532 | |
| 533 | struct channel_param { |
| 534 | uint8_t chan_id; |
| 535 | uint8_t pwr; |
| 536 | uint32_t mhz; |
| 537 | uint32_t half_rate:1, |
| 538 | quarter_rate:1, |
| 539 | dfs_set:1, |
| 540 | dfs_set_cfreq2:1, |
| 541 | is_chan_passive:1, |
| 542 | allow_ht:1, |
Nandha Kishore Easwaran | 5bee143 | 2016-10-18 10:30:14 +0530 | [diff] [blame] | 543 | allow_vht:1, |
Nandha Kishore Easwaran | 3f1115a | 2016-11-10 16:01:07 +0530 | [diff] [blame] | 544 | set_agile:1; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 545 | uint32_t phy_mode; |
| 546 | uint32_t cfreq1; |
| 547 | uint32_t cfreq2; |
| 548 | int8_t maxpower; |
| 549 | int8_t minpower; |
| 550 | int8_t maxregpower; |
| 551 | uint8_t antennamax; |
| 552 | uint8_t reg_class_id; |
| 553 | }; |
| 554 | |
| 555 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 556 | * struct vdev_stop_params - vdev stop cmd parameter |
| 557 | * @vdev_id: vdev id |
| 558 | */ |
| 559 | struct vdev_stop_params { |
| 560 | uint8_t vdev_id; |
| 561 | }; |
| 562 | |
| 563 | /** |
| 564 | * struct vdev_up_params - vdev up cmd parameter |
| 565 | * @vdev_id: vdev id |
| 566 | * @assoc_id: association id |
| 567 | */ |
| 568 | struct vdev_up_params { |
| 569 | uint8_t vdev_id; |
| 570 | uint16_t assoc_id; |
| 571 | }; |
| 572 | |
| 573 | /** |
| 574 | * struct vdev_down_params - vdev down cmd parameter |
| 575 | * @vdev_id: vdev id |
| 576 | */ |
| 577 | struct vdev_down_params { |
| 578 | uint8_t vdev_id; |
| 579 | }; |
| 580 | |
| 581 | /** |
Himanshu Agarwal | 7e4f4bc | 2016-03-09 16:49:38 +0530 | [diff] [blame] | 582 | * struct mac_ssid - mac ssid structure |
| 583 | * @length: |
| 584 | * @mac_ssid[WMI_MAC_MAX_SSID_LENGTH]: |
| 585 | */ |
| 586 | struct mac_ssid { |
| 587 | uint8_t length; |
| 588 | uint8_t mac_ssid[WMI_MAC_MAX_SSID_LENGTH]; |
| 589 | } qdf_packed; |
| 590 | |
| 591 | /** |
| 592 | * struct vdev_start_params - vdev start cmd parameter |
| 593 | * @vdev_id: vdev id |
| 594 | * @chan_freq: channel frequency |
| 595 | * @chan_mode: channel mode |
| 596 | * @band_center_freq1: center freq 1 |
| 597 | * @band_center_freq2: center freq 2 |
| 598 | * @flags: flags to set like pmf_enabled etc. |
| 599 | * @is_dfs: flag to check if dfs enabled |
| 600 | * @beacon_intval: beacon interval |
| 601 | * @dtim_period: dtim period |
| 602 | * @max_txpow: max tx power |
| 603 | * @is_restart: flag to check if it is vdev |
| 604 | * @ssid: ssid and ssid length info |
| 605 | * @preferred_tx_streams: preferred tx streams |
| 606 | * @preferred_rx_streams: preferred rx streams |
| 607 | * @intr_update: flag to check if need to update |
| 608 | * required wma interface params |
| 609 | * @intr_ssid: pointer to wma interface ssid |
| 610 | * @intr_flags: poiter to wma interface flags |
| 611 | * @requestor_id: to update requestor id |
| 612 | * @disable_hw_ack: to update disable hw ack flag |
| 613 | * @info: to update channel info |
| 614 | * @reg_info_1: to update min power, max power, |
| 615 | * reg power and reg class id |
| 616 | * @reg_info_2: to update antennamax |
Arif Hussain | 29b7821 | 2017-03-13 15:42:20 -0700 | [diff] [blame] | 617 | * @cac_duration_ms: cac duration in milliseconds |
| 618 | * @regdomain: Regulatory domain |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 619 | * @oper_mode: Operating mode |
| 620 | * @dfs_pri_multiplier: DFS primary multiplier |
| 621 | * allow pulse if they are within multiple of PRI for the radar type |
| 622 | * @dot11_mode: Phy mode (VHT20/VHT80...) |
| 623 | * @disable_hw_ack: Disable hw ack if chan is dfs channel for cac |
| 624 | * @channel_param: Channel params required by target. |
Himanshu Agarwal | 7e4f4bc | 2016-03-09 16:49:38 +0530 | [diff] [blame] | 625 | */ |
| 626 | struct vdev_start_params { |
| 627 | uint8_t vdev_id; |
| 628 | uint32_t chan_freq; |
| 629 | uint32_t chan_mode; |
| 630 | uint32_t band_center_freq1; |
| 631 | uint32_t band_center_freq2; |
| 632 | uint32_t flags; |
| 633 | bool is_dfs; |
| 634 | uint32_t beacon_intval; |
| 635 | uint32_t dtim_period; |
| 636 | int32_t max_txpow; |
| 637 | bool is_restart; |
Siddarth Poddar | 466963e | 2016-03-29 15:13:26 +0530 | [diff] [blame] | 638 | bool is_half_rate; |
| 639 | bool is_quarter_rate; |
| 640 | uint32_t dis_hw_ack; |
| 641 | uint32_t flag_dfs; |
| 642 | uint8_t hidden_ssid; |
| 643 | uint8_t pmf_enabled; |
Himanshu Agarwal | 7e4f4bc | 2016-03-09 16:49:38 +0530 | [diff] [blame] | 644 | struct mac_ssid ssid; |
Siddarth Poddar | 466963e | 2016-03-29 15:13:26 +0530 | [diff] [blame] | 645 | uint32_t num_noa_descriptors; |
Himanshu Agarwal | 7e4f4bc | 2016-03-09 16:49:38 +0530 | [diff] [blame] | 646 | uint32_t preferred_rx_streams; |
| 647 | uint32_t preferred_tx_streams; |
Arif Hussain | 29b7821 | 2017-03-13 15:42:20 -0700 | [diff] [blame] | 648 | uint32_t cac_duration_ms; |
| 649 | uint32_t regdomain; |
Krishna Kumaar Natarajan | 3f301ca | 2016-09-29 14:20:54 -0700 | [diff] [blame] | 650 | uint32_t he_ops; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 651 | #ifndef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 652 | uint8_t oper_mode; |
| 653 | int32_t dfs_pri_multiplier; |
| 654 | uint8_t dot11_mode; |
| 655 | uint8_t disable_hw_ack; |
| 656 | struct channel_param channel; |
| 657 | #endif |
Himanshu Agarwal | 7e4f4bc | 2016-03-09 16:49:38 +0530 | [diff] [blame] | 658 | }; |
| 659 | |
| 660 | /** |
| 661 | * struct hidden_ssid_vdev_restart_params - |
| 662 | * vdev restart cmd parameter |
| 663 | * @session_id: session id |
| 664 | * @ssid_len: ssid length |
| 665 | * @ssid: ssid |
| 666 | * @flags: flags |
| 667 | * @requestor_id: requestor id |
| 668 | * @disable_hw_ack: flag to disable hw ack feature |
| 669 | * @mhz: channel frequency |
| 670 | * @band_center_freq1: center freq 1 |
| 671 | * @band_center_freq2: center freq 2 |
| 672 | * @info: channel info |
| 673 | * @reg_info_1: contains min power, max power, |
| 674 | * reg power and reg class id |
| 675 | * @reg_info_2: contains antennamax |
| 676 | * @hidden_ssid_restart_in_progress: |
| 677 | * flag to check if restart is in progress |
| 678 | */ |
| 679 | struct hidden_ssid_vdev_restart_params { |
| 680 | uint8_t session_id; |
| 681 | uint32_t ssid_len; |
| 682 | uint32_t ssid[8]; |
| 683 | uint32_t flags; |
| 684 | uint32_t requestor_id; |
| 685 | uint32_t disable_hw_ack; |
| 686 | uint32_t mhz; |
| 687 | uint32_t band_center_freq1; |
| 688 | uint32_t band_center_freq2; |
| 689 | uint32_t info; |
| 690 | uint32_t reg_info_1; |
| 691 | uint32_t reg_info_2; |
| 692 | qdf_atomic_t hidden_ssid_restart_in_progress; |
| 693 | }; |
| 694 | |
| 695 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 696 | * struct vdev_set_params - vdev set cmd parameter |
| 697 | * @if_id: vdev id |
| 698 | * @param_id: parameter id |
| 699 | * @param_value: parameter value |
| 700 | */ |
| 701 | struct vdev_set_params { |
| 702 | uint32_t if_id; |
| 703 | uint32_t param_id; |
| 704 | uint32_t param_value; |
| 705 | }; |
| 706 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 707 | |
| 708 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 709 | * struct peer_delete_params - peer delete cmd parameter |
| 710 | * @vdev_id: vdev id |
| 711 | */ |
| 712 | struct peer_delete_params { |
| 713 | uint8_t vdev_id; |
| 714 | }; |
| 715 | |
| 716 | /** |
| 717 | * struct peer_flush_params - peer flush cmd parameter |
| 718 | * @peer_tid_bitmap: peer tid bitmap |
| 719 | * @vdev_id: vdev id |
| 720 | */ |
| 721 | struct peer_flush_params { |
| 722 | uint32_t peer_tid_bitmap; |
| 723 | uint8_t vdev_id; |
| 724 | }; |
| 725 | |
| 726 | /** |
| 727 | * struct peer_set_params - peer set cmd parameter |
| 728 | * @param_id: parameter id |
| 729 | * @param_value: parameter value |
| 730 | * @vdev_id: vdev id |
| 731 | */ |
| 732 | struct peer_set_params { |
| 733 | uint32_t param_id; |
| 734 | uint32_t param_value; |
| 735 | uint32_t vdev_id; |
| 736 | }; |
| 737 | |
| 738 | /** |
| 739 | * struct peer_create_params - peer create cmd parameter |
| 740 | * @peer_addr: peer mac addr |
| 741 | * @peer_type: peer type |
| 742 | * @vdev_id: vdev id |
| 743 | */ |
| 744 | struct peer_create_params { |
| 745 | const uint8_t *peer_addr; |
| 746 | uint32_t peer_type; |
| 747 | uint32_t vdev_id; |
| 748 | }; |
| 749 | |
| 750 | /** |
| 751 | * struct peer_remove_params - peer remove cmd parameter |
| 752 | * @bssid: bss id |
| 753 | * @vdev_id: vdev id |
| 754 | * @roam_synch_in_progress: flag to indicate if roaming is in progress |
| 755 | */ |
| 756 | struct peer_remove_params { |
| 757 | uint8_t *bssid; |
| 758 | uint8_t vdev_id; |
| 759 | bool roam_synch_in_progress; |
| 760 | }; |
| 761 | |
| 762 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 763 | * Stats ID enums defined in host |
| 764 | */ |
| 765 | typedef enum { |
| 766 | WMI_HOST_REQUEST_PEER_STAT = 0x01, |
| 767 | WMI_HOST_REQUEST_AP_STAT = 0x02, |
| 768 | WMI_HOST_REQUEST_PDEV_STAT = 0x04, |
| 769 | WMI_HOST_REQUEST_VDEV_STAT = 0x08, |
| 770 | WMI_HOST_REQUEST_BCNFLT_STAT = 0x10, |
| 771 | WMI_HOST_REQUEST_VDEV_RATE_STAT = 0x20, |
| 772 | WMI_HOST_REQUEST_INST_STAT = 0x40, |
| 773 | WMI_HOST_REQUEST_PEER_EXTD_STAT = 0x80, |
| 774 | WMI_HOST_REQUEST_VDEV_EXTD_STAT = 0x100, |
| 775 | } wmi_host_stats_id; |
| 776 | |
| 777 | typedef struct { |
| 778 | uint16_t cfg_retry_count; |
| 779 | uint16_t retry_count; |
| 780 | } wmi_host_inst_rssi_args; |
| 781 | |
| 782 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 783 | * struct stats_request_params - stats_request cmd parameter |
| 784 | * @stats_id: statistics id |
| 785 | * @vdev_id: vdev id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 786 | * @wmi_host_inst_rssi_args: Instantaneous rssi stats args |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 787 | */ |
| 788 | struct stats_request_params { |
| 789 | uint32_t stats_id; |
| 790 | uint32_t vdev_id; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 791 | #ifndef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 792 | wmi_host_inst_rssi_args rssi_args; |
| 793 | #endif |
| 794 | }; |
| 795 | |
| 796 | /** |
| 797 | * struct bss_chan_info_request_params - BSS chan info params |
| 798 | * @param: parameter value |
| 799 | */ |
| 800 | struct bss_chan_info_request_params { |
| 801 | uint32_t param; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 802 | }; |
| 803 | |
| 804 | /** |
| 805 | * struct green_ap_ps_params - green ap ps cmd parameter |
| 806 | * @value: parameter value |
| 807 | */ |
| 808 | struct green_ap_ps_params { |
| 809 | uint32_t value; |
| 810 | }; |
| 811 | |
| 812 | /** |
| 813 | * struct wow_cmd_params - wow cmd parameter |
| 814 | * @enable: wow enable or disable flag |
| 815 | * @can_suspend_link: flag to indicate if link can be suspended |
| 816 | * @pause_iface_config: interface config |
| 817 | */ |
| 818 | struct wow_cmd_params { |
| 819 | bool enable; |
| 820 | bool can_suspend_link; |
| 821 | uint8_t pause_iface_config; |
Dustin Brown | dee95c7 | 2016-11-10 11:25:36 -0800 | [diff] [blame] | 822 | uint32_t flags; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 823 | }; |
| 824 | |
| 825 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 826 | * struct wow_add_wakeup_params - wow wakeup parameter |
| 827 | * @type: param type |
| 828 | */ |
| 829 | struct wow_add_wakeup_params { |
| 830 | uint32_t type; |
| 831 | }; |
| 832 | |
| 833 | /** |
| 834 | * struct wow_add_wakeup_pattern_params - Add WoW pattern params |
| 835 | * @pattern_bytes: pointer to pattern bytes |
| 836 | * @mask_bytes: pointer to mask bytes |
| 837 | * @pattern_len: pattern length |
| 838 | * @pattern_id: pattern id |
| 839 | */ |
| 840 | struct wow_add_wakeup_pattern_params { |
| 841 | uint8_t *pattern_bytes; |
| 842 | uint8_t *mask_bytes; |
| 843 | uint32_t pattern_len; |
| 844 | uint32_t pattern_id; |
| 845 | }; |
| 846 | |
| 847 | /** |
| 848 | * struct wow_remove_wakeup_pattern params - WoW remove pattern param |
| 849 | * @pattern_bytes: pointer to pattern bytes |
| 850 | * @mask_bytes: Mask bytes |
| 851 | * @pattern_id: pattern identifier |
| 852 | */ |
| 853 | struct wow_remove_wakeup_pattern_params { |
| 854 | uint32_t *pattern_bytes; |
| 855 | uint32_t *mask_bytes; |
| 856 | uint32_t pattern_id; |
| 857 | }; |
| 858 | |
| 859 | |
| 860 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 861 | * struct packet_enable_params - packet enable cmd parameter |
| 862 | * @vdev_id: vdev id |
| 863 | * @enable: flag to indicate if parameter can be enabled or disabled |
| 864 | */ |
| 865 | struct packet_enable_params { |
| 866 | uint8_t vdev_id; |
| 867 | bool enable; |
| 868 | }; |
| 869 | |
| 870 | /** |
| 871 | * struct suspend_params - suspend cmd parameter |
| 872 | * @disable_target_intr: disable target interrupt |
| 873 | */ |
| 874 | struct suspend_params { |
| 875 | uint8_t disable_target_intr; |
| 876 | }; |
| 877 | |
| 878 | /** |
| 879 | * struct pdev_params - pdev set cmd parameter |
| 880 | * @param_id: parameter id |
| 881 | * @param_value: parameter value |
| 882 | */ |
| 883 | struct pdev_params { |
| 884 | uint32_t param_id; |
| 885 | uint32_t param_value; |
| 886 | }; |
| 887 | |
| 888 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 889 | * struct beacon_tmpl_params - beacon template cmd parameter |
| 890 | * @vdev_id: vdev id |
| 891 | * @tim_ie_offset: tim ie offset |
| 892 | * @tmpl_len: beacon template length |
| 893 | * @tmpl_len_aligned: beacon template alignment |
Sathish Kumar | 907a746 | 2017-02-27 10:35:40 +0530 | [diff] [blame] | 894 | * @csa_switch_count_offset: CSA swith count offset in beacon frame |
| 895 | * @ext_csa_switch_count_offset: ECSA switch count offset in beacon frame |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 896 | * @frm: beacon template parameter |
| 897 | */ |
| 898 | struct beacon_tmpl_params { |
| 899 | uint8_t vdev_id; |
| 900 | uint32_t tim_ie_offset; |
| 901 | uint32_t tmpl_len; |
| 902 | uint32_t tmpl_len_aligned; |
Sathish Kumar | 907a746 | 2017-02-27 10:35:40 +0530 | [diff] [blame] | 903 | uint32_t csa_switch_count_offset; |
| 904 | uint32_t ext_csa_switch_count_offset; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 905 | uint8_t *frm; |
| 906 | }; |
| 907 | |
Govind Singh | fa201d9 | 2016-06-08 19:40:11 +0530 | [diff] [blame] | 908 | #ifdef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 909 | /** |
| 910 | * struct beacon_params - beacon cmd parameter |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 911 | * @vdev_id: vdev id |
| 912 | * @tim_ie_offset: tim ie offset |
| 913 | * @tmpl_len: beacon template length |
| 914 | * @tmpl_len_aligned: beacon template alignment |
| 915 | * @frm: beacon template parameter |
| 916 | */ |
| 917 | struct beacon_params { |
| 918 | uint8_t vdev_id; |
| 919 | uint32_t tim_ie_offset; |
| 920 | uint32_t tmpl_len; |
| 921 | uint32_t tmpl_len_aligned; |
| 922 | uint8_t *frm; |
| 923 | }; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 924 | #else |
| 925 | /** |
| 926 | * struct beacon_params - beacon cmd parameter |
| 927 | * @vdev_id: vdev id |
| 928 | * @beaconInterval: Beacon interval |
| 929 | * @wbuf: beacon buffer |
| 930 | * @frame_ctrl: frame control field |
| 931 | * @bcn_txant: beacon antenna |
| 932 | * @is_dtim_count_zero: is it dtim beacon |
| 933 | * @is_bitctl_reqd: is Bit control required |
| 934 | * @is_high_latency: Is this high latency target |
| 935 | */ |
| 936 | struct beacon_params { |
| 937 | uint8_t vdev_id; |
| 938 | uint16_t beaconInterval; |
| 939 | qdf_nbuf_t wbuf; |
| 940 | uint16_t frame_ctrl; |
| 941 | uint32_t bcn_txant; |
| 942 | bool is_dtim_count_zero; |
| 943 | bool is_bitctl_reqd; |
| 944 | bool is_high_latency; |
| 945 | }; |
| 946 | #endif |
| 947 | |
| 948 | /** |
| 949 | * struct bcn_prb_template_params - beacon probe template parameter |
| 950 | * @vdev_id: vdev id |
| 951 | * @buf_len: Template length |
| 952 | * @caps: capabilities field |
| 953 | * @erp: ERP field |
| 954 | */ |
| 955 | struct bcn_prb_template_params { |
| 956 | uint8_t vdev_id; |
| 957 | int buf_len; |
| 958 | uint16_t caps; |
| 959 | uint8_t erp; |
| 960 | }; |
| 961 | |
| 962 | #define WMI_MAX_SUPPORTED_RATES 128 |
| 963 | /** |
| 964 | * struct target_rate_set - Rate set bitmap |
| 965 | * @num_rate: number of rates in rates bitmap |
| 966 | * @rates: rates (each 8bit value) packed into a 32 bit word. |
| 967 | * the rates are filled from least significant byte to most |
| 968 | * significant byte. |
| 969 | */ |
| 970 | typedef struct { |
| 971 | uint32_t num_rates; |
| 972 | uint32_t rates[(WMI_MAX_SUPPORTED_RATES / 4) + 1]; |
| 973 | } target_rate_set; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 974 | |
Kris Muthusamy | 1499bac | 2017-02-20 02:35:47 -0800 | [diff] [blame] | 975 | |
| 976 | #define WMI_HOST_MAX_NUM_SS 8 |
Kris Muthusamy | e66c6bf | 2017-02-20 20:21:04 -0800 | [diff] [blame] | 977 | #define WMI_HOST_MAX_HECAP_PHY_SIZE 3 |
Kris Muthusamy | 1499bac | 2017-02-20 02:35:47 -0800 | [diff] [blame] | 978 | /** |
Krishna Kumaar Natarajan | 3f301ca | 2016-09-29 14:20:54 -0700 | [diff] [blame] | 979 | * struct wmi_host_ppe_threshold -PPE threshold |
| 980 | * @numss_m1: NSS - 1 |
| 981 | * @ru_bit_mask: RU bit mask indicating the supported RU's |
| 982 | * @ppet16_ppet8_ru3_ru0: ppet8 and ppet16 for max num ss |
Kris Muthusamy | 1499bac | 2017-02-20 02:35:47 -0800 | [diff] [blame] | 983 | */ |
| 984 | struct wmi_host_ppe_threshold { |
| 985 | uint32_t numss_m1; |
Krishna Kumaar Natarajan | 3f301ca | 2016-09-29 14:20:54 -0700 | [diff] [blame] | 986 | uint32_t ru_bit_mask; |
Kris Muthusamy | 1499bac | 2017-02-20 02:35:47 -0800 | [diff] [blame] | 987 | uint32_t ppet16_ppet8_ru3_ru0[WMI_HOST_MAX_NUM_SS]; |
| 988 | }; |
| 989 | |
| 990 | |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 991 | /** |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 992 | * struct wmi_host_mac_addr - host mac addr 2 word representation of MAC addr |
| 993 | * @mac_addr31to0: upper 4 bytes of MAC address |
| 994 | * @mac_addr47to32: lower 2 bytes of MAC address |
| 995 | */ |
| 996 | typedef struct { |
| 997 | uint32_t mac_addr31to0; |
| 998 | uint32_t mac_addr47to32; |
| 999 | } wmi_host_mac_addr; |
| 1000 | |
| 1001 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1002 | * struct peer_assoc_params - peer assoc cmd parameter |
| 1003 | * @peer_macaddr: peer mac address |
| 1004 | * @vdev_id: vdev id |
| 1005 | * @peer_new_assoc: peer association type |
| 1006 | * @peer_associd: peer association id |
| 1007 | * @peer_flags: peer flags |
| 1008 | * @peer_caps: peer capabalities |
| 1009 | * @peer_listen_intval: peer listen interval |
| 1010 | * @peer_ht_caps: HT capabalities |
| 1011 | * @peer_max_mpdu: 0 : 8k , 1 : 16k, 2 : 32k, 3 : 64k |
| 1012 | * @peer_mpdu_density: 3 : 0~7 : 2^(11nAMPDUdensity -4) |
| 1013 | * @peer_rate_caps: peer rate capabalities |
| 1014 | * @peer_nss: peer nss |
| 1015 | * @peer_phymode: peer phymode |
| 1016 | * @peer_ht_info: peer HT info |
| 1017 | * @peer_legacy_rates: peer legacy rates |
| 1018 | * @peer_ht_rates: peer ht rates |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1019 | * @rx_max_rate: max rx rates |
| 1020 | * @rx_mcs_set: rx mcs |
| 1021 | * @tx_max_rate: max tx rates |
| 1022 | * @tx_mcs_set: tx mcs |
| 1023 | * @vht_capable: VHT capabalities |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1024 | * @tx_max_mcs_nss: max tx MCS and NSS |
| 1025 | * @peer_bw_rxnss_override: Peer BW RX NSS overriden or not. |
| 1026 | * @is_pmf_enabled: PMF enabled |
| 1027 | * @is_wme_set: WME enabled |
| 1028 | * @qos_flag: QoS Flags |
| 1029 | * @apsd_flag: APSD flags |
| 1030 | * @ht_flag: HT flags |
| 1031 | * @bw_40: 40 capabale |
| 1032 | * @bw_80: 80 capabale |
| 1033 | * @bw_160: 160 capabale |
| 1034 | * @stbc_flag: STBC flag |
| 1035 | * @ldpc_flag: LDPC flag |
| 1036 | * @static_mimops_flag: statis MIMO PS flags |
| 1037 | * @dynamic_mimops_flag: Dynamic MIMO PS flags |
| 1038 | * @spatial_mux_flag: spatial MUX flags |
| 1039 | * @vht_flag: VHT flags |
| 1040 | * @vht_ng_flag: VHT on 11N/G flags |
| 1041 | * @need_ptk_4_way: Needs 4 way handshake |
| 1042 | * @need_gtk_2_way: Needs 2 way GTK |
| 1043 | * @auth_flag: Is peer authenticated |
| 1044 | * @safe_mode_enabled: Safe enabled for this peer |
| 1045 | * @amsdu_disable: AMSDU disble |
| 1046 | * @peer_mac: Peer mac address |
Kris Muthusamy | e66c6bf | 2017-02-20 20:21:04 -0800 | [diff] [blame] | 1047 | * @he_flag: HE flags |
Kris Muthusamy | 1499bac | 2017-02-20 02:35:47 -0800 | [diff] [blame] | 1048 | * @peer_he_cap_macinfo: Peer HE Cap MAC info |
| 1049 | * @peer_he_ops: Peer HE operation info |
| 1050 | * @peer_he_cap_phyinfo: Peer HE Cap PHY info |
| 1051 | * @peer_he_mcs: Peer HE MCS MAP |
| 1052 | * @peer_ppet: Peer HE PPET info |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1053 | */ |
| 1054 | struct peer_assoc_params { |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1055 | wmi_host_mac_addr peer_macaddr; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1056 | uint32_t vdev_id; |
| 1057 | uint32_t peer_new_assoc; |
| 1058 | uint32_t peer_associd; |
| 1059 | uint32_t peer_flags; |
| 1060 | uint32_t peer_caps; |
| 1061 | uint32_t peer_listen_intval; |
| 1062 | uint32_t peer_ht_caps; |
| 1063 | uint32_t peer_max_mpdu; |
| 1064 | uint32_t peer_mpdu_density; |
| 1065 | uint32_t peer_rate_caps; |
| 1066 | uint32_t peer_nss; |
| 1067 | uint32_t peer_vht_caps; |
| 1068 | uint32_t peer_phymode; |
| 1069 | uint32_t peer_ht_info[2]; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1070 | target_rate_set peer_legacy_rates; |
| 1071 | target_rate_set peer_ht_rates; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1072 | uint32_t rx_max_rate; |
| 1073 | uint32_t rx_mcs_set; |
| 1074 | uint32_t tx_max_rate; |
| 1075 | uint32_t tx_mcs_set; |
| 1076 | uint8_t vht_capable; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 1077 | #ifndef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1078 | uint32_t tx_max_mcs_nss; |
| 1079 | uint32_t peer_bw_rxnss_override; |
| 1080 | bool is_pmf_enabled; |
| 1081 | bool is_wme_set; |
| 1082 | bool qos_flag; |
| 1083 | bool apsd_flag; |
| 1084 | bool ht_flag; |
| 1085 | bool bw_40; |
| 1086 | bool bw_80; |
| 1087 | bool bw_160; |
| 1088 | bool stbc_flag; |
| 1089 | bool ldpc_flag; |
| 1090 | bool static_mimops_flag; |
| 1091 | bool dynamic_mimops_flag; |
| 1092 | bool spatial_mux_flag; |
| 1093 | bool vht_flag; |
| 1094 | bool vht_ng_flag; |
| 1095 | bool need_ptk_4_way; |
| 1096 | bool need_gtk_2_way; |
| 1097 | bool auth_flag; |
| 1098 | bool safe_mode_enabled; |
| 1099 | bool amsdu_disable; |
| 1100 | /* Use common structure */ |
| 1101 | uint8_t peer_mac[IEEE80211_ADDR_LEN]; |
| 1102 | #endif |
Kris Muthusamy | e66c6bf | 2017-02-20 20:21:04 -0800 | [diff] [blame] | 1103 | bool he_flag; |
Kris Muthusamy | 1499bac | 2017-02-20 02:35:47 -0800 | [diff] [blame] | 1104 | uint32_t peer_he_cap_macinfo; |
| 1105 | uint32_t peer_he_ops; |
Kris Muthusamy | e66c6bf | 2017-02-20 20:21:04 -0800 | [diff] [blame] | 1106 | uint32_t peer_he_cap_phyinfo[WMI_HOST_MAX_HECAP_PHY_SIZE]; |
Kris Muthusamy | 1499bac | 2017-02-20 02:35:47 -0800 | [diff] [blame] | 1107 | uint32_t peer_he_mcs; |
| 1108 | struct wmi_host_ppe_threshold peer_ppet; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1109 | }; |
| 1110 | |
| 1111 | /** |
| 1112 | * struct sta_ps_params - sta ps cmd parameter |
| 1113 | * @vdev_id: vdev id |
| 1114 | * @param: sta ps paramter |
| 1115 | * @value: sta ps parameter value |
| 1116 | */ |
| 1117 | struct sta_ps_params { |
| 1118 | uint32_t vdev_id; |
| 1119 | uint32_t param; |
| 1120 | uint32_t value; |
| 1121 | }; |
| 1122 | |
| 1123 | /** |
| 1124 | * struct ap_ps_params - ap ps cmd parameter |
| 1125 | * @vdev_id: vdev id |
| 1126 | * @param: ap ps paramter |
| 1127 | * @value: ap ps paramter value |
| 1128 | */ |
| 1129 | struct ap_ps_params { |
| 1130 | uint32_t vdev_id; |
| 1131 | uint32_t param; |
| 1132 | uint32_t value; |
| 1133 | }; |
| 1134 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1135 | #define WMI_HOST_SCAN_CHAN_FREQ_SHIFT 0 |
| 1136 | #define WMI_HOST_SCAN_CHAN_FREQ_MASK 0xffff |
| 1137 | #define WMI_HOST_SCAN_CHAN_MODE_SHIFT 16 |
| 1138 | #define WMI_HOST_SCAN_CHAN_MODE_MASK 0xff |
| 1139 | |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1140 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1141 | * struct scan_start_params - start scan cmd parameter |
| 1142 | * @scan_id: scan id |
| 1143 | * @scan_req_id: requeted scan id |
| 1144 | * @vdev_id: vdev id |
| 1145 | * @scan_priority: scan priority |
| 1146 | * @notify_scan_events: flag to indicate if scan to be notified |
| 1147 | * @dwell_time_active: active dwell time |
| 1148 | * @dwell_time_passive: passive dwell time |
| 1149 | * @min_rest_time: min rest time |
| 1150 | * @max_rest_time: max rest time |
| 1151 | * @repeat_probe_time: repeat probe time |
| 1152 | * @probe_spacing_time: probe spacing time |
| 1153 | * @idle_time: idle time |
| 1154 | * @max_scan_time: max scan time |
| 1155 | * @probe_delay: probe delay |
| 1156 | * @scan_ctrl_flags: scan control flag |
| 1157 | * @burst_duration: burst duration |
| 1158 | * @num_chan: no of channel |
| 1159 | * @num_bssid: no of bssid |
| 1160 | * @num_ssids: no of ssid |
| 1161 | * @ie_len: ie length |
| 1162 | * @n_probes: no of probe |
| 1163 | * @chan_list: channel list |
| 1164 | * @ie_len_with_pad: ie length with padding |
| 1165 | * @num_ssid: no of ssid |
| 1166 | * @sid: pointer to mac_ssid structure |
| 1167 | * @uie_fieldOffset: ie field offset |
| 1168 | * @mac_add_bytes: mac address bytes |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1169 | * @is_strict_pscan_en: Is this a strict passive scan |
| 1170 | * @is_promiscous_mode: Is promiscous mode |
| 1171 | * @is_phy_error: is Phy error |
| 1172 | * @add_cck_rates: Add cck rates |
| 1173 | * @chan_stat_enable: channel stats enabled |
| 1174 | * @offchan_tx_mgmt: Offchan tx scan |
| 1175 | * @offchan_tx_data: offchan tx data |
| 1176 | * @add_bcast_probe_reqd: Add bcast probe request |
| 1177 | * @bssid_list: Lisst of bssid to scan |
| 1178 | * @ie_data: IE data buffer pointer |
| 1179 | * @passive_flag: Is this passive scan |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1180 | */ |
| 1181 | struct scan_start_params { |
| 1182 | uint32_t scan_id; |
| 1183 | uint32_t scan_req_id; |
| 1184 | uint32_t vdev_id; |
| 1185 | uint32_t scan_priority; |
| 1186 | uint32_t notify_scan_events; |
| 1187 | uint32_t dwell_time_active; |
| 1188 | uint32_t dwell_time_passive; |
| 1189 | uint32_t min_rest_time; |
| 1190 | uint32_t max_rest_time; |
| 1191 | uint32_t repeat_probe_time; |
| 1192 | uint32_t probe_spacing_time; |
| 1193 | uint32_t idle_time; |
| 1194 | uint32_t max_scan_time; |
| 1195 | uint32_t probe_delay; |
| 1196 | uint32_t scan_ctrl_flags; |
| 1197 | uint32_t burst_duration; |
| 1198 | uint32_t num_chan; |
| 1199 | uint32_t num_bssid; |
| 1200 | uint32_t num_ssids; |
| 1201 | uint32_t ie_len; |
| 1202 | uint32_t n_probes; |
| 1203 | uint32_t *chan_list; |
| 1204 | uint32_t ie_len_with_pad; |
| 1205 | struct mac_ssid ssid[WMI_SCAN_MAX_NUM_SSID]; |
| 1206 | uint8_t *ie_base; |
| 1207 | uint16_t uie_fieldOffset; |
| 1208 | uint8_t mac_add_bytes[IEEE80211_ADDR_LEN]; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 1209 | #ifndef CONFIG_MCL |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 1210 | bool half_rate; |
| 1211 | bool quarter_rate; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1212 | bool is_strict_pscan_en; |
| 1213 | bool is_promiscous_mode; |
| 1214 | bool is_phy_error; |
| 1215 | bool add_cck_rates; |
| 1216 | bool chan_stat_enable; |
| 1217 | bool offchan_tx_mgmt; |
| 1218 | bool offchan_tx_data; |
| 1219 | bool add_bcast_probe_reqd; |
| 1220 | uint8_t bssid_list[WMI_SCAN_MAX_NUM_BSSID][IEEE80211_ADDR_LEN]; |
| 1221 | uint8_t *ie_data; |
| 1222 | int passive_flag; |
| 1223 | #endif |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1224 | }; |
| 1225 | |
| 1226 | /** |
| 1227 | * struct scan_stop_params - stop scan cmd parameter |
| 1228 | * @requestor: scan requestor |
| 1229 | * @scan_id: scan id |
| 1230 | * @req_type: scan request type |
| 1231 | * @vdev_id: vdev id |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 1232 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1233 | * @all_scans: Stop all scans |
| 1234 | * @vap_scans: stop vap scans |
| 1235 | * @specific_scan: specific scan |
| 1236 | * @flags: scan flags |
| 1237 | * @ss_scan_id: ss scan id |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1238 | */ |
| 1239 | struct scan_stop_params { |
| 1240 | uint32_t requestor; |
| 1241 | uint32_t scan_id; |
| 1242 | uint32_t req_type; |
| 1243 | uint32_t vdev_id; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 1244 | uint32_t pdev_id; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 1245 | #ifndef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1246 | bool all_scans; |
| 1247 | bool vap_scans; |
| 1248 | bool specific_scan; |
| 1249 | uint32_t flags; |
| 1250 | uint32_t ss_scan_id; |
| 1251 | #endif |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1252 | }; |
| 1253 | |
| 1254 | /** |
| 1255 | * struct scan_chan_list_params - scan channel list cmd parameter |
| 1256 | * @num_scan_chans: no of scan channels |
| 1257 | * @chan_info: pointer to wmi channel info |
| 1258 | */ |
Govind Singh | fa201d9 | 2016-06-08 19:40:11 +0530 | [diff] [blame] | 1259 | #ifdef CONFIG_MCL |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1260 | /* TODO: This needs clean-up based on how its processed. */ |
| 1261 | typedef struct { |
| 1262 | /* TLV tag and len; tag equals WMITLV_TAG_STRUC_wmi_channel */ |
| 1263 | uint32_t tlv_header; |
| 1264 | /** primary 20 MHz channel frequency in mhz */ |
| 1265 | uint32_t mhz; |
| 1266 | /** Center frequency 1 in MHz*/ |
| 1267 | uint32_t band_center_freq1; |
| 1268 | /** Center frequency 2 in MHz - valid only for 11acvht 80plus80 mode*/ |
| 1269 | uint32_t band_center_freq2; |
| 1270 | /** channel info described below */ |
| 1271 | uint32_t info; |
| 1272 | /** contains min power, max power, reg power and reg class id. */ |
| 1273 | uint32_t reg_info_1; |
| 1274 | /** contains antennamax */ |
| 1275 | uint32_t reg_info_2; |
| 1276 | } wmi_channel_param; |
| 1277 | |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1278 | struct scan_chan_list_params { |
| 1279 | uint8_t num_scan_chans; |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1280 | wmi_channel_param *chan_info; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1281 | }; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1282 | #else |
| 1283 | /** |
| 1284 | * struct scan_chan_list_params - scan channel list cmd parameter |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 1285 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1286 | * @num_chan: no of scan channels |
| 1287 | * @nallchans: nall chans |
| 1288 | * @ch_param: pointer to channel_paramw |
| 1289 | */ |
| 1290 | struct scan_chan_list_params { |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 1291 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1292 | uint16_t nallchans; |
| 1293 | struct channel_param ch_param[1]; |
| 1294 | }; |
| 1295 | #endif |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1296 | |
| 1297 | /** |
Sathish Kumar | 907a746 | 2017-02-27 10:35:40 +0530 | [diff] [blame] | 1298 | * struct multiple_vdev_restart_params - Multiple vdev restart cmd parameter |
| 1299 | * @pdev_id: Pdev identifier |
| 1300 | * @requestor_id: Unique id identifying the module |
| 1301 | * @disable_hw_ack: Flag to indicate disabling HW ACK during CAC |
| 1302 | * @cac_duration_ms: CAC duration on the given channel |
| 1303 | * @num_vdevs: No. of vdevs that need to be restarted |
| 1304 | * @ch_param: Pointer to channel_param |
| 1305 | * @vdev_ids: Pointer to array of vdev_ids |
| 1306 | */ |
| 1307 | struct multiple_vdev_restart_params { |
| 1308 | uint32_t pdev_id; |
| 1309 | uint32_t requestor_id; |
| 1310 | uint32_t disable_hw_ack; |
| 1311 | uint32_t cac_duration_ms; |
| 1312 | uint32_t num_vdevs; |
| 1313 | struct channel_param ch_param; |
| 1314 | uint32_t vdev_ids[WMI_HOST_PDEV_MAX_VDEVS]; |
| 1315 | }; |
| 1316 | /** |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1317 | * struct fw_hang_params - fw hang command parameters |
| 1318 | * @type: 0:unused 1: ASSERT, 2:not respond detect command, 3:simulate ep-full |
| 1319 | * @delay_time_ms: 0xffffffff means the simulate will delay for random time (0 ~0xffffffff ms) |
| 1320 | */ |
| 1321 | struct fw_hang_params { |
| 1322 | uint32_t type; |
| 1323 | uint32_t delay_time_ms; |
| 1324 | }; |
| 1325 | |
| 1326 | /** |
| 1327 | * struct pdev_utf_params - pdev utf command parameters |
| 1328 | * @utf_payload: |
| 1329 | * @len: |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1330 | * @is_ar900b: is it 900b target |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1331 | */ |
| 1332 | struct pdev_utf_params { |
| 1333 | uint8_t *utf_payload; |
| 1334 | uint32_t len; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 1335 | #ifndef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1336 | bool is_ar900b; |
| 1337 | #endif |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1338 | }; |
| 1339 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1340 | /*Adding this due to dependency on wmi_unified.h |
| 1341 | */ |
| 1342 | typedef struct { |
| 1343 | uint32_t len; |
| 1344 | uint32_t msgref; |
| 1345 | uint32_t segmentInfo; |
| 1346 | } QVIT_SEG_HDR_INFO_STRUCT; |
| 1347 | |
| 1348 | struct pdev_qvit_params { |
| 1349 | uint8_t *utf_payload; |
| 1350 | uint32_t len; |
| 1351 | }; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1352 | /** |
| 1353 | * struct crash_inject - crash inject command parameters |
| 1354 | * @type: crash inject type |
| 1355 | * @delay_time_ms: time in milliseconds for FW to delay the crash |
| 1356 | */ |
| 1357 | struct crash_inject { |
| 1358 | uint32_t type; |
| 1359 | uint32_t delay_time_ms; |
| 1360 | }; |
| 1361 | |
| 1362 | /** |
| 1363 | * struct dbglog_params - fw deboglog command parameters |
| 1364 | * @param: command parameter |
| 1365 | * @val: parameter value |
| 1366 | * @module_id_bitmap: fixed length module id bitmap |
| 1367 | * @bitmap_len: module id bitmap length |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1368 | * @cfgvalid: cfgvalid |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1369 | */ |
| 1370 | struct dbglog_params { |
| 1371 | uint32_t param; |
| 1372 | uint32_t val; |
| 1373 | uint32_t *module_id_bitmap; |
| 1374 | uint32_t bitmap_len; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 1375 | #ifndef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1376 | uint32_t cfgvalid[2]; |
| 1377 | #endif |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1378 | }; |
| 1379 | |
| 1380 | /** |
| 1381 | * struct seg_hdr_info - header info |
| 1382 | * @len: length |
| 1383 | * @msgref: message refrence |
| 1384 | * @segmentInfo: segment info |
| 1385 | * @pad: padding |
| 1386 | */ |
| 1387 | struct seg_hdr_info { |
| 1388 | uint32_t len; |
| 1389 | uint32_t msgref; |
| 1390 | uint32_t segmentInfo; |
| 1391 | uint32_t pad; |
| 1392 | }; |
| 1393 | |
| 1394 | /** |
| 1395 | * struct wmi_mgmt_params - wmi mgmt cmd paramters |
| 1396 | * @tx_frame: management tx frame |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1397 | * @frm_len: frame length |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1398 | * @vdev_id: vdev id |
| 1399 | * @tx_complete_cb: tx download callback handler |
| 1400 | * @tx_ota_post_proc_cb: OTA complition handler |
| 1401 | * @chanfreq: channel frequency |
| 1402 | * @pdata: frame data |
| 1403 | * @wmi_desc: command descriptor |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1404 | * @desc_id: descriptor id relyaed back by target |
| 1405 | * @macaddr - macaddr of peer |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1406 | */ |
| 1407 | struct wmi_mgmt_params { |
| 1408 | void *tx_frame; |
| 1409 | uint16_t frm_len; |
| 1410 | uint8_t vdev_id; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1411 | uint16_t chanfreq; |
| 1412 | void *pdata; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1413 | uint16_t desc_id; |
| 1414 | uint8_t *macaddr; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 1415 | void *qdf_ctx; |
Govind Singh | 3ddda1f | 2016-03-09 11:34:12 +0530 | [diff] [blame] | 1416 | }; |
Govind Singh | bffe4de | 2016-02-26 17:50:39 +0530 | [diff] [blame] | 1417 | |
| 1418 | /** |
| 1419 | * struct p2p_ps_params - P2P powersave related params |
| 1420 | * @opp_ps: opportunistic power save |
| 1421 | * @ctwindow: CT window |
| 1422 | * @count: count |
| 1423 | * @duration: duration |
| 1424 | * @interval: interval |
| 1425 | * @single_noa_duration: single shot noa duration |
| 1426 | * @ps_selection: power save selection |
| 1427 | * @session_id: session id |
| 1428 | */ |
| 1429 | struct p2p_ps_params { |
| 1430 | uint8_t opp_ps; |
| 1431 | uint32_t ctwindow; |
| 1432 | uint8_t count; |
| 1433 | uint32_t duration; |
| 1434 | uint32_t interval; |
| 1435 | uint32_t single_noa_duration; |
| 1436 | uint8_t ps_selection; |
| 1437 | uint8_t session_id; |
| 1438 | }; |
| 1439 | |
| 1440 | |
| 1441 | /** |
| 1442 | * struct ta_uapsd_trig_params - uapsd trigger parameter |
| 1443 | * @vdevid: vdev id |
| 1444 | * @peer_addr: peer address |
| 1445 | * @auto_triggerparam: trigger parameters |
| 1446 | * @num_ac: no of access category |
| 1447 | */ |
| 1448 | struct sta_uapsd_trig_params { |
| 1449 | uint32_t vdevid; |
| 1450 | uint8_t peer_addr[IEEE80211_ADDR_LEN]; |
| 1451 | uint8_t *auto_triggerparam; |
| 1452 | uint32_t num_ac; |
| 1453 | }; |
Govind Singh | e7b800c | 2016-03-01 15:30:53 +0530 | [diff] [blame] | 1454 | |
| 1455 | /** |
| 1456 | * struct ocb_utc_param |
| 1457 | * @vdev_id: session id |
| 1458 | * @utc_time: number of nanoseconds from Jan 1st 1958 |
| 1459 | * @time_error: the error in the UTC time. All 1's for unknown |
| 1460 | */ |
| 1461 | struct ocb_utc_param { |
| 1462 | uint32_t vdev_id; |
| 1463 | uint8_t utc_time[WMI_SIZE_UTC_TIME]; |
| 1464 | uint8_t time_error[WMI_SIZE_UTC_TIME_ERROR]; |
| 1465 | }; |
| 1466 | |
| 1467 | /** |
| 1468 | * struct ocb_timing_advert_param |
| 1469 | * @vdev_id: session id |
| 1470 | * @chan_freq: frequency on which to advertise |
| 1471 | * @repeat_rate: the number of times it will send TA in 5 seconds |
| 1472 | * @timestamp_offset: offset of the timestamp field in the TA frame |
| 1473 | * @time_value_offset: offset of the time_value field in the TA frame |
| 1474 | * @template_length: size in bytes of the TA frame |
| 1475 | * @template_value: the TA frame |
| 1476 | */ |
| 1477 | struct ocb_timing_advert_param { |
| 1478 | uint32_t vdev_id; |
| 1479 | uint32_t chan_freq; |
| 1480 | uint32_t repeat_rate; |
| 1481 | uint32_t timestamp_offset; |
| 1482 | uint32_t time_value_offset; |
| 1483 | uint32_t template_length; |
| 1484 | uint8_t *template_value; |
| 1485 | }; |
| 1486 | |
| 1487 | /** |
| 1488 | * struct dcc_get_stats_param |
| 1489 | * @vdev_id: session id |
| 1490 | * @channel_count: number of dcc channels |
| 1491 | * @request_array_len: size in bytes of the request array |
| 1492 | * @request_array: the request array |
| 1493 | */ |
| 1494 | struct dcc_get_stats_param { |
| 1495 | uint32_t vdev_id; |
| 1496 | uint32_t channel_count; |
| 1497 | uint32_t request_array_len; |
| 1498 | void *request_array; |
| 1499 | }; |
| 1500 | |
| 1501 | /** |
| 1502 | * struct dcc_update_ndl_param |
| 1503 | * @vdev_id: session id |
| 1504 | * @channel_count: number of channels to be updated |
| 1505 | * @dcc_ndl_chan_list_len: size in bytes of the ndl_chan array |
| 1506 | * @dcc_ndl_chan_list: the ndl_chan array |
| 1507 | * @dcc_ndl_active_state_list_len: size in bytes of the active_state array |
| 1508 | * @dcc_ndl_active_state_list: the active state array |
| 1509 | */ |
| 1510 | struct dcc_update_ndl_param { |
| 1511 | uint32_t vdev_id; |
| 1512 | uint32_t channel_count; |
| 1513 | uint32_t dcc_ndl_chan_list_len; |
| 1514 | void *dcc_ndl_chan_list; |
| 1515 | uint32_t dcc_ndl_active_state_list_len; |
| 1516 | void *dcc_ndl_active_state_list; |
| 1517 | }; |
| 1518 | |
| 1519 | /** |
| 1520 | * struct ocb_config_sched |
| 1521 | * @chan_freq: frequency of the channel |
| 1522 | * @total_duration: duration of the schedule |
| 1523 | * @guard_interval: guard interval on the start of the schedule |
| 1524 | */ |
| 1525 | struct ocb_config_sched { |
| 1526 | uint32_t chan_freq; |
| 1527 | uint32_t total_duration; |
| 1528 | uint32_t guard_interval; |
| 1529 | }; |
| 1530 | |
| 1531 | /** |
| 1532 | * OCB structures |
| 1533 | */ |
| 1534 | |
| 1535 | #define WMI_NUM_AC (4) |
| 1536 | #define WMI_OCB_CHANNEL_MAX (5) |
| 1537 | #define WMI_MAX_NUM_AC 4 |
| 1538 | struct wmi_ocb_qos_params { |
| 1539 | uint8_t aifsn; |
| 1540 | uint8_t cwmin; |
| 1541 | uint8_t cwmax; |
| 1542 | }; |
| 1543 | /** |
| 1544 | * struct ocb_config_channel |
| 1545 | * @chan_freq: frequency of the channel |
| 1546 | * @bandwidth: bandwidth of the channel, either 10 or 20 MHz |
| 1547 | * @mac_address: MAC address assigned to this channel |
| 1548 | * @qos_params: QoS parameters |
| 1549 | * @max_pwr: maximum transmit power of the channel (dBm) |
| 1550 | * @min_pwr: minimum transmit power of the channel (dBm) |
| 1551 | * @reg_pwr: maximum transmit power specified by the regulatory domain (dBm) |
| 1552 | * @antenna_max: maximum antenna gain specified by the regulatory domain (dB) |
| 1553 | */ |
| 1554 | struct ocb_config_channel { |
| 1555 | uint32_t chan_freq; |
| 1556 | uint32_t bandwidth; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 1557 | struct qdf_mac_addr mac_address; |
Govind Singh | e7b800c | 2016-03-01 15:30:53 +0530 | [diff] [blame] | 1558 | struct wmi_ocb_qos_params qos_params[WMI_MAX_NUM_AC]; |
| 1559 | uint32_t max_pwr; |
| 1560 | uint32_t min_pwr; |
| 1561 | uint8_t reg_pwr; |
| 1562 | uint8_t antenna_max; |
| 1563 | uint16_t flags; |
| 1564 | }; |
| 1565 | |
| 1566 | /** |
| 1567 | * struct ocb_config_param |
| 1568 | * @session_id: session id |
| 1569 | * @channel_count: number of channels |
| 1570 | * @schedule_size: size of the channel schedule |
| 1571 | * @flags: reserved |
| 1572 | * @channels: array of OCB channels |
| 1573 | * @schedule: array of OCB schedule elements |
| 1574 | * @dcc_ndl_chan_list_len: size of the ndl_chan array |
| 1575 | * @dcc_ndl_chan_list: array of dcc channel info |
| 1576 | * @dcc_ndl_active_state_list_len: size of the active state array |
| 1577 | * @dcc_ndl_active_state_list: array of active states |
| 1578 | * @adapter: the OCB adapter |
| 1579 | * @dcc_stats_callback: callback for the response event |
| 1580 | */ |
| 1581 | struct ocb_config_param { |
| 1582 | uint8_t session_id; |
| 1583 | uint32_t channel_count; |
| 1584 | uint32_t schedule_size; |
| 1585 | uint32_t flags; |
| 1586 | struct ocb_config_channel *channels; |
| 1587 | struct ocb_config_sched *schedule; |
| 1588 | uint32_t dcc_ndl_chan_list_len; |
| 1589 | void *dcc_ndl_chan_list; |
| 1590 | uint32_t dcc_ndl_active_state_list_len; |
| 1591 | void *dcc_ndl_active_state_list; |
| 1592 | }; |
Govind Singh | 9bad000 | 2016-03-01 15:54:59 +0530 | [diff] [blame] | 1593 | |
Poddar, Siddarth | 794b996 | 2016-04-28 15:49:11 +0530 | [diff] [blame] | 1594 | enum wmi_peer_rate_report_cond_phy_type { |
| 1595 | WMI_PEER_RATE_REPORT_COND_11B = 0, |
| 1596 | WMI_PEER_RATE_REPORT_COND_11A_G, |
| 1597 | WMI_PEER_RATE_REPORT_COND_11N, |
| 1598 | WMI_PEER_RATE_REPORT_COND_11AC, |
| 1599 | WMI_PEER_RATE_REPORT_COND_MAX_NUM |
| 1600 | }; |
| 1601 | |
| 1602 | /** |
| 1603 | * struct report_rate_delta - peer specific parameters |
| 1604 | * @percent: percentage |
| 1605 | * @delta_min: rate min delta |
| 1606 | */ |
| 1607 | struct report_rate_delta { |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1608 | uint32_t percent; /* in unit of 12.5% */ |
| 1609 | uint32_t delta_min; /* in unit of Mbps */ |
Poddar, Siddarth | 794b996 | 2016-04-28 15:49:11 +0530 | [diff] [blame] | 1610 | }; |
| 1611 | |
| 1612 | /** |
| 1613 | * struct report_rate_per_phy - per phy report parameters |
| 1614 | * @cond_flags: condition flag val |
| 1615 | * @delta: rate delta |
| 1616 | * @report_rate_threshold: rate threshold |
| 1617 | */ |
| 1618 | struct report_rate_per_phy { |
| 1619 | /* |
| 1620 | * PEER_RATE_REPORT_COND_FLAG_DELTA, |
| 1621 | * PEER_RATE_REPORT_COND_FLAG_THRESHOLD |
| 1622 | * Any of these two conditions or both of |
| 1623 | * them can be set. |
| 1624 | */ |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1625 | uint32_t cond_flags; |
Poddar, Siddarth | 794b996 | 2016-04-28 15:49:11 +0530 | [diff] [blame] | 1626 | struct report_rate_delta delta; |
| 1627 | /* |
| 1628 | * In unit of Mbps. There are at most 4 thresholds |
| 1629 | * If the threshold count is less than 4, set zero to |
| 1630 | * the one following the last threshold |
| 1631 | */ |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1632 | uint32_t report_rate_threshold[WMI_MAX_NUM_OF_RATE_THRESH]; |
Poddar, Siddarth | 794b996 | 2016-04-28 15:49:11 +0530 | [diff] [blame] | 1633 | }; |
| 1634 | |
| 1635 | /** |
| 1636 | * struct peer_rate_report_params - peer rate report parameters |
| 1637 | * @rate_report_enable: enable rate report param |
| 1638 | * @backoff_time: backoff time |
| 1639 | * @timer_period: timer |
| 1640 | * @report_per_phy: report per phy type |
| 1641 | */ |
| 1642 | struct wmi_peer_rate_report_params { |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1643 | uint32_t rate_report_enable; |
| 1644 | uint32_t backoff_time; /* in unit of msecond */ |
| 1645 | uint32_t timer_period; /* in unit of msecond */ |
Poddar, Siddarth | 794b996 | 2016-04-28 15:49:11 +0530 | [diff] [blame] | 1646 | /* |
| 1647 | *In the following field, the array index means the phy type, |
| 1648 | * please see enum wmi_peer_rate_report_cond_phy_type for detail |
| 1649 | */ |
| 1650 | struct report_rate_per_phy report_per_phy[ |
| 1651 | WMI_PEER_RATE_REPORT_COND_MAX_NUM]; |
| 1652 | |
| 1653 | }; |
| 1654 | |
Govind Singh | 9bad000 | 2016-03-01 15:54:59 +0530 | [diff] [blame] | 1655 | /** |
| 1656 | * struct t_thermal_cmd_params - thermal command parameters |
| 1657 | * @min_temp: minimum temprature |
| 1658 | * @max_temp: maximum temprature |
| 1659 | * @thermal_enable: thermal enable |
| 1660 | */ |
| 1661 | struct thermal_cmd_params { |
| 1662 | uint16_t min_temp; |
| 1663 | uint16_t max_temp; |
| 1664 | uint8_t thermal_enable; |
| 1665 | }; |
| 1666 | |
| 1667 | #define WMI_LRO_IPV4_SEED_ARR_SZ 5 |
| 1668 | #define WMI_LRO_IPV6_SEED_ARR_SZ 11 |
| 1669 | |
| 1670 | /** |
| 1671 | * struct wmi_lro_config_cmd_t - set LRO init parameters |
| 1672 | * @lro_enable: indicates whether lro is enabled |
| 1673 | * @tcp_flag: If the TCP flags from the packet do not match |
| 1674 | * the values in this field after masking with TCP flags mask |
| 1675 | * below, packet is not LRO eligible |
| 1676 | * @tcp_flag_mask: field for comparing the TCP values provided |
| 1677 | * above with the TCP flags field in the received packet |
| 1678 | * @toeplitz_hash_ipv4: contains seed needed to compute the flow id |
| 1679 | * 5-tuple toeplitz hash for ipv4 packets |
| 1680 | * @toeplitz_hash_ipv6: contains seed needed to compute the flow id |
| 1681 | * 5-tuple toeplitz hash for ipv6 packets |
| 1682 | */ |
| 1683 | struct wmi_lro_config_cmd_t { |
| 1684 | uint32_t lro_enable; |
| 1685 | uint32_t tcp_flag:9, |
| 1686 | tcp_flag_mask:9; |
| 1687 | uint32_t toeplitz_hash_ipv4[WMI_LRO_IPV4_SEED_ARR_SZ]; |
| 1688 | uint32_t toeplitz_hash_ipv6[WMI_LRO_IPV6_SEED_ARR_SZ]; |
| 1689 | }; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 1690 | |
| 1691 | /** |
| 1692 | * struct gtx_config_t - GTX config |
| 1693 | * @gtx_rt_mask: for HT and VHT rate masks |
| 1694 | * @gtx_usrcfg: host request for GTX mask |
| 1695 | * @gtx_threshold: PER Threshold (default: 10%) |
| 1696 | * @gtx_margin: PER margin (default: 2%) |
| 1697 | * @gtx_tcpstep: TCP step (default: 1) |
| 1698 | * @gtx_tpcMin: TCP min (default: 5) |
| 1699 | * @gtx_bwmask: BW mask (20/40/80/160 Mhz) |
| 1700 | */ |
| 1701 | struct wmi_gtx_config { |
| 1702 | uint32_t gtx_rt_mask[2]; |
| 1703 | uint32_t gtx_usrcfg; |
| 1704 | uint32_t gtx_threshold; |
| 1705 | uint32_t gtx_margin; |
| 1706 | uint32_t gtx_tpcstep; |
| 1707 | uint32_t gtx_tpcmin; |
| 1708 | uint32_t gtx_bwmask; |
| 1709 | }; |
| 1710 | |
| 1711 | /** |
| 1712 | * struct wmi_probe_resp_params - send probe response parameters |
| 1713 | * @bssId: BSSID |
| 1714 | * @pProbeRespTemplate: probe response template |
| 1715 | * @probeRespTemplateLen: probe response template length |
| 1716 | * @ucProxyProbeReqValidIEBmap: valid IE bitmap |
| 1717 | */ |
| 1718 | struct wmi_probe_resp_params { |
Govind Singh | 8675b86 | 2016-03-28 22:09:18 +0530 | [diff] [blame] | 1719 | uint8_t bssId[IEEE80211_ADDR_LEN]; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 1720 | uint8_t *pProbeRespTemplate; |
| 1721 | uint32_t probeRespTemplateLen; |
| 1722 | uint32_t ucProxyProbeReqValidIEBmap[8]; |
| 1723 | }; |
| 1724 | |
Himanshu Agarwal | 9efd9bf | 2016-03-09 18:49:18 +0530 | [diff] [blame] | 1725 | /* struct set_key_params: structure containing |
| 1726 | * installation key parameters |
| 1727 | * @vdev_id: vdev id |
| 1728 | * @key_len: key length |
| 1729 | * @key_idx: key index |
| 1730 | * @peer_mac: peer mac address |
| 1731 | * @key_flags: key flags, 0:pairwise key, 1:group key, 2:static key |
| 1732 | * @key_cipher: key cipher based on security mode |
| 1733 | * @key_txmic_len: tx mic length |
| 1734 | * @key_rxmic_len: rx mic length |
Gurumoorthi Gnanasambandhan | 0d28328 | 2017-01-10 20:51:02 +0530 | [diff] [blame] | 1735 | * @key_tsc_counter: key tx sc counter |
| 1736 | * @key_rsc_counter: key rx sc counter |
Himanshu Agarwal | 9efd9bf | 2016-03-09 18:49:18 +0530 | [diff] [blame] | 1737 | * @rx_iv: receive IV, applicable only in case of WAPI |
| 1738 | * @tx_iv: transmit IV, applicable only in case of WAPI |
| 1739 | * @key_data: key data |
| 1740 | */ |
| 1741 | struct set_key_params { |
| 1742 | uint8_t vdev_id; |
| 1743 | uint16_t key_len; |
| 1744 | uint32_t key_idx; |
| 1745 | uint8_t peer_mac[IEEE80211_ADDR_LEN]; |
| 1746 | uint32_t key_flags; |
| 1747 | uint32_t key_cipher; |
| 1748 | uint32_t key_txmic_len; |
| 1749 | uint32_t key_rxmic_len; |
Gurumoorthi Gnanasambandhan | 0d28328 | 2017-01-10 20:51:02 +0530 | [diff] [blame] | 1750 | uint64_t key_tsc_counter; |
| 1751 | uint64_t *key_rsc_counter; |
| 1752 | #if defined(ATH_SUPPORT_WAPI) || defined(FEATURE_WLAN_WAPI) |
Himanshu Agarwal | 9efd9bf | 2016-03-09 18:49:18 +0530 | [diff] [blame] | 1753 | uint8_t rx_iv[16]; |
| 1754 | uint8_t tx_iv[16]; |
| 1755 | #endif |
| 1756 | uint8_t key_data[WMI_MAC_MAX_KEY_LENGTH]; |
| 1757 | }; |
| 1758 | |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 1759 | /** |
| 1760 | * struct sta_params - sta keep alive parameters |
| 1761 | * @vdev_id: vdev id |
| 1762 | * @method: keep alive method |
| 1763 | * @timeperiod: time to keep alive |
| 1764 | * @hostv4addr: host ipv4 address |
| 1765 | * @destv4addr: destination ipv4 address |
| 1766 | * @destmac: destination mac address |
| 1767 | */ |
| 1768 | struct sta_params { |
| 1769 | uint8_t vdev_id; |
| 1770 | uint32_t method; |
| 1771 | uint32_t timeperiod; |
| 1772 | uint8_t *hostv4addr; |
| 1773 | uint8_t *destv4addr; |
| 1774 | uint8_t *destmac; |
| 1775 | }; |
| 1776 | |
| 1777 | /** |
| 1778 | * struct gateway_update_req_param - gateway parameter update request |
| 1779 | * @request_id: request id |
| 1780 | * @session_id: session id |
| 1781 | * @max_retries: Max ARP/NS retry attempts |
| 1782 | * @timeout: Retry interval |
| 1783 | * @ipv4_addr_type: on ipv4 network |
| 1784 | * @ipv6_addr_type: on ipv6 network |
| 1785 | * @gw_mac_addr: gateway mac addr |
| 1786 | * @ipv4_addr: ipv4 addr |
| 1787 | * @ipv6_addr: ipv6 addr |
| 1788 | */ |
| 1789 | struct gateway_update_req_param { |
| 1790 | uint32_t request_id; |
| 1791 | uint32_t session_id; |
| 1792 | uint32_t max_retries; |
| 1793 | uint32_t timeout; |
| 1794 | uint32_t ipv4_addr_type; |
| 1795 | uint32_t ipv6_addr_type; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 1796 | struct qdf_mac_addr gw_mac_addr; |
| 1797 | uint8_t ipv4_addr[QDF_IPV4_ADDR_SIZE]; |
| 1798 | uint8_t ipv6_addr[QDF_IPV6_ADDR_SIZE]; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 1799 | }; |
| 1800 | |
| 1801 | /** |
| 1802 | * struct rssi_monitor_param - rssi monitoring |
| 1803 | * @request_id: request id |
| 1804 | * @session_id: session id |
| 1805 | * @min_rssi: minimum rssi |
| 1806 | * @max_rssi: maximum rssi |
| 1807 | * @control: flag to indicate start or stop |
| 1808 | */ |
| 1809 | struct rssi_monitor_param { |
| 1810 | uint32_t request_id; |
| 1811 | uint32_t session_id; |
| 1812 | int8_t min_rssi; |
| 1813 | int8_t max_rssi; |
| 1814 | bool control; |
| 1815 | }; |
| 1816 | |
| 1817 | /** |
| 1818 | * struct scan_mac_oui - oui paramters |
| 1819 | * @oui: oui parameters |
| 1820 | */ |
| 1821 | struct scan_mac_oui { |
| 1822 | uint8_t oui[WMI_WIFI_SCANNING_MAC_OUI_LENGTH]; |
| 1823 | }; |
| 1824 | |
| 1825 | #define WMI_PASSPOINT_REALM_LEN 256 |
| 1826 | #define WMI_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM 16 |
| 1827 | #define WMI_PASSPOINT_PLMN_LEN 3 |
| 1828 | /** |
| 1829 | * struct wifi_passpoint_network_param - passpoint network block |
| 1830 | * @id: identifier of this network block |
| 1831 | * @realm: null terminated UTF8 encoded realm, 0 if unspecified |
| 1832 | * @roaming_consortium_ids: roaming consortium ids to match, 0s if unspecified |
| 1833 | * @plmn: mcc/mnc combination as per rules, 0s if unspecified |
| 1834 | */ |
| 1835 | struct wifi_passpoint_network_param { |
| 1836 | uint32_t id; |
| 1837 | uint8_t realm[WMI_PASSPOINT_REALM_LEN]; |
| 1838 | int64_t roaming_consortium_ids[WMI_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM]; |
| 1839 | uint8_t plmn[WMI_PASSPOINT_PLMN_LEN]; |
| 1840 | }; |
| 1841 | |
| 1842 | /** |
| 1843 | * struct wifi_passpoint_req_param - passpoint request |
| 1844 | * @request_id: request identifier |
| 1845 | * @num_networks: number of networks |
| 1846 | * @networks: passpoint networks |
| 1847 | */ |
| 1848 | struct wifi_passpoint_req_param { |
| 1849 | uint32_t request_id; |
| 1850 | uint32_t session_id; |
| 1851 | uint32_t num_networks; |
| 1852 | struct wifi_passpoint_network_param networks[]; |
| 1853 | }; |
| 1854 | |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 1855 | /* struct mobility_domain_info - structure containing |
| 1856 | * mobility domain info |
| 1857 | * @mdie_present: mobility domain present or not |
| 1858 | * @mobility_domain: mobility domain |
| 1859 | */ |
| 1860 | struct mobility_domain_info { |
| 1861 | uint8_t mdie_present; |
| 1862 | uint16_t mobility_domain; |
| 1863 | }; |
| 1864 | |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1865 | #define WMI_HOST_ROAM_OFFLOAD_NUM_MCS_SET (16) |
| 1866 | |
| 1867 | /* This TLV will be filled only in case roam offload |
| 1868 | * for wpa2-psk/okc/ese/11r is enabled */ |
| 1869 | typedef struct { |
| 1870 | /* |
| 1871 | * TLV tag and len; tag equals |
| 1872 | * WMITLV_TAG_STRUC_wmi_roam_offload_fixed_param |
| 1873 | */ |
| 1874 | uint32_t tlv_header; |
| 1875 | uint32_t rssi_cat_gap; /* gap for every category bucket */ |
| 1876 | uint32_t prefer_5g; /* prefer select 5G candidate */ |
| 1877 | uint32_t select_5g_margin; |
| 1878 | uint32_t reassoc_failure_timeout; /* reassoc failure timeout */ |
| 1879 | uint32_t capability; |
| 1880 | uint32_t ht_caps_info; |
| 1881 | uint32_t ampdu_param; |
| 1882 | uint32_t ht_ext_cap; |
| 1883 | uint32_t ht_txbf; |
| 1884 | uint32_t asel_cap; |
| 1885 | uint32_t qos_enabled; |
| 1886 | uint32_t qos_caps; |
| 1887 | uint32_t wmm_caps; |
| 1888 | /* since this is 4 byte aligned, we don't declare it as tlv array */ |
| 1889 | uint32_t mcsset[WMI_HOST_ROAM_OFFLOAD_NUM_MCS_SET >> 2]; |
| 1890 | } roam_offload_param; |
| 1891 | |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 1892 | /* struct roam_offload_scan_params - structure |
| 1893 | * containing roaming offload scan parameters |
| 1894 | * @is_roam_req_valid: flag to tell whether roam req |
| 1895 | * is valid or NULL |
| 1896 | * @mode: stores flags for scan |
| 1897 | * @vdev_id: vdev id |
| 1898 | * @roam_offload_enabled: flag for offload enable |
| 1899 | * @psk_pmk: pre shared key/pairwise master key |
| 1900 | * @pmk_len: length of PMK |
| 1901 | * @prefer_5ghz: prefer select 5G candidate |
| 1902 | * @roam_rssi_cat_gap: gap for every category bucket |
| 1903 | * @select_5ghz_margin: select 5 Ghz margin |
| 1904 | * @krk: KRK |
| 1905 | * @btk: BTK |
| 1906 | * @reassoc_failure_timeout: reassoc failure timeout |
| 1907 | * @rokh_id_length: r0kh id length |
| 1908 | * @rokh_id: r0kh id |
| 1909 | * @roam_key_mgmt_offload_enabled: roam offload flag |
| 1910 | * @auth_mode: authentication mode |
Deepak Dhamdhere | 3ae33a3 | 2016-08-22 18:04:00 -0700 | [diff] [blame] | 1911 | * @okc_enabled: enable opportunistic key caching |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 1912 | * @is_ese_assoc: flag to determine ese assoc |
| 1913 | * @mdid: mobility domain info |
| 1914 | * @roam_offload_params: roam offload tlv params |
| 1915 | */ |
| 1916 | struct roam_offload_scan_params { |
| 1917 | uint8_t is_roam_req_valid; |
| 1918 | uint32_t mode; |
| 1919 | uint32_t vdev_id; |
| 1920 | #ifdef WLAN_FEATURE_ROAM_OFFLOAD |
| 1921 | uint8_t roam_offload_enabled; |
| 1922 | uint8_t psk_pmk[WMI_ROAM_SCAN_PSK_SIZE]; |
| 1923 | uint32_t pmk_len; |
| 1924 | uint8_t prefer_5ghz; |
| 1925 | uint8_t roam_rssi_cat_gap; |
| 1926 | uint8_t select_5ghz_margin; |
| 1927 | uint8_t krk[WMI_KRK_KEY_LEN]; |
| 1928 | uint8_t btk[WMI_BTK_KEY_LEN]; |
| 1929 | uint32_t reassoc_failure_timeout; |
| 1930 | uint32_t rokh_id_length; |
| 1931 | uint8_t rokh_id[WMI_ROAM_R0KH_ID_MAX_LEN]; |
| 1932 | uint8_t roam_key_mgmt_offload_enabled; |
| 1933 | int auth_mode; |
Deepak Dhamdhere | 3ae33a3 | 2016-08-22 18:04:00 -0700 | [diff] [blame] | 1934 | bool okc_enabled; |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 1935 | #endif |
| 1936 | bool is_ese_assoc; |
| 1937 | struct mobility_domain_info mdid; |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 1938 | #ifdef CONFIG_MCL |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1939 | /* THis is not available in non tlv target. |
| 1940 | * please remove this and replace with a host based |
| 1941 | * structure */ |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 1942 | roam_offload_param roam_offload_params; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 1943 | #endif |
Selvaraj, Sridhar | 0a1427f | 2016-07-04 21:40:23 +0530 | [diff] [blame] | 1944 | uint32_t assoc_ie_length; |
| 1945 | uint8_t assoc_ie[MAX_ASSOC_IE_LENGTH]; |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 1946 | }; |
| 1947 | |
| 1948 | /* struct roam_offload_scan_rssi_params - structure containing |
| 1949 | * parameters for roam offload scan based on RSSI |
| 1950 | * @rssi_thresh: rssi threshold |
| 1951 | * @rssi_thresh_diff: difference in rssi threshold |
| 1952 | * @hi_rssi_scan_max_count: 5G scan max count |
| 1953 | * @hi_rssi_scan_rssi_delta: 5G scan rssi change threshold value |
| 1954 | * @hi_rssi_scan_rssi_ub: 5G scan upper bound |
| 1955 | * @raise_rssi_thresh_5g: flag to determine penalty and boost thresholds |
| 1956 | * @session_id: vdev id |
| 1957 | * @penalty_threshold_5g: RSSI threshold below which 5GHz RSSI is penalized |
| 1958 | * @boost_threshold_5g: RSSI threshold above which 5GHz RSSI is favored |
| 1959 | * @raise_factor_5g: factor by which 5GHz RSSI is boosted |
| 1960 | * @drop_factor_5g: factor by which 5GHz RSSI is penalized |
| 1961 | * @max_raise_rssi_5g: maximum boost that can be applied to a 5GHz RSSI |
| 1962 | * @max_drop_rssi_5g: maximum penalty that can be applied to a 5GHz RSSI |
| 1963 | * @good_rssi_threshold: RSSI below which roam is kicked in by background |
| 1964 | * scan although rssi is still good |
| 1965 | * @roam_earlystop_thres_min: Minimum RSSI threshold value for early stop, |
| 1966 | * unit is dB above NF |
| 1967 | * @roam_earlystop_thres_max: Maximum RSSI threshold value for early stop, |
| 1968 | * unit is dB above NF |
Gupta, Kapil | 1f4a4c3 | 2016-04-12 15:02:00 +0530 | [diff] [blame] | 1969 | * @dense_rssi_thresh_offset: dense roam RSSI threshold difference |
| 1970 | * @dense_min_aps_cnt: dense roam minimum APs |
| 1971 | * @initial_dense_status: dense status detected by host |
| 1972 | * @traffic_threshold: dense roam RSSI threshold |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 1973 | */ |
| 1974 | struct roam_offload_scan_rssi_params { |
| 1975 | int8_t rssi_thresh; |
| 1976 | uint8_t rssi_thresh_diff; |
| 1977 | uint32_t hi_rssi_scan_max_count; |
| 1978 | uint32_t hi_rssi_scan_rssi_delta; |
| 1979 | int32_t hi_rssi_scan_rssi_ub; |
| 1980 | int raise_rssi_thresh_5g; |
| 1981 | uint8_t session_id; |
| 1982 | uint32_t penalty_threshold_5g; |
| 1983 | uint32_t boost_threshold_5g; |
| 1984 | uint8_t raise_factor_5g; |
| 1985 | uint8_t drop_factor_5g; |
| 1986 | int max_raise_rssi_5g; |
| 1987 | int max_drop_rssi_5g; |
| 1988 | uint32_t good_rssi_threshold; |
| 1989 | uint32_t roam_earlystop_thres_min; |
| 1990 | uint32_t roam_earlystop_thres_max; |
Gupta, Kapil | 1f4a4c3 | 2016-04-12 15:02:00 +0530 | [diff] [blame] | 1991 | int dense_rssi_thresh_offset; |
| 1992 | int dense_min_aps_cnt; |
| 1993 | int initial_dense_status; |
| 1994 | int traffic_threshold; |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 1995 | }; |
| 1996 | |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 1997 | /** |
| 1998 | * struct wifi_epno_network - enhanced pno network block |
| 1999 | * @ssid: ssid |
| 2000 | * @rssi_threshold: threshold for considering this SSID as found, required |
| 2001 | * granularity for this threshold is 4dBm to 8dBm |
| 2002 | * @flags: WIFI_PNO_FLAG_XXX |
| 2003 | * @auth_bit_field: auth bit field for matching WPA IE |
| 2004 | */ |
| 2005 | struct wifi_epno_network_params { |
| 2006 | struct mac_ssid ssid; |
| 2007 | int8_t rssi_threshold; |
| 2008 | uint8_t flags; |
| 2009 | uint8_t auth_bit_field; |
| 2010 | }; |
| 2011 | |
| 2012 | /** |
| 2013 | * struct wifi_enhanched_pno_params - enhanced pno network params |
Mukul Sharma | 90bc73b | 2016-10-03 15:04:20 +0530 | [diff] [blame] | 2014 | * @request_id: request id number |
| 2015 | * @session_id: session_id number |
| 2016 | * @min_5ghz_rssi: minimum 5GHz RSSI for a BSSID to be considered |
| 2017 | * @min_24ghz_rssi: minimum 2.4GHz RSSI for a BSSID to be considered |
| 2018 | * @initial_score_max: maximum score that a network can have before bonuses |
| 2019 | * @current_connection_bonus: only report when there is a network's score this |
| 2020 | * much higher than the current connection |
| 2021 | * @same_network_bonus: score bonus for all n/w with the same network flag |
| 2022 | * @secure_bonus: score bonus for networks that are not open |
| 2023 | * @band_5ghz_bonus: 5GHz RSSI score bonus (applied to all 5GHz networks) |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2024 | * @num_networks: number of ssids |
Mukul Sharma | 90bc73b | 2016-10-03 15:04:20 +0530 | [diff] [blame] | 2025 | * @networks: EPNO networks |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2026 | */ |
| 2027 | struct wifi_enhanched_pno_params { |
| 2028 | uint32_t request_id; |
| 2029 | uint32_t session_id; |
Mukul Sharma | 90bc73b | 2016-10-03 15:04:20 +0530 | [diff] [blame] | 2030 | uint32_t min_5ghz_rssi; |
| 2031 | uint32_t min_24ghz_rssi; |
| 2032 | uint32_t initial_score_max; |
| 2033 | uint32_t current_connection_bonus; |
| 2034 | uint32_t same_network_bonus; |
| 2035 | uint32_t secure_bonus; |
| 2036 | uint32_t band_5ghz_bonus; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2037 | uint32_t num_networks; |
| 2038 | struct wifi_epno_network_params networks[]; |
| 2039 | }; |
| 2040 | |
| 2041 | enum { |
| 2042 | WMI_AP_RX_DATA_OFFLOAD = 0x00, |
| 2043 | WMI_STA_RX_DATA_OFFLOAD = 0x01, |
| 2044 | }; |
| 2045 | |
| 2046 | /** |
Govind Singh | c7cd2d6 | 2016-06-21 14:33:26 +0530 | [diff] [blame] | 2047 | * enum extscan_configuration_flags - extscan config flags |
| 2048 | * @WMI_EXTSCAN_LP_EXTENDED_BATCHING: extended batching |
| 2049 | */ |
| 2050 | enum wmi_extscan_configuration_flags { |
| 2051 | WMI_EXTSCAN_LP_EXTENDED_BATCHING = 0x00000001, |
| 2052 | }; |
| 2053 | |
| 2054 | /** |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2055 | * enum extscan_report_events_type - extscan report events type |
| 2056 | * @EXTSCAN_REPORT_EVENTS_BUFFER_FULL: report only when scan history is % full |
| 2057 | * @EXTSCAN_REPORT_EVENTS_EACH_SCAN: report a scan completion event after scan |
| 2058 | * @EXTSCAN_REPORT_EVENTS_FULL_RESULTS: forward scan results |
| 2059 | * (beacons/probe responses + IEs) |
| 2060 | * in real time to HAL, in addition to completion events. |
| 2061 | * Note: To keep backward compatibility, |
| 2062 | * fire completion events regardless of REPORT_EVENTS_EACH_SCAN. |
| 2063 | * @EXTSCAN_REPORT_EVENTS_NO_BATCH: controls batching, |
| 2064 | * 0 => batching, 1 => no batching |
| 2065 | */ |
| 2066 | enum wmi_extscan_report_events_type { |
| 2067 | WMI_EXTSCAN_REPORT_EVENTS_BUFFER_FULL = 0x00, |
| 2068 | WMI_EXTSCAN_REPORT_EVENTS_EACH_SCAN = 0x01, |
| 2069 | WMI_EXTSCAN_REPORT_EVENTS_FULL_RESULTS = 0x02, |
| 2070 | WMI_EXTSCAN_REPORT_EVENTS_NO_BATCH = 0x04, |
| 2071 | }; |
| 2072 | |
| 2073 | /** |
| 2074 | * struct ipa_offload_control_params - ipa offload parameters |
| 2075 | * @offload_type: ipa offload type |
| 2076 | * @vdev_id: vdev id |
| 2077 | * @enable: ipa offload enable/disable |
| 2078 | */ |
| 2079 | struct ipa_offload_control_params { |
| 2080 | uint32_t offload_type; |
| 2081 | uint32_t vdev_id; |
| 2082 | uint32_t enable; |
| 2083 | }; |
| 2084 | |
| 2085 | /** |
| 2086 | * struct extscan_capabilities_params - ext scan capablities |
| 2087 | * @request_id: request_id |
| 2088 | * @session_id: session_id |
| 2089 | */ |
| 2090 | struct extscan_capabilities_params { |
| 2091 | uint32_t request_id; |
| 2092 | uint8_t session_id; |
| 2093 | }; |
| 2094 | |
| 2095 | /** |
| 2096 | * struct extscan_capabilities_reset_params - ext scan capablities reset parameter |
| 2097 | * @request_id: request_id |
| 2098 | * @session_id: session_id |
| 2099 | */ |
| 2100 | struct extscan_capabilities_reset_params { |
| 2101 | uint32_t request_id; |
| 2102 | uint8_t session_id; |
| 2103 | }; |
| 2104 | |
| 2105 | /** |
| 2106 | * struct extscan_bssid_hotlist_reset_params - ext scan hotlist reset parameter |
| 2107 | * @request_id: request_id |
| 2108 | * @session_id: session_id |
| 2109 | */ |
| 2110 | struct extscan_bssid_hotlist_reset_params { |
| 2111 | uint32_t request_id; |
| 2112 | uint8_t session_id; |
| 2113 | }; |
| 2114 | |
| 2115 | /** |
| 2116 | * struct extscan_stop_req_params - ext scan stop parameter |
| 2117 | * @request_id: request_id |
| 2118 | * @session_id: session_id |
| 2119 | */ |
| 2120 | struct extscan_stop_req_params { |
| 2121 | uint32_t request_id; |
| 2122 | uint8_t session_id; |
| 2123 | }; |
| 2124 | |
| 2125 | /** |
| 2126 | * struct ap_threshold_params - ap threshold parameter |
| 2127 | * @bssid: mac address |
| 2128 | * @low: low threshold |
| 2129 | * @high: high threshold |
| 2130 | */ |
| 2131 | struct ap_threshold_params { |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2132 | struct qdf_mac_addr bssid; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2133 | int32_t low; |
| 2134 | int32_t high; |
| 2135 | }; |
| 2136 | |
| 2137 | /** |
| 2138 | * struct extscan_set_sig_changereq_params - ext scan channel parameter |
| 2139 | * @request_id: mac address |
| 2140 | * @session_id: low threshold |
| 2141 | * @rssi_sample_size: Number of samples for averaging RSSI |
| 2142 | * @lostap_sample_size: Number of missed samples to confirm AP loss |
| 2143 | * @min_breaching: Number of APs breaching threshold required for firmware |
| 2144 | * @num_ap: no of scanned ap |
| 2145 | * @ap: ap threshold parameter |
| 2146 | */ |
| 2147 | struct extscan_set_sig_changereq_params { |
| 2148 | uint32_t request_id; |
| 2149 | uint8_t session_id; |
| 2150 | uint32_t rssi_sample_size; |
| 2151 | uint32_t lostap_sample_size; |
| 2152 | uint32_t min_breaching; |
| 2153 | uint32_t num_ap; |
| 2154 | struct ap_threshold_params ap[WMI_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS]; |
| 2155 | }; |
| 2156 | |
| 2157 | /** |
| 2158 | * struct extscan_cached_result_params - ext scan cached parameter |
| 2159 | * @request_id: mac address |
| 2160 | * @session_id: low threshold |
| 2161 | * @flush: cached results flush |
| 2162 | */ |
| 2163 | struct extscan_cached_result_params { |
| 2164 | uint32_t request_id; |
| 2165 | uint8_t session_id; |
| 2166 | bool flush; |
| 2167 | }; |
| 2168 | |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2169 | /* Set PNO */ |
| 2170 | #define WMI_PNO_MAX_NETW_CHANNELS 26 |
| 2171 | #define WMI_PNO_MAX_NETW_CHANNELS_EX 60 |
| 2172 | #define WMI_PNO_MAX_SUPP_NETWORKS 16 |
| 2173 | |
| 2174 | /* |
| 2175 | * size based of dot11 declaration without extra IEs as we will not carry those |
| 2176 | * for PNO |
| 2177 | */ |
| 2178 | #define WMI_PNO_MAX_PB_REQ_SIZE 450 |
| 2179 | |
| 2180 | #define WMI_PNO_24G_DEFAULT_CH 1 |
| 2181 | #define WMI_PNO_5G_DEFAULT_CH 36 |
| 2182 | |
| 2183 | /** |
| 2184 | * enum pno_mode - pno mode types |
| 2185 | * @WMI_PNO_MODE_IMMEDIATE: immidiate mode |
| 2186 | * @WMI_PNO_MODE_ON_SUSPEND: suspend on mode |
| 2187 | * @WMI_PNO_MODE_ON_RESUME: resume on mode |
| 2188 | * @WMI_PNO_MODE_MAX: max range |
| 2189 | */ |
| 2190 | enum pno_mode { |
| 2191 | WMI_PNO_MODE_IMMEDIATE, |
| 2192 | WMI_PNO_MODE_ON_SUSPEND, |
| 2193 | WMI_PNO_MODE_ON_RESUME, |
| 2194 | WMI_PNO_MODE_MAX |
| 2195 | }; |
| 2196 | |
| 2197 | /** |
| 2198 | * struct pno_nw_type - pno nw type |
| 2199 | * @ssid: mac ssid |
| 2200 | * @authentication: authentication type |
| 2201 | * @encryption: encryption type |
| 2202 | * @bcastNetwType: broadcast nw type |
| 2203 | * @ucChannelCount: uc channel count |
| 2204 | * @aChannels: pno channel |
| 2205 | * @rssiThreshold: rssi threshold |
| 2206 | */ |
| 2207 | struct pno_nw_type { |
| 2208 | struct mac_ssid ssid; |
| 2209 | uint32_t authentication; |
| 2210 | uint32_t encryption; |
| 2211 | uint32_t bcastNetwType; |
| 2212 | uint8_t ucChannelCount; |
| 2213 | uint8_t aChannels[WMI_PNO_MAX_NETW_CHANNELS_EX]; |
| 2214 | int32_t rssiThreshold; |
| 2215 | }; |
| 2216 | |
| 2217 | /** |
| 2218 | * struct pno_scan_req_params - PNO Scan request structure |
| 2219 | * @enable: flag to enable or disable |
| 2220 | * @modePNO: PNO Mode |
| 2221 | * @ucNetworksCount: Number of networks |
| 2222 | * @aNetworks: Preferred network list |
| 2223 | * @sessionId: Session identifier |
| 2224 | * @fast_scan_period: Fast Scan period |
| 2225 | * @slow_scan_period: Slow scan period |
Arif Hussain | 141de97 | 2017-03-02 11:56:04 -0800 | [diff] [blame] | 2226 | * @delay_start_time: delay in seconds to use before starting the first scan |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2227 | * @fast_scan_max_cycles: Fast scan max cycles |
| 2228 | * @us24GProbeTemplateLen: 2.4G probe template length |
| 2229 | * @p24GProbeTemplate: 2.4G probe template |
| 2230 | * @us5GProbeTemplateLen: 5G probe template length |
| 2231 | * @p5GProbeTemplate: 5G probe template |
Gupta, Kapil | 7b76800 | 2016-04-25 19:14:19 +0530 | [diff] [blame] | 2232 | * @pno_channel_prediction: PNO channel prediction feature status |
| 2233 | * @top_k_num_of_channels: top K number of channels are used for tanimoto |
| 2234 | * distance calculation. |
| 2235 | * @stationary_thresh: threshold value to determine that the STA is stationary. |
| 2236 | * @pnoscan_adaptive_dwell_mode: adaptive dwelltime mode for pno scan |
| 2237 | * @channel_prediction_full_scan: periodic timer upon which a full scan needs |
| 2238 | * to be triggered. |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2239 | */ |
| 2240 | struct pno_scan_req_params { |
| 2241 | uint8_t enable; |
| 2242 | enum pno_mode modePNO; |
| 2243 | uint8_t ucNetworksCount; |
| 2244 | struct pno_nw_type aNetworks[WMI_PNO_MAX_SUPP_NETWORKS]; |
| 2245 | uint8_t sessionId; |
| 2246 | uint32_t fast_scan_period; |
| 2247 | uint32_t slow_scan_period; |
Arif Hussain | 141de97 | 2017-03-02 11:56:04 -0800 | [diff] [blame] | 2248 | uint32_t delay_start_time; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2249 | uint8_t fast_scan_max_cycles; |
| 2250 | uint32_t active_min_time; |
| 2251 | uint32_t active_max_time; |
| 2252 | uint32_t passive_min_time; |
| 2253 | uint32_t passive_max_time; |
| 2254 | uint16_t us24GProbeTemplateLen; |
| 2255 | uint8_t p24GProbeTemplate[WMI_PNO_MAX_PB_REQ_SIZE]; |
| 2256 | uint16_t us5GProbeTemplateLen; |
| 2257 | uint8_t p5GProbeTemplate[WMI_PNO_MAX_PB_REQ_SIZE]; |
| 2258 | #ifdef FEATURE_WLAN_SCAN_PNO |
| 2259 | bool pno_channel_prediction; |
| 2260 | uint8_t top_k_num_of_channels; |
| 2261 | uint8_t stationary_thresh; |
Gupta, Kapil | 7b76800 | 2016-04-25 19:14:19 +0530 | [diff] [blame] | 2262 | enum wmi_dwelltime_adaptive_mode pnoscan_adaptive_dwell_mode; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2263 | uint32_t channel_prediction_full_scan; |
| 2264 | #endif |
| 2265 | }; |
| 2266 | |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2267 | |
| 2268 | #define WMI_WLAN_EXTSCAN_MAX_CHANNELS 36 |
| 2269 | #define WMI_WLAN_EXTSCAN_MAX_BUCKETS 16 |
| 2270 | #define WMI_WLAN_EXTSCAN_MAX_HOTLIST_APS 128 |
| 2271 | #define WMI_WLAN_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS 64 |
| 2272 | #define WMI_EXTSCAN_MAX_HOTLIST_SSIDS 8 |
| 2273 | |
| 2274 | /** |
| 2275 | * struct wifi_scan_channelspec_params - wifi scan channel parameter |
| 2276 | * @channel: Frequency in MHz |
| 2277 | * @dwellTimeMs: dwell time |
| 2278 | * @flush: cached results flush |
| 2279 | * @passive: passive scan |
| 2280 | * @chnlClass: channel class |
| 2281 | */ |
| 2282 | struct wifi_scan_channelspec_params { |
| 2283 | uint32_t channel; |
| 2284 | uint32_t dwellTimeMs; |
| 2285 | bool passive; |
| 2286 | uint8_t chnlClass; |
| 2287 | }; |
| 2288 | |
| 2289 | /** |
| 2290 | * enum wmi_wifi_band - wifi band |
| 2291 | * @WMI_WIFI_BAND_UNSPECIFIED: unspecified band |
| 2292 | * @WMI_WIFI_BAND_BG: 2.4 GHz |
| 2293 | * @WMI_WIFI_BAND_A: 5 GHz without DFS |
| 2294 | * @WMI_WIFI_BAND_ABG: 2.4 GHz + 5 GHz; no DFS |
| 2295 | * @WMI_WIFI_BAND_A_DFS_ONLY: 5 GHz DFS only |
| 2296 | * @WMI_WIFI_BAND_A_WITH_DFS: 5 GHz with DFS |
| 2297 | * @WMI_WIFI_BAND_ABG_WITH_DFS: 2.4 GHz + 5 GHz with DFS |
| 2298 | * @WMI_WIFI_BAND_MAX: max range |
| 2299 | */ |
| 2300 | enum wmi_wifi_band { |
| 2301 | WMI_WIFI_BAND_UNSPECIFIED, |
| 2302 | WMI_WIFI_BAND_BG = 1, |
| 2303 | WMI_WIFI_BAND_A = 2, |
| 2304 | WMI_WIFI_BAND_ABG = 3, |
| 2305 | WMI_WIFI_BAND_A_DFS_ONLY = 4, |
| 2306 | /* 5 is reserved */ |
| 2307 | WMI_WIFI_BAND_A_WITH_DFS = 6, |
| 2308 | WMI_WIFI_BAND_ABG_WITH_DFS = 7, |
| 2309 | /* Keep it last */ |
| 2310 | WMI_WIFI_BAND_MAX |
| 2311 | }; |
| 2312 | |
| 2313 | /** |
| 2314 | * struct wifi_scan_bucket_params - wifi scan bucket spec |
| 2315 | * @bucket: bucket identifier |
| 2316 | * @band: wifi band |
| 2317 | * @period: Desired period, in millisecond; if this is too |
| 2318 | * low, the firmware should choose to generate results as fast as |
| 2319 | * it can instead of failing the command byte |
| 2320 | * for exponential backoff bucket this is the min_period |
| 2321 | * @reportEvents: 0 => normal reporting (reporting rssi history |
| 2322 | * only, when rssi history buffer is % full) |
| 2323 | * 1 => same as 0 + report a scan completion event after scanning |
| 2324 | * this bucket |
| 2325 | * 2 => same as 1 + forward scan results |
| 2326 | * (beacons/probe responses + IEs) in real time to HAL |
| 2327 | * @max_period: if max_period is non zero or different than period, |
| 2328 | * then this bucket is an exponential backoff bucket and |
| 2329 | * the scan period will grow exponentially as per formula: |
| 2330 | * actual_period(N) = period ^ (N/(step_count+1)) to a |
| 2331 | * maximum period of max_period |
| 2332 | * @exponent: for exponential back off bucket: multiplier: |
| 2333 | * new_period = old_period * exponent |
| 2334 | * @step_count: for exponential back off bucket, number of scans performed |
| 2335 | * at a given period and until the exponent is applied |
| 2336 | * @numChannels: channels to scan; these may include DFS channels |
| 2337 | * Note that a given channel may appear in multiple buckets |
| 2338 | * @min_dwell_time_active: per bucket minimum active dwell time |
| 2339 | * @max_dwell_time_active: per bucket maximum active dwell time |
| 2340 | * @min_dwell_time_passive: per bucket minimum passive dwell time |
| 2341 | * @max_dwell_time_passive: per bucket maximum passive dwell time |
| 2342 | * @channels: Channel list |
| 2343 | */ |
| 2344 | struct wifi_scan_bucket_params { |
| 2345 | uint8_t bucket; |
| 2346 | enum wmi_wifi_band band; |
| 2347 | uint32_t period; |
| 2348 | uint32_t reportEvents; |
| 2349 | uint32_t max_period; |
| 2350 | uint32_t exponent; |
| 2351 | uint32_t step_count; |
| 2352 | uint32_t numChannels; |
| 2353 | uint32_t min_dwell_time_active; |
| 2354 | uint32_t max_dwell_time_active; |
| 2355 | uint32_t min_dwell_time_passive; |
| 2356 | uint32_t max_dwell_time_passive; |
| 2357 | struct wifi_scan_channelspec_params channels[WMI_WLAN_EXTSCAN_MAX_CHANNELS]; |
| 2358 | }; |
| 2359 | |
| 2360 | /** |
| 2361 | * struct wifi_scan_cmd_req_params - wifi scan command request params |
| 2362 | * @basePeriod: base timer period |
| 2363 | * @maxAPperScan: max ap per scan |
| 2364 | * @report_threshold_percent: report threshold |
| 2365 | * in %, when buffer is this much full, wake up host |
| 2366 | * @report_threshold_num_scans: report threshold number of scans |
| 2367 | * in number of scans, wake up host after these many scans |
| 2368 | * @requestId: request id |
| 2369 | * @sessionId: session id |
| 2370 | * @numBuckets: number of buckets |
| 2371 | * @min_dwell_time_active: per bucket minimum active dwell time |
| 2372 | * @max_dwell_time_active: per bucket maximum active dwell time |
| 2373 | * @min_dwell_time_passive: per bucket minimum passive dwell time |
| 2374 | * @max_dwell_time_passive: per bucket maximum passive dwell time |
| 2375 | * @configuration_flags: configuration flags |
Gupta, Kapil | 7b76800 | 2016-04-25 19:14:19 +0530 | [diff] [blame] | 2376 | * @extscan_adaptive_dwell_mode: adaptive dwelltime mode for extscan |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2377 | * @buckets: buckets array |
| 2378 | */ |
| 2379 | struct wifi_scan_cmd_req_params { |
| 2380 | uint32_t basePeriod; |
| 2381 | uint32_t maxAPperScan; |
| 2382 | |
| 2383 | uint32_t report_threshold_percent; |
| 2384 | uint32_t report_threshold_num_scans; |
| 2385 | |
| 2386 | uint32_t requestId; |
| 2387 | uint8_t sessionId; |
| 2388 | uint32_t numBuckets; |
| 2389 | |
| 2390 | uint32_t min_dwell_time_active; |
| 2391 | uint32_t max_dwell_time_active; |
| 2392 | uint32_t min_dwell_time_passive; |
| 2393 | uint32_t max_dwell_time_passive; |
| 2394 | uint32_t configuration_flags; |
Gupta, Kapil | 7b76800 | 2016-04-25 19:14:19 +0530 | [diff] [blame] | 2395 | enum wmi_dwelltime_adaptive_mode extscan_adaptive_dwell_mode; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2396 | struct wifi_scan_bucket_params buckets[WMI_WLAN_EXTSCAN_MAX_BUCKETS]; |
| 2397 | }; |
| 2398 | |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2399 | #define WMI_CFG_VALID_CHANNEL_LIST_LEN 100 |
Govind Singh | c7cd2d6 | 2016-06-21 14:33:26 +0530 | [diff] [blame] | 2400 | /* Occupied channel list remains static */ |
| 2401 | #define WMI_CHANNEL_LIST_STATIC 1 |
| 2402 | /* Occupied channel list can be learnt after init */ |
| 2403 | #define WMI_CHANNEL_LIST_DYNAMIC_INIT 2 |
| 2404 | /* Occupied channel list can be learnt after flush */ |
| 2405 | #define WMI_CHANNEL_LIST_DYNAMIC_FLUSH 3 |
| 2406 | /* Occupied channel list can be learnt after update */ |
| 2407 | #define WMI_CHANNEL_LIST_DYNAMIC_UPDATE 4 |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2408 | |
| 2409 | /** |
| 2410 | * struct plm_req_params - plm req parameter |
| 2411 | * @diag_token: Dialog token |
| 2412 | * @meas_token: measurement token |
| 2413 | * @num_bursts: total number of bursts |
| 2414 | * @burst_int: burst interval in seconds |
| 2415 | * @meas_duration:in TU's,STA goes off-ch |
| 2416 | * @burst_len: no of times the STA should cycle through PLM ch list |
| 2417 | * @desired_tx_pwr: desired tx power |
| 2418 | * @mac_addr: MC dest addr |
| 2419 | * @plm_num_ch: channel numbers |
| 2420 | * @plm_ch_list: channel list |
| 2421 | * @session_id: session id |
| 2422 | * @enable: enable/disable |
| 2423 | */ |
| 2424 | struct plm_req_params { |
| 2425 | uint16_t diag_token; |
| 2426 | uint16_t meas_token; |
| 2427 | uint16_t num_bursts; |
| 2428 | uint16_t burst_int; |
| 2429 | uint16_t meas_duration; |
| 2430 | /* no of times the STA should cycle through PLM ch list */ |
| 2431 | uint8_t burst_len; |
| 2432 | int8_t desired_tx_pwr; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2433 | struct qdf_mac_addr mac_addr; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2434 | /* no of channels */ |
| 2435 | uint8_t plm_num_ch; |
| 2436 | /* channel numbers */ |
| 2437 | uint8_t plm_ch_list[WMI_CFG_VALID_CHANNEL_LIST_LEN]; |
| 2438 | uint8_t session_id; |
| 2439 | bool enable; |
| 2440 | }; |
Naveen Rawat | d5ffe15 | 2016-04-14 23:42:46 -0700 | [diff] [blame] | 2441 | |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 2442 | #define MAX_SSID_ALLOWED_LIST 4 |
| 2443 | #define MAX_BSSID_AVOID_LIST 16 |
| 2444 | #define MAX_BSSID_FAVORED 16 |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2445 | |
| 2446 | |
| 2447 | /** |
| 2448 | * struct mac_ts_info_tfc - mac ts info parameters |
| 2449 | * @burstSizeDefn: burst size |
| 2450 | * @reserved: reserved |
| 2451 | * @ackPolicy: ack policy |
| 2452 | * @psb: psb |
| 2453 | * @aggregation: aggregation |
| 2454 | * @accessPolicy: access policy |
| 2455 | * @direction: direction |
| 2456 | * @tsid: direction |
| 2457 | * @trafficType: traffic type |
| 2458 | */ |
| 2459 | struct mac_ts_info_tfc { |
| 2460 | #ifndef ANI_LITTLE_BIT_ENDIAN |
| 2461 | uint8_t burstSizeDefn:1; |
| 2462 | uint8_t reserved:7; |
| 2463 | #else |
| 2464 | uint8_t reserved:7; |
| 2465 | uint8_t burstSizeDefn:1; |
| 2466 | #endif |
| 2467 | |
| 2468 | #ifndef ANI_LITTLE_BIT_ENDIAN |
| 2469 | uint16_t ackPolicy:2; |
| 2470 | uint16_t userPrio:3; |
| 2471 | uint16_t psb:1; |
| 2472 | uint16_t aggregation:1; |
| 2473 | uint16_t accessPolicy:2; |
| 2474 | uint16_t direction:2; |
| 2475 | uint16_t tsid:4; |
| 2476 | uint16_t trafficType:1; |
| 2477 | #else |
| 2478 | uint16_t trafficType:1; |
| 2479 | uint16_t tsid:4; |
| 2480 | uint16_t direction:2; |
| 2481 | uint16_t accessPolicy:2; |
| 2482 | uint16_t aggregation:1; |
| 2483 | uint16_t psb:1; |
| 2484 | uint16_t userPrio:3; |
| 2485 | uint16_t ackPolicy:2; |
| 2486 | #endif |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2487 | } qdf_packed; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2488 | |
| 2489 | /** |
| 2490 | * struct mac_ts_info_sch - mac ts info schedule parameters |
| 2491 | * @rsvd: reserved |
| 2492 | * @schedule: schedule bit |
| 2493 | */ |
| 2494 | struct mac_ts_info_sch { |
| 2495 | #ifndef ANI_LITTLE_BIT_ENDIAN |
| 2496 | uint8_t rsvd:7; |
| 2497 | uint8_t schedule:1; |
| 2498 | #else |
| 2499 | uint8_t schedule:1; |
| 2500 | uint8_t rsvd:7; |
| 2501 | #endif |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2502 | } qdf_packed; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2503 | |
| 2504 | /** |
| 2505 | * struct mac_ts_info_sch - mac ts info schedule parameters |
| 2506 | * @traffic: mac tfc parameter |
| 2507 | * @schedule: mac schedule parameters |
| 2508 | */ |
| 2509 | struct mac_ts_info { |
| 2510 | struct mac_ts_info_tfc traffic; |
| 2511 | struct mac_ts_info_sch schedule; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2512 | } qdf_packed; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2513 | |
| 2514 | /** |
| 2515 | * struct mac_tspec_ie - mac ts spec |
| 2516 | * @type: type |
| 2517 | * @length: length |
| 2518 | * @tsinfo: tsinfo |
| 2519 | * @nomMsduSz: nomMsduSz |
| 2520 | * @maxMsduSz: maxMsduSz |
| 2521 | * @minSvcInterval: minSvcInterval |
| 2522 | * @maxSvcInterval: maxSvcInterval |
| 2523 | * @inactInterval: inactInterval |
| 2524 | * @suspendInterval: suspendInterval |
| 2525 | * @svcStartTime: svcStartTime |
| 2526 | * @minDataRate: minDataRate |
| 2527 | * @meanDataRate: meanDataRate |
| 2528 | * @peakDataRate: peakDataRate |
| 2529 | * @maxBurstSz: maxBurstSz |
| 2530 | * @delayBound: delayBound |
| 2531 | * @minPhyRate: minPhyRate |
| 2532 | * @surplusBw: surplusBw |
| 2533 | * @mediumTime: mediumTime |
| 2534 | */ |
| 2535 | struct mac_tspec_ie { |
| 2536 | uint8_t type; |
| 2537 | uint8_t length; |
| 2538 | struct mac_ts_info tsinfo; |
| 2539 | uint16_t nomMsduSz; |
| 2540 | uint16_t maxMsduSz; |
| 2541 | uint32_t minSvcInterval; |
| 2542 | uint32_t maxSvcInterval; |
| 2543 | uint32_t inactInterval; |
| 2544 | uint32_t suspendInterval; |
| 2545 | uint32_t svcStartTime; |
| 2546 | uint32_t minDataRate; |
| 2547 | uint32_t meanDataRate; |
| 2548 | uint32_t peakDataRate; |
| 2549 | uint32_t maxBurstSz; |
| 2550 | uint32_t delayBound; |
| 2551 | uint32_t minPhyRate; |
| 2552 | uint16_t surplusBw; |
| 2553 | uint16_t mediumTime; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2554 | } qdf_packed; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2555 | |
| 2556 | /** |
| 2557 | * struct add_ts_param - ADDTS related parameters |
| 2558 | * @staIdx: station index |
| 2559 | * @tspecIdx: TSPEC handler uniquely identifying a TSPEC for a STA in a BSS |
| 2560 | * @tspec: tspec value |
| 2561 | * @status: CDF status |
| 2562 | * @sessionId: session id |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2563 | * @tsm_interval: TSM interval period passed from UMAC to WMI |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2564 | * @setRICparams: RIC parameters |
| 2565 | * @sme_session_id: sme session id |
| 2566 | */ |
| 2567 | struct add_ts_param { |
| 2568 | uint16_t staIdx; |
| 2569 | uint16_t tspecIdx; |
| 2570 | struct mac_tspec_ie tspec; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2571 | QDF_STATUS status; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2572 | uint8_t sessionId; |
| 2573 | #ifdef FEATURE_WLAN_ESE |
| 2574 | uint16_t tsm_interval; |
| 2575 | #endif /* FEATURE_WLAN_ESE */ |
| 2576 | #ifdef WLAN_FEATURE_ROAM_OFFLOAD |
| 2577 | uint8_t setRICparams; |
| 2578 | #endif /* WLAN_FEATURE_ROAM_OFFLOAD */ |
| 2579 | uint8_t sme_session_id; |
| 2580 | }; |
| 2581 | |
| 2582 | /** |
| 2583 | * struct delts_req_info - DELTS request parameter |
| 2584 | * @tsinfo: ts info |
| 2585 | * @tspec: ts spec |
| 2586 | * @wmeTspecPresent: wme ts spec flag |
| 2587 | * @wsmTspecPresent: wsm ts spec flag |
| 2588 | * @lleTspecPresent: lle ts spec flag |
| 2589 | */ |
| 2590 | struct delts_req_info { |
| 2591 | struct mac_ts_info tsinfo; |
| 2592 | struct mac_tspec_ie tspec; |
| 2593 | uint8_t wmeTspecPresent:1; |
| 2594 | uint8_t wsmTspecPresent:1; |
| 2595 | uint8_t lleTspecPresent:1; |
| 2596 | }; |
| 2597 | |
| 2598 | /** |
| 2599 | * struct del_ts_params - DELTS related parameters |
| 2600 | * @staIdx: station index |
| 2601 | * @tspecIdx: TSPEC identifier uniquely identifying a TSPEC for a STA in a BSS |
| 2602 | * @bssId: BSSID |
| 2603 | * @sessionId: session id |
| 2604 | * @userPrio: user priority |
| 2605 | * @delTsInfo: DELTS info |
| 2606 | * @setRICparams: RIC parameters |
| 2607 | */ |
| 2608 | struct del_ts_params { |
| 2609 | uint16_t staIdx; |
| 2610 | uint16_t tspecIdx; |
Govind Singh | 8675b86 | 2016-03-28 22:09:18 +0530 | [diff] [blame] | 2611 | uint8_t bssId[IEEE80211_ADDR_LEN]; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2612 | uint8_t sessionId; |
| 2613 | uint8_t userPrio; |
| 2614 | #ifdef WLAN_FEATURE_ROAM_OFFLOAD |
| 2615 | struct delts_req_info delTsInfo; |
| 2616 | uint8_t setRICparams; |
| 2617 | #endif /* WLAN_FEATURE_ROAM_OFFLOAD */ |
| 2618 | }; |
| 2619 | |
| 2620 | /** |
| 2621 | * struct ll_stats_clear_params - ll stats clear parameter |
| 2622 | * @req_id: request id |
| 2623 | * @sta_id: sta id |
| 2624 | * @stats_clear_mask: stats clear mask |
| 2625 | * @stop_req: stop request |
| 2626 | */ |
| 2627 | struct ll_stats_clear_params { |
| 2628 | uint32_t req_id; |
| 2629 | uint8_t sta_id; |
| 2630 | uint32_t stats_clear_mask; |
| 2631 | uint8_t stop_req; |
| 2632 | }; |
| 2633 | |
| 2634 | /** |
| 2635 | * struct ll_stats_set_params - ll stats get parameter |
| 2636 | * @req_id: request id |
| 2637 | * @sta_id: sta id |
| 2638 | * @mpdu_size_threshold: mpdu sixe threshold |
| 2639 | * @aggressive_statistics_gathering: aggressive_statistics_gathering |
| 2640 | */ |
| 2641 | struct ll_stats_set_params { |
| 2642 | uint32_t req_id; |
| 2643 | uint8_t sta_id; |
| 2644 | uint32_t mpdu_size_threshold; |
| 2645 | uint32_t aggressive_statistics_gathering; |
| 2646 | }; |
| 2647 | |
| 2648 | /** |
| 2649 | * struct ll_stats_get_params - ll stats parameter |
| 2650 | * @req_id: request id |
| 2651 | * @sta_id: sta id |
| 2652 | * @param_id_mask: param is mask |
| 2653 | */ |
| 2654 | struct ll_stats_get_params { |
| 2655 | uint32_t req_id; |
| 2656 | uint8_t sta_id; |
| 2657 | uint32_t param_id_mask; |
| 2658 | }; |
| 2659 | |
| 2660 | /** |
| 2661 | * struct pe_stats_req - pe stats parameter |
| 2662 | * @msg_type: message type is same as the request type |
| 2663 | * @msg_len: length of the entire request |
| 2664 | * @sta_id: Per STA stats request must contain valid |
| 2665 | * @stats_mask: categories of stats requested |
| 2666 | * @session_id: wsm ts spec flag |
| 2667 | */ |
| 2668 | struct pe_stats_req { |
| 2669 | /* Common for all types are requests */ |
| 2670 | uint16_t msg_type; |
| 2671 | uint16_t msg_len; |
| 2672 | uint32_t sta_id; |
| 2673 | /* categories of stats requested. look at ePEStatsMask */ |
| 2674 | uint32_t stats_mask; |
| 2675 | uint8_t session_id; |
| 2676 | }; |
| 2677 | |
| 2678 | /** |
| 2679 | * struct link_status_params - link stats parameter |
| 2680 | * @msg_type: message type is same as the request type |
| 2681 | * @msg_len: length of the entire request |
| 2682 | * @link_status: wme ts spec flag |
| 2683 | * @session_id: wsm ts spec flag |
| 2684 | */ |
| 2685 | struct link_status_params { |
| 2686 | uint16_t msg_type; |
| 2687 | uint16_t msg_len; |
| 2688 | uint8_t link_status; |
| 2689 | uint8_t session_id; |
| 2690 | }; |
| 2691 | |
| 2692 | /** |
| 2693 | * struct dhcp_stop_ind_params - DHCP Stop indication message |
| 2694 | * @msgtype: message type is same as the request type |
| 2695 | * @msglen: length of the entire request |
| 2696 | * @device_mode: Mode of the device(ex:STA, AP) |
| 2697 | * @adapter_macaddr: MAC address of the adapter |
| 2698 | * @peer_macaddr: MAC address of the connected peer |
| 2699 | */ |
| 2700 | struct dhcp_stop_ind_params { |
| 2701 | uint16_t msgtype; |
| 2702 | uint16_t msglen; |
| 2703 | uint8_t device_mode; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2704 | struct qdf_mac_addr adapter_macaddr; |
| 2705 | struct qdf_mac_addr peer_macaddr; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2706 | }; |
| 2707 | |
| 2708 | /** |
| 2709 | * struct aggr_add_ts_param - ADDTS parameters |
| 2710 | * @staIdx: station index |
| 2711 | * @tspecIdx: TSPEC handler uniquely identifying a TSPEC for a STA in a BSS |
| 2712 | * @tspec: tspec value |
| 2713 | * @status: CDF status |
| 2714 | * @sessionId: session id |
| 2715 | */ |
| 2716 | struct aggr_add_ts_param { |
| 2717 | uint16_t staIdx; |
| 2718 | uint16_t tspecIdx; |
| 2719 | struct mac_tspec_ie tspec[WMI_QOS_NUM_AC_MAX]; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2720 | QDF_STATUS status[WMI_QOS_NUM_AC_MAX]; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2721 | uint8_t sessionId; |
| 2722 | }; |
| 2723 | |
| 2724 | #define WMI_MAX_FILTER_TEST_DATA_LEN 8 |
| 2725 | #define WMI_MAX_NUM_MULTICAST_ADDRESS 240 |
| 2726 | #define WMI_MAX_NUM_FILTERS 20 |
| 2727 | #define WMI_MAX_NUM_TESTS_PER_FILTER 10 |
| 2728 | |
| 2729 | /** |
| 2730 | * enum packet_filter_type - packet filter type |
| 2731 | * @WMI_RCV_FILTER_TYPE_INVALID: invalid type |
| 2732 | * @WMI_RCV_FILTER_TYPE_FILTER_PKT: filter packet type |
| 2733 | * @WMI_RCV_FILTER_TYPE_BUFFER_PKT: buffer packet type |
| 2734 | * @WMI_RCV_FILTER_TYPE_MAX_ENUM_SIZE: max enum size |
| 2735 | */ |
| 2736 | enum packet_filter_type { |
| 2737 | WMI_RCV_FILTER_TYPE_INVALID, |
| 2738 | WMI_RCV_FILTER_TYPE_FILTER_PKT, |
| 2739 | WMI_RCV_FILTER_TYPE_BUFFER_PKT, |
| 2740 | WMI_RCV_FILTER_TYPE_MAX_ENUM_SIZE |
| 2741 | }; |
| 2742 | |
| 2743 | /** |
| 2744 | * enum packet_protocol_type - packet protocol type |
| 2745 | * @WMI_FILTER_HDR_TYPE_INVALID: invalid type |
| 2746 | * @WMI_FILTER_HDR_TYPE_MAC: mac type |
| 2747 | * @WMI_FILTER_HDR_TYPE_ARP: trp type |
| 2748 | * @WMI_FILTER_HDR_TYPE_IPV4: ipv4 type |
| 2749 | * @WMI_FILTER_HDR_TYPE_IPV6: ipv6 type |
| 2750 | * @WMI_FILTER_HDR_TYPE_UDP: udp type |
| 2751 | * @WMI_FILTER_HDR_TYPE_MAX: max type |
| 2752 | */ |
| 2753 | enum packet_protocol_type { |
| 2754 | WMI_FILTER_HDR_TYPE_INVALID, |
| 2755 | WMI_FILTER_HDR_TYPE_MAC, |
| 2756 | WMI_FILTER_HDR_TYPE_ARP, |
| 2757 | WMI_FILTER_HDR_TYPE_IPV4, |
| 2758 | WMI_FILTER_HDR_TYPE_IPV6, |
| 2759 | WMI_FILTER_HDR_TYPE_UDP, |
| 2760 | WMI_FILTER_HDR_TYPE_MAX |
| 2761 | }; |
| 2762 | |
| 2763 | /** |
| 2764 | * enum packet_filter_comp_type - packet filter comparison type |
| 2765 | * @WMI_FILTER_CMP_TYPE_INVALID: invalid type |
| 2766 | * @WMI_FILTER_CMP_TYPE_EQUAL: type equal |
| 2767 | * @WMI_FILTER_CMP_TYPE_MASK_EQUAL: mask equal |
| 2768 | * @WMI_FILTER_CMP_TYPE_NOT_EQUAL: type not equal |
| 2769 | * @WMI_FILTER_CMP_TYPE_MASK_NOT_EQUAL: mask not equal |
| 2770 | * @WMI_FILTER_CMP_TYPE_MAX: max type |
| 2771 | */ |
| 2772 | enum packet_filter_comp_type { |
| 2773 | WMI_FILTER_CMP_TYPE_INVALID, |
| 2774 | WMI_FILTER_CMP_TYPE_EQUAL, |
| 2775 | WMI_FILTER_CMP_TYPE_MASK_EQUAL, |
| 2776 | WMI_FILTER_CMP_TYPE_NOT_EQUAL, |
| 2777 | WMI_FILTER_CMP_TYPE_MASK_NOT_EQUAL, |
| 2778 | WMI_FILTER_CMP_TYPE_MAX |
| 2779 | }; |
| 2780 | |
| 2781 | /** |
| 2782 | * struct rcv_pkt_filter_params - recieve packet filter parameters |
| 2783 | * @protocolLayer - protocol layer |
| 2784 | * @cmpFlag - comparison flag |
| 2785 | * @dataLength - data length |
| 2786 | * @dataOffset - data offset |
| 2787 | * @reserved - resserved |
| 2788 | * @compareData - compare data |
| 2789 | * @dataMask - data mask |
| 2790 | */ |
| 2791 | struct rcv_pkt_filter_params { |
| 2792 | enum packet_protocol_type protocolLayer; |
| 2793 | enum packet_filter_comp_type cmpFlag; |
| 2794 | uint16_t dataLength; |
| 2795 | uint8_t dataOffset; |
| 2796 | uint8_t reserved; |
| 2797 | uint8_t compareData[WMI_MAX_FILTER_TEST_DATA_LEN]; |
| 2798 | uint8_t dataMask[WMI_MAX_FILTER_TEST_DATA_LEN]; |
| 2799 | }; |
| 2800 | |
| 2801 | /** |
| 2802 | * struct rcv_pkt_filter_config - recieve packet filter info |
| 2803 | * @filterId - filter id |
| 2804 | * @filterType - filter type |
| 2805 | * @numFieldParams - no of fields |
| 2806 | * @coalesceTime - reserved parameter |
| 2807 | * @self_macaddr - self mac address |
| 2808 | * @bssid - Bssid of the connected AP |
| 2809 | * @paramsData - data parameter |
| 2810 | */ |
| 2811 | struct rcv_pkt_filter_config { |
| 2812 | uint8_t filterId; |
| 2813 | enum packet_filter_type filterType; |
| 2814 | uint32_t numFieldParams; |
| 2815 | uint32_t coalesceTime; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 2816 | struct qdf_mac_addr self_macaddr; |
| 2817 | struct qdf_mac_addr bssid; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2818 | struct rcv_pkt_filter_params paramsData[WMI_MAX_NUM_TESTS_PER_FILTER]; |
| 2819 | }; |
| 2820 | |
| 2821 | /** |
| 2822 | * struct vdev_ie_info_param - IE info |
| 2823 | * @vdev_id - vdev for which the IE is being sent |
| 2824 | * @ie_id - ID of the IE |
| 2825 | * @length - length of the IE data |
| 2826 | * @data - IE data |
| 2827 | * |
| 2828 | * This structure is used to store the IE information. |
| 2829 | */ |
| 2830 | struct vdev_ie_info_param { |
| 2831 | uint32_t vdev_id; |
| 2832 | uint32_t ie_id; |
| 2833 | uint32_t length; |
Selvaraj, Sridhar | ce06429 | 2016-07-25 16:25:14 +0530 | [diff] [blame] | 2834 | uint32_t ie_source; |
Naveen Rawat | 7126888 | 2016-08-03 16:41:33 -0700 | [diff] [blame] | 2835 | uint32_t band; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2836 | uint8_t *data; |
| 2837 | }; |
| 2838 | |
| 2839 | #define WMI_MAX_NUM_FW_SEGMENTS 4 |
| 2840 | |
| 2841 | /** |
| 2842 | * struct fw_dump_seg_req_param - individual segment details |
| 2843 | * @seg_id - segment id. |
| 2844 | * @seg_start_addr_lo - lower address of the segment. |
| 2845 | * @seg_start_addr_hi - higher address of the segment. |
| 2846 | * @seg_length - length of the segment. |
| 2847 | * @dst_addr_lo - lower address of the destination buffer. |
| 2848 | * @dst_addr_hi - higher address of the destination buffer. |
| 2849 | * |
| 2850 | * This structure carries the information to firmware about the |
| 2851 | * individual segments. This structure is part of firmware memory |
| 2852 | * dump request. |
| 2853 | */ |
| 2854 | struct fw_dump_seg_req_param { |
| 2855 | uint8_t seg_id; |
| 2856 | uint32_t seg_start_addr_lo; |
| 2857 | uint32_t seg_start_addr_hi; |
| 2858 | uint32_t seg_length; |
| 2859 | uint32_t dst_addr_lo; |
| 2860 | uint32_t dst_addr_hi; |
| 2861 | }; |
| 2862 | |
| 2863 | /** |
| 2864 | * struct fw_dump_req_param - firmware memory dump request details. |
| 2865 | * @request_id - request id. |
| 2866 | * @num_seg - requested number of segments. |
| 2867 | * @fw_dump_seg_req - individual segment information. |
| 2868 | * |
| 2869 | * This structure carries information about the firmware |
| 2870 | * memory dump request. |
| 2871 | */ |
| 2872 | struct fw_dump_req_param { |
| 2873 | uint32_t request_id; |
| 2874 | uint32_t num_seg; |
| 2875 | struct fw_dump_seg_req_param segment[WMI_MAX_NUM_FW_SEGMENTS]; |
| 2876 | }; |
| 2877 | |
| 2878 | #define WMI_TDLS_MAX_SUPP_CHANNELS 128 |
| 2879 | #define WMI_TDLS_MAX_SUPP_OPER_CLASSES 32 |
| 2880 | #define WMI_2_4_GHZ_MAX_FREQ 3000 |
| 2881 | |
| 2882 | /** |
| 2883 | * struct tdls_update_ch_params - channel parameters |
| 2884 | * @chanId: ID of the channel |
| 2885 | * @pwr: power level |
| 2886 | * @dfsSet: is dfs supported or not |
| 2887 | * @half_rate: is the channel operating at 10MHz |
| 2888 | * @quarter_rate: is the channel operating at 5MHz |
| 2889 | */ |
| 2890 | struct tdls_update_ch_params { |
| 2891 | uint8_t chanId; |
| 2892 | uint8_t pwr; |
| 2893 | bool dfsSet; |
| 2894 | bool half_rate; |
| 2895 | bool quarter_rate; |
| 2896 | }; |
| 2897 | |
| 2898 | /** |
| 2899 | * struct tdls_peer_cap_params - TDLS peer capablities parameters |
| 2900 | * @isPeerResponder: is peer responder or not |
| 2901 | * @peerUapsdQueue: peer uapsd queue |
| 2902 | * @peerMaxSp: peer max SP value |
| 2903 | * @peerBuffStaSupport: peer buffer sta supported or not |
| 2904 | * @peerOffChanSupport: peer offchannel support |
| 2905 | * @peerCurrOperClass: peer current operating class |
| 2906 | * @selfCurrOperClass: self current operating class |
| 2907 | * @peerChanLen: peer channel length |
| 2908 | * @peerChan: peer channel list |
| 2909 | * @peerOperClassLen: peer operating class length |
| 2910 | * @peerOperClass: peer operating class |
| 2911 | * @prefOffChanNum: peer offchannel number |
| 2912 | * @prefOffChanBandwidth: peer offchannel bandwidth |
| 2913 | * @opClassForPrefOffChan: operating class for offchannel |
| 2914 | */ |
| 2915 | struct tdls_peer_cap_params { |
| 2916 | uint8_t isPeerResponder; |
| 2917 | uint8_t peerUapsdQueue; |
| 2918 | uint8_t peerMaxSp; |
| 2919 | uint8_t peerBuffStaSupport; |
| 2920 | uint8_t peerOffChanSupport; |
| 2921 | uint8_t peerCurrOperClass; |
| 2922 | uint8_t selfCurrOperClass; |
| 2923 | uint8_t peerChanLen; |
| 2924 | struct tdls_update_ch_params peerChan[WMI_TDLS_MAX_SUPP_CHANNELS]; |
| 2925 | uint8_t peerOperClassLen; |
| 2926 | uint8_t peerOperClass[WMI_TDLS_MAX_SUPP_OPER_CLASSES]; |
| 2927 | uint8_t prefOffChanNum; |
| 2928 | uint8_t prefOffChanBandwidth; |
| 2929 | uint8_t opClassForPrefOffChan; |
| 2930 | }; |
| 2931 | |
| 2932 | /** |
| 2933 | * struct tdls_peer_state_params - TDLS peer state parameters |
| 2934 | * @vdevId: vdev id |
| 2935 | * @peerMacAddr: peer mac address |
| 2936 | * @peerCap: peer capabality |
| 2937 | */ |
| 2938 | struct tdls_peer_state_params { |
| 2939 | uint32_t vdevId; |
Govind Singh | 8675b86 | 2016-03-28 22:09:18 +0530 | [diff] [blame] | 2940 | uint8_t peerMacAddr[IEEE80211_ADDR_LEN]; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2941 | uint32_t peerState; |
| 2942 | struct tdls_peer_cap_params peerCap; |
| 2943 | }; |
| 2944 | |
| 2945 | /** |
| 2946 | * struct wmi_tdls_params - TDLS parameters |
| 2947 | * @vdev_id: vdev id |
| 2948 | * @tdls_state: TDLS state |
| 2949 | * @notification_interval_ms: notification inerval |
| 2950 | * @tx_discovery_threshold: tx discovery threshold |
| 2951 | * @tx_teardown_threshold: tx teardown threashold |
| 2952 | * @rssi_teardown_threshold: RSSI teardown threshold |
| 2953 | * @rssi_delta: RSSI delta |
| 2954 | * @tdls_options: TDLS options |
| 2955 | * @peer_traffic_ind_window: raffic indication window |
| 2956 | * @peer_traffic_response_timeout: traffic response timeout |
| 2957 | * @puapsd_mask: uapsd mask |
| 2958 | * @puapsd_inactivity_time: uapsd inactivity time |
| 2959 | * @puapsd_rx_frame_threshold: uapsd rx frame threshold |
| 2960 | * @teardown_notification_ms: tdls teardown notification interval |
| 2961 | * @tdls_peer_kickout_threshold: tdls packet threshold for |
| 2962 | * peer kickout operation |
| 2963 | */ |
| 2964 | struct wmi_tdls_params { |
| 2965 | uint32_t vdev_id; |
| 2966 | uint32_t tdls_state; |
| 2967 | uint32_t notification_interval_ms; |
| 2968 | uint32_t tx_discovery_threshold; |
| 2969 | uint32_t tx_teardown_threshold; |
| 2970 | int32_t rssi_teardown_threshold; |
| 2971 | int32_t rssi_delta; |
| 2972 | uint32_t tdls_options; |
| 2973 | uint32_t peer_traffic_ind_window; |
| 2974 | uint32_t peer_traffic_response_timeout; |
| 2975 | uint32_t puapsd_mask; |
| 2976 | uint32_t puapsd_inactivity_time; |
| 2977 | uint32_t puapsd_rx_frame_threshold; |
| 2978 | uint32_t teardown_notification_ms; |
| 2979 | uint32_t tdls_peer_kickout_threshold; |
| 2980 | }; |
| 2981 | |
| 2982 | /** |
| 2983 | * struct tdls_chan_switch_params - channel switch parameter structure |
| 2984 | * @vdev_id: vdev ID |
| 2985 | * @peer_mac_addr: Peer mac address |
| 2986 | * @tdls_off_ch_bw_offset: Target off-channel bandwitdh offset |
| 2987 | * @tdls_off_ch: Target Off Channel |
| 2988 | * @oper_class: Operating class for target channel |
| 2989 | * @is_responder: Responder or initiator |
| 2990 | */ |
| 2991 | struct tdls_channel_switch_params { |
| 2992 | uint32_t vdev_id; |
Govind Singh | 8675b86 | 2016-03-28 22:09:18 +0530 | [diff] [blame] | 2993 | uint8_t peer_mac_addr[IEEE80211_ADDR_LEN]; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 2994 | uint16_t tdls_off_ch_bw_offset; |
| 2995 | uint8_t tdls_off_ch; |
| 2996 | uint8_t tdls_sw_mode; |
| 2997 | uint8_t oper_class; |
| 2998 | uint8_t is_responder; |
| 2999 | }; |
| 3000 | |
| 3001 | /** |
| 3002 | * struct dhcp_offload_info_params - dhcp offload parameters |
| 3003 | * @vdev_id: request data length |
| 3004 | * @dhcpSrvOffloadEnabled: dhcp offload enabled |
| 3005 | * @dhcpClientNum: dhcp client no |
| 3006 | * @dhcpSrvIP: dhcp server ip |
| 3007 | */ |
| 3008 | struct dhcp_offload_info_params { |
| 3009 | uint32_t vdev_id; |
| 3010 | uint32_t dhcpSrvOffloadEnabled; |
| 3011 | uint32_t dhcpClientNum; |
| 3012 | uint32_t dhcpSrvIP; |
| 3013 | }; |
| 3014 | |
| 3015 | /** |
| 3016 | * struct nan_req_params - NAN request params |
| 3017 | * @request_data_len: request data length |
| 3018 | * @request_data: request data |
| 3019 | */ |
| 3020 | struct nan_req_params { |
| 3021 | uint16_t request_data_len; |
| 3022 | uint8_t request_data[]; |
| 3023 | }; |
| 3024 | |
| 3025 | |
| 3026 | /** |
| 3027 | * struct app_type2_params - app type2parameter |
| 3028 | * @vdev_id: vdev id |
| 3029 | * @rc4_key: rc4 key |
| 3030 | * @rc4_key_len: rc4 key length |
| 3031 | * @ip_id: NC id |
| 3032 | * @ip_device_ip: NC IP addres |
| 3033 | * @ip_server_ip: Push server IP address |
| 3034 | * @tcp_src_port: NC TCP port |
| 3035 | * @tcp_dst_port: Push server TCP port |
| 3036 | * @tcp_seq: tcp sequence |
| 3037 | * @tcp_ack_seq: tcp ack sequence |
| 3038 | * @keepalive_init: Initial ping interval |
| 3039 | * @keepalive_min: Minimum ping interval |
| 3040 | * @keepalive_max: Maximum ping interval |
| 3041 | * @keepalive_inc: Increment of ping interval |
| 3042 | * @gateway_mac: gateway mac address |
| 3043 | * @tcp_tx_timeout_val: tcp tx timeout value |
| 3044 | * @tcp_rx_timeout_val: tcp rx timeout value |
| 3045 | */ |
| 3046 | struct app_type2_params { |
| 3047 | uint8_t vdev_id; |
| 3048 | uint8_t rc4_key[16]; |
| 3049 | uint32_t rc4_key_len; |
| 3050 | /** ip header parameter */ |
| 3051 | uint32_t ip_id; |
| 3052 | uint32_t ip_device_ip; |
| 3053 | uint32_t ip_server_ip; |
| 3054 | /** tcp header parameter */ |
| 3055 | uint16_t tcp_src_port; |
| 3056 | uint16_t tcp_dst_port; |
| 3057 | uint32_t tcp_seq; |
| 3058 | uint32_t tcp_ack_seq; |
| 3059 | uint32_t keepalive_init; |
| 3060 | uint32_t keepalive_min; |
| 3061 | uint32_t keepalive_max; |
| 3062 | uint32_t keepalive_inc; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 3063 | struct qdf_mac_addr gateway_mac; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3064 | uint32_t tcp_tx_timeout_val; |
| 3065 | uint32_t tcp_rx_timeout_val; |
| 3066 | }; |
| 3067 | |
| 3068 | /** |
| 3069 | * struct app_type1_params - app type1 parameter |
| 3070 | * @vdev_id: vdev id |
| 3071 | * @wakee_mac_addr: mac address |
| 3072 | * @identification_id: identification id |
| 3073 | * @password: password |
| 3074 | * @id_length: id length |
| 3075 | * @pass_length: password length |
| 3076 | */ |
| 3077 | struct app_type1_params { |
| 3078 | uint8_t vdev_id; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 3079 | struct qdf_mac_addr wakee_mac_addr; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3080 | uint8_t identification_id[8]; |
| 3081 | uint8_t password[16]; |
| 3082 | uint32_t id_length; |
| 3083 | uint32_t pass_length; |
| 3084 | }; |
| 3085 | |
| 3086 | /** |
| 3087 | * enum wmi_ext_wow_type - wow type |
| 3088 | * @WMI_EXT_WOW_TYPE_APP_TYPE1: only enable wakeup for app type1 |
| 3089 | * @WMI_EXT_WOW_TYPE_APP_TYPE2: only enable wakeup for app type2 |
| 3090 | * @WMI_EXT_WOW_TYPE_APP_TYPE1_2: enable wakeup for app type1&2 |
| 3091 | */ |
| 3092 | enum wmi_ext_wow_type { |
| 3093 | WMI_EXT_WOW_TYPE_APP_TYPE1, |
| 3094 | WMI_EXT_WOW_TYPE_APP_TYPE2, |
| 3095 | WMI_EXT_WOW_TYPE_APP_TYPE1_2, |
| 3096 | }; |
| 3097 | |
| 3098 | /** |
| 3099 | * struct ext_wow_params - ext wow parameters |
| 3100 | * @vdev_id: vdev id |
| 3101 | * @type: wow type |
| 3102 | * @wakeup_pin_num: wake up gpio no |
| 3103 | */ |
| 3104 | struct ext_wow_params { |
| 3105 | uint8_t vdev_id; |
| 3106 | enum wmi_ext_wow_type type; |
| 3107 | uint32_t wakeup_pin_num; |
| 3108 | }; |
| 3109 | |
| 3110 | /** |
| 3111 | * struct stats_ext_params - ext stats request |
| 3112 | * @vdev_id: vdev id |
| 3113 | * @request_data_len: request data length |
| 3114 | * @request_data: request data |
| 3115 | */ |
| 3116 | struct stats_ext_params { |
| 3117 | uint32_t vdev_id; |
| 3118 | uint32_t request_data_len; |
| 3119 | uint8_t request_data[]; |
| 3120 | }; |
| 3121 | |
| 3122 | #define WMI_PERIODIC_TX_PTRN_MAX_SIZE 1536 |
| 3123 | /** |
| 3124 | * struct periodic_tx_pattern - periodic tx pattern |
| 3125 | * @mac_address: MAC Address for the adapter |
| 3126 | * @ucPtrnId: Pattern ID |
| 3127 | * @ucPtrnSize: Pattern size |
| 3128 | * @usPtrnIntervalMs: in ms |
| 3129 | * @ucPattern: Pattern buffer |
| 3130 | */ |
| 3131 | struct periodic_tx_pattern { |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 3132 | struct qdf_mac_addr mac_address; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3133 | uint8_t ucPtrnId; |
| 3134 | uint16_t ucPtrnSize; |
| 3135 | uint32_t usPtrnIntervalMs; |
| 3136 | uint8_t ucPattern[WMI_PERIODIC_TX_PTRN_MAX_SIZE]; |
| 3137 | }; |
| 3138 | |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3139 | /** |
| 3140 | * struct flashing_req_params - led flashing parameter |
| 3141 | * @reqId: request id |
| 3142 | * @pattern_id: pattern identifier. 0: disconnected 1: connected |
| 3143 | * @led_x0: led flashing parameter0 |
| 3144 | * @led_x1: led flashing parameter1 |
| 3145 | */ |
| 3146 | struct flashing_req_params { |
| 3147 | uint32_t req_id; |
| 3148 | uint32_t pattern_id; |
| 3149 | uint32_t led_x0; |
| 3150 | uint32_t led_x1; |
| 3151 | }; |
| 3152 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3153 | #define MAX_MEM_CHUNKS 32 |
| 3154 | /** |
| 3155 | * struct wmi_host_mem_chunk - host memory chunk structure |
| 3156 | * @vaddr: Pointer to virtual address |
| 3157 | * @paddr: Physical address |
| 3158 | * @memctx: qdf memory context for mapped address. |
| 3159 | * @len: length of chunk |
| 3160 | * @req_id: request id from target |
| 3161 | */ |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3162 | struct wmi_host_mem_chunk { |
| 3163 | uint32_t *vaddr; |
| 3164 | uint32_t paddr; |
Govind Singh | d7468a5 | 2016-03-09 14:32:57 +0530 | [diff] [blame] | 3165 | qdf_dma_mem_context(memctx); |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3166 | uint32_t len; |
| 3167 | uint32_t req_id; |
| 3168 | }; |
| 3169 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3170 | /** |
| 3171 | * struct target_resource_config - Resource config given to target |
| 3172 | * This structure is union of wmi_resource_config defined |
| 3173 | * by both TLV and non-TLV target. |
| 3174 | */ |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3175 | struct target_resource_config { |
| 3176 | uint32_t num_vdevs; |
| 3177 | uint32_t num_peers; |
| 3178 | uint32_t num_active_peers; |
| 3179 | uint32_t num_offload_peers; |
| 3180 | uint32_t num_offload_reorder_buffs; |
| 3181 | uint32_t num_peer_keys; |
| 3182 | uint32_t num_tids; |
| 3183 | uint32_t ast_skid_limit; |
| 3184 | uint32_t tx_chain_mask; |
| 3185 | uint32_t rx_chain_mask; |
| 3186 | uint32_t rx_timeout_pri[4]; |
| 3187 | uint32_t rx_decap_mode; |
| 3188 | uint32_t scan_max_pending_req; |
| 3189 | uint32_t bmiss_offload_max_vdev; |
| 3190 | uint32_t roam_offload_max_vdev; |
| 3191 | uint32_t roam_offload_max_ap_profiles; |
| 3192 | uint32_t num_mcast_groups; |
| 3193 | uint32_t num_mcast_table_elems; |
| 3194 | uint32_t mcast2ucast_mode; |
| 3195 | uint32_t tx_dbg_log_size; |
| 3196 | uint32_t num_wds_entries; |
| 3197 | uint32_t dma_burst_size; |
| 3198 | uint32_t mac_aggr_delim; |
| 3199 | uint32_t rx_skip_defrag_timeout_dup_detection_check; |
| 3200 | uint32_t vow_config; |
| 3201 | uint32_t gtk_offload_max_vdev; |
| 3202 | uint32_t num_msdu_desc; /* Number of msdu desc */ |
| 3203 | uint32_t max_frag_entries; |
| 3204 | /* End common */ |
| 3205 | |
| 3206 | /* Added in MCL */ |
| 3207 | uint32_t num_tdls_vdevs; |
| 3208 | uint32_t num_tdls_conn_table_entries; |
| 3209 | uint32_t beacon_tx_offload_max_vdev; |
| 3210 | uint32_t num_multicast_filter_entries; |
| 3211 | uint32_t num_wow_filters; |
| 3212 | uint32_t num_keep_alive_pattern; |
| 3213 | uint32_t keep_alive_pattern_size; |
| 3214 | uint32_t max_tdls_concurrent_sleep_sta; |
| 3215 | uint32_t max_tdls_concurrent_buffer_sta; |
| 3216 | uint32_t wmi_send_separate; |
| 3217 | uint32_t num_ocb_vdevs; |
| 3218 | uint32_t num_ocb_channels; |
| 3219 | uint32_t num_ocb_schedules; |
| 3220 | }; |
| 3221 | |
| 3222 | /** |
| 3223 | * struct wmi_wifi_start_log - Structure to store the params sent to start/ |
| 3224 | * stop logging |
| 3225 | * @name: Attribute which indicates the type of logging like per packet |
| 3226 | * statistics, connectivity etc. |
| 3227 | * @verbose_level: Verbose level which can be 0,1,2,3 |
| 3228 | * @flag: Flag field for future use |
| 3229 | */ |
| 3230 | struct wmi_wifi_start_log { |
| 3231 | uint32_t ring_id; |
| 3232 | uint32_t verbose_level; |
| 3233 | uint32_t flag; |
| 3234 | }; |
| 3235 | |
| 3236 | /** |
| 3237 | * struct wmi_pcl_list - Format of PCL |
| 3238 | * @pcl_list: List of preferred channels |
Manishekar Chandrasekaran | b8c5938 | 2016-04-21 19:16:32 +0530 | [diff] [blame] | 3239 | * @weight_list: Weights of the PCL |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3240 | * @pcl_len: Number of channels in the PCL |
| 3241 | */ |
| 3242 | struct wmi_pcl_list { |
| 3243 | uint8_t pcl_list[128]; |
Manishekar Chandrasekaran | b8c5938 | 2016-04-21 19:16:32 +0530 | [diff] [blame] | 3244 | uint8_t weight_list[128]; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3245 | uint32_t pcl_len; |
| 3246 | }; |
| 3247 | |
| 3248 | /** |
Manishekar Chandrasekaran | b8c5938 | 2016-04-21 19:16:32 +0530 | [diff] [blame] | 3249 | * struct wmi_pcl_chan_weights - Params to get the valid weighed list |
| 3250 | * @pcl_list: Preferred channel list already sorted in the order of preference |
| 3251 | * @pcl_len: Length of the PCL |
| 3252 | * @saved_chan_list: Valid channel list updated as part of |
| 3253 | * WMA_UPDATE_CHAN_LIST_REQ |
| 3254 | * @saved_num_chan: Length of the valid channel list |
| 3255 | * @weighed_valid_list: Weights of the valid channel list. This will have one |
| 3256 | * to one mapping with valid_chan_list. FW expects channel order and size to be |
| 3257 | * as per the list provided in WMI_SCAN_CHAN_LIST_CMDID. |
| 3258 | * @weight_list: Weights assigned by policy manager |
| 3259 | */ |
| 3260 | struct wmi_pcl_chan_weights { |
| 3261 | uint8_t pcl_list[MAX_NUM_CHAN]; |
| 3262 | uint32_t pcl_len; |
| 3263 | uint8_t saved_chan_list[MAX_NUM_CHAN]; |
| 3264 | uint32_t saved_num_chan; |
| 3265 | uint8_t weighed_valid_list[MAX_NUM_CHAN]; |
| 3266 | uint8_t weight_list[MAX_NUM_CHAN]; |
| 3267 | }; |
| 3268 | |
| 3269 | /** |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3270 | * struct wmi_hw_mode_params - HW mode params |
| 3271 | * @mac0_tx_ss: MAC0 Tx spatial stream |
| 3272 | * @mac0_rx_ss: MAC0 Rx spatial stream |
| 3273 | * @mac1_tx_ss: MAC1 Tx spatial stream |
| 3274 | * @mac1_rx_ss: MAC1 Rx spatial stream |
| 3275 | * @mac0_bw: MAC0 bandwidth |
| 3276 | * @mac1_bw: MAC1 bandwidth |
| 3277 | * @dbs_cap: DBS capabality |
| 3278 | * @agile_dfs_cap: Agile DFS capabality |
| 3279 | */ |
| 3280 | struct wmi_hw_mode_params { |
| 3281 | uint8_t mac0_tx_ss; |
| 3282 | uint8_t mac0_rx_ss; |
| 3283 | uint8_t mac1_tx_ss; |
| 3284 | uint8_t mac1_rx_ss; |
| 3285 | uint8_t mac0_bw; |
| 3286 | uint8_t mac1_bw; |
| 3287 | uint8_t dbs_cap; |
| 3288 | uint8_t agile_dfs_cap; |
| 3289 | }; |
| 3290 | |
| 3291 | /** |
| 3292 | * struct wmi_dual_mac_config - Dual MAC configuration |
| 3293 | * @scan_config: Scan configuration |
| 3294 | * @fw_mode_config: FW mode configuration |
| 3295 | * @set_dual_mac_cb: Callback function to be executed on response to the command |
| 3296 | */ |
| 3297 | struct wmi_dual_mac_config { |
| 3298 | uint32_t scan_config; |
| 3299 | uint32_t fw_mode_config; |
| 3300 | void *set_dual_mac_cb; |
| 3301 | }; |
| 3302 | |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3303 | /** |
| 3304 | * struct ssid_hotlist_param - param for SSID Hotlist |
| 3305 | * @ssid: SSID which is being hotlisted |
| 3306 | * @band: Band in which the given SSID should be scanned |
| 3307 | * @rssi_low: Low bound on RSSI |
| 3308 | * @rssi_high: High bound on RSSI |
| 3309 | */ |
| 3310 | struct ssid_hotlist_param { |
| 3311 | struct mac_ssid ssid; |
| 3312 | uint8_t band; |
| 3313 | int32_t rssi_low; |
| 3314 | int32_t rssi_high; |
| 3315 | }; |
| 3316 | |
| 3317 | /** |
Himanshu Agarwal | 5f2d048 | 2016-03-09 15:25:44 +0530 | [diff] [blame] | 3318 | * struct roam_scan_filter_params - Structure holding roaming scan |
| 3319 | * parameters |
| 3320 | * @len: length |
| 3321 | * @op_bitmap: bitmap to determine reason of roaming |
| 3322 | * @session_id: vdev id |
| 3323 | * @num_bssid_black_list: The number of BSSID's that we should |
| 3324 | * avoid connecting to. It is like a |
| 3325 | * blacklist of BSSID's. |
| 3326 | * @num_ssid_white_list: The number of SSID profiles that are |
| 3327 | * in the Whitelist. When roaming, we |
| 3328 | * consider the BSSID's with this SSID |
| 3329 | * also for roaming apart from the connected one's |
| 3330 | * @num_bssid_preferred_list: Number of BSSID's which have a preference over |
| 3331 | * others |
| 3332 | * @bssid_avoid_list: Blacklist SSID's |
| 3333 | * @ssid_allowed_list: Whitelist SSID's |
| 3334 | * @bssid_favored: Favorable BSSID's |
| 3335 | * @bssid_favored_factor: RSSI to be added to this BSSID to prefer it |
| 3336 | * |
| 3337 | * This structure holds all the key parameters related to |
| 3338 | * initial connection and roaming connections. |
| 3339 | */ |
| 3340 | |
| 3341 | struct roam_scan_filter_params { |
| 3342 | uint32_t len; |
| 3343 | uint32_t op_bitmap; |
| 3344 | uint8_t session_id; |
| 3345 | uint32_t num_bssid_black_list; |
| 3346 | uint32_t num_ssid_white_list; |
| 3347 | uint32_t num_bssid_preferred_list; |
| 3348 | struct qdf_mac_addr bssid_avoid_list[MAX_BSSID_AVOID_LIST]; |
| 3349 | struct mac_ssid ssid_allowed_list[MAX_SSID_ALLOWED_LIST]; |
| 3350 | struct qdf_mac_addr bssid_favored[MAX_BSSID_FAVORED]; |
| 3351 | uint8_t bssid_favored_factor[MAX_BSSID_FAVORED]; |
| 3352 | }; |
| 3353 | |
| 3354 | /** |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3355 | * struct ssid_hotlist_request_params - set SSID hotlist request struct |
| 3356 | * @request_id: ID of the request |
| 3357 | * @session_id: ID of the session |
| 3358 | * @lost_ssid_sample_size: Number of consecutive scans in which the SSID |
| 3359 | * must not be seen in order to consider the SSID "lost" |
| 3360 | * @ssid_count: Number of valid entries in the @ssids array |
| 3361 | * @ssids: Array that defines the SSIDs that are in the hotlist |
| 3362 | */ |
| 3363 | struct ssid_hotlist_request_params { |
| 3364 | uint32_t request_id; |
| 3365 | uint8_t session_id; |
| 3366 | uint32_t lost_ssid_sample_size; |
| 3367 | uint32_t ssid_count; |
| 3368 | struct ssid_hotlist_param ssids[WMI_EXTSCAN_MAX_HOTLIST_SSIDS]; |
| 3369 | }; |
| 3370 | |
| 3371 | /** |
| 3372 | * struct wmi_unit_test_cmd - unit test command parameters |
| 3373 | * @vdev_id: vdev id |
| 3374 | * @module_id: module id |
| 3375 | * @num_args: number of arguments |
| 3376 | * @args: arguments |
| 3377 | */ |
| 3378 | struct wmi_unit_test_cmd { |
| 3379 | uint32_t vdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3380 | uint32_t module_id; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3381 | uint32_t num_args; |
| 3382 | uint32_t args[WMI_MAX_NUM_ARGS]; |
| 3383 | }; |
| 3384 | |
| 3385 | /** |
| 3386 | * struct wmi_roam_invoke_cmd - roam invoke command |
| 3387 | * @vdev_id: vdev id |
| 3388 | * @bssid: mac address |
| 3389 | * @channel: channel |
Naveen Rawat | ccc1b07 | 2017-01-20 17:00:07 -0800 | [diff] [blame] | 3390 | * @frame_len: frame length, includs mac header, fixed params and ies |
| 3391 | * @frame_buf: buffer contaning probe response or beacon |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3392 | */ |
| 3393 | struct wmi_roam_invoke_cmd { |
| 3394 | uint32_t vdev_id; |
| 3395 | uint8_t bssid[IEEE80211_ADDR_LEN]; |
| 3396 | uint32_t channel; |
Naveen Rawat | ccc1b07 | 2017-01-20 17:00:07 -0800 | [diff] [blame] | 3397 | uint32_t frame_len; |
| 3398 | uint8_t *frame_buf; |
Govind Singh | ae85536 | 2016-03-07 14:24:22 +0530 | [diff] [blame] | 3399 | }; |
| 3400 | |
| 3401 | /** |
| 3402 | * struct ext_scan_setbssi_hotlist_params - set hotlist request |
| 3403 | * @requestId: request identifier |
| 3404 | * @sessionId: session identifier |
| 3405 | * @lost_ap_sample_size: number of samples to confirm AP loss |
| 3406 | * @numAp: Number of hotlist APs |
| 3407 | * @ap: hotlist APs |
| 3408 | */ |
| 3409 | struct ext_scan_setbssi_hotlist_params { |
| 3410 | uint32_t requestId; |
| 3411 | uint8_t sessionId; |
| 3412 | |
| 3413 | uint32_t lost_ap_sample_size; |
| 3414 | uint32_t numAp; |
| 3415 | struct ap_threshold_params ap[WMI_WLAN_EXTSCAN_MAX_HOTLIST_APS]; |
| 3416 | }; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3417 | |
| 3418 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3419 | * struct host_mem_req - Host memory request paramseters request by target |
| 3420 | * @req_id: Request id to identify the request. |
| 3421 | * @unit_size: Size of single unit requested. |
| 3422 | * @num_unit_info: Memory chunk info |
| 3423 | * @num_units: number of units requested. |
| 3424 | */ |
| 3425 | typedef struct { |
| 3426 | uint32_t req_id; |
| 3427 | uint32_t unit_size; |
| 3428 | uint32_t num_unit_info; |
| 3429 | uint32_t num_units; |
| 3430 | } host_mem_req; |
| 3431 | |
| 3432 | #define WMI_HOST_DSCP_MAP_MAX (64) |
| 3433 | |
| 3434 | /** |
| 3435 | * struct wmi_host_ext_resource_config - Extended resource config |
| 3436 | * @host_platform_config: Host plaform configuration. |
| 3437 | * @fw_featuew_bitmap: FW feature requested bitmap. |
| 3438 | */ |
| 3439 | typedef struct { |
| 3440 | uint32_t host_platform_config; |
| 3441 | |
| 3442 | #define WMI_HOST_FW_FEATURE_LTEU_SUPPORT 0x0001 |
| 3443 | #define WMI_HOST_FW_FEATURE_COEX_GPIO_SUPPORT 0x0002 |
| 3444 | #define WMI_HOST_FW_FEATURE_AUX_RADIO_SPECTRAL_INTF 0x0004 |
| 3445 | #define WMI_HOST_FW_FEATURE_AUX_RADIO_CHAN_LOAD_INTF 0x0008 |
| 3446 | #define WMI_HOST_FW_FEATURE_BSS_CHANNEL_INFO_64 0x0010 |
| 3447 | #define WMI_HOST_FW_FEATURE_PEER_STATS 0x0020 |
| 3448 | #define WMI_HOST_FW_FEATURE_VDEV_STATS 0x0040 |
| 3449 | /** |
| 3450 | * @brief fw_feature_bitmask - Enable/Disable features in FW |
| 3451 | * @details |
| 3452 | * The bits in fw_feature_bitmask are used as shown by the masks below: |
| 3453 | * 0x0001 - LTEU Config enable/disable |
| 3454 | * 0x0002 - COEX GPIO Config enable/disable |
| 3455 | * 0x0004 - Aux Radio enhancement for spectral scan enable/disable |
| 3456 | * 0x0008 - Aux Radio enhancement for chan load scan enable/disable |
| 3457 | * 0x0010 - BSS channel info stats enable/disable |
| 3458 | * The features in question are enabled by setting |
| 3459 | * the feature's bit to 1, |
| 3460 | * or disabled by setting the feature's bit to 0. |
| 3461 | */ |
| 3462 | uint32_t fw_feature_bitmap; |
| 3463 | |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 3464 | /* WLAN priority GPIO number |
| 3465 | * The target uses a GPIO pin to indicate when it is transmitting |
| 3466 | * high-priority traffic (e.g. beacon, management, or AC_VI) or |
| 3467 | * low-priority traffic (e.g. AC_BE, AC_BK). The HW uses this |
| 3468 | * WLAN GPIO pin to determine whether to abort WLAN tx in favor of |
| 3469 | * BT activity. |
| 3470 | * Which GPIO is used for this WLAN tx traffic priority specification |
| 3471 | * varies between platforms, so the host needs to indicate to the |
| 3472 | * target which GPIO to use. |
| 3473 | */ |
| 3474 | uint32_t wlan_priority_gpio; |
| 3475 | |
Sathish Kumar | 612d0c2 | 2017-01-19 14:57:37 +0530 | [diff] [blame] | 3476 | /* Host will notify target which coex algorithm has to be |
| 3477 | * enabled based on HW, FW capability and device tree config. |
| 3478 | * Till now the coex algorithms were target specific. Now the |
| 3479 | * same target can choose between multiple coex algorithms |
| 3480 | * depending on device tree config on host. For backward |
| 3481 | * compatibility, version support will have option 0 and will |
| 3482 | * rely on FW compile time flags to decide the coex version |
| 3483 | * between VERSION_1, VERSION_2 and VERSION_3. Version info is |
| 3484 | * mandatory from VERSION_4 onwards for any new coex algorithms. |
| 3485 | * |
| 3486 | * 0 = no version support |
| 3487 | * 1 = COEX_VERSION_1 (3 wire coex) |
| 3488 | * 2 = COEX_VERSION_2 (2.5 wire coex) |
| 3489 | * 3 = COEX_VERSION_3 (2.5 wire coex+duty cycle) |
| 3490 | * 4 = COEX_VERSION_4 (4 wire coex) |
| 3491 | */ |
| 3492 | uint32_t coex_version; |
| 3493 | |
| 3494 | /* There are multiple coex implementations on FW to support different |
| 3495 | * hardwares. Since the coex algos are mutually exclusive, host will |
| 3496 | * use below fields to send GPIO info to FW and these GPIO pins will |
| 3497 | * have different usages depending on the feature enabled. This is to |
| 3498 | * avoid adding multiple GPIO fields here for different features. |
| 3499 | * |
| 3500 | * COEX VERSION_4 (4 wire coex) : |
| 3501 | * 4 wire coex feature uses 1 common input request line from BT/ZB/ |
| 3502 | * Thread which interrupts the WLAN target processor directly, 1 input |
| 3503 | * priority line from BT and ZB each, 1 output line to grant access to |
| 3504 | * requesting IOT subsystem. WLAN uses the input priority line to |
| 3505 | * identify the requesting IOT subsystem. Request is granted based on |
| 3506 | * IOT interface priority and WLAN traffic. GPIO pin usage is as below: |
| 3507 | * coex_gpio_pin_1 = BT PRIORITY INPUT GPIO |
| 3508 | * coex_gpio_pin_2 = ZIGBEE PRIORITY INPUT GPIO |
| 3509 | * coex_gpio_pin_3 = GRANT OUTPUT GPIO |
| 3510 | * when a BT active interrupt is raised, WLAN reads |
| 3511 | * BT and ZB priority input GPIO pins to compare against the coex |
| 3512 | * priority table and accordingly sets the grant output GPIO to give |
| 3513 | * access to requesting IOT subsystem. |
| 3514 | */ |
| 3515 | uint32_t coex_gpio_pin_1; |
| 3516 | uint32_t coex_gpio_pin_2; |
| 3517 | uint32_t coex_gpio_pin_3; |
| 3518 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3519 | /* add new members here */ |
| 3520 | } wmi_host_ext_resource_config; |
| 3521 | |
| 3522 | /** |
| 3523 | * struct set_neighbour_rx_params - Neighbour RX params |
| 3524 | * @vdev_id: vdev id |
| 3525 | * @idx: index of param |
| 3526 | * @action: action |
| 3527 | * @type: Type of param |
| 3528 | */ |
| 3529 | struct set_neighbour_rx_params { |
| 3530 | uint8_t vdev_id; |
| 3531 | uint32_t idx; |
| 3532 | uint32_t action; |
| 3533 | uint32_t type; |
| 3534 | }; |
| 3535 | |
| 3536 | /** |
| 3537 | * struct set_fwtest_params - FW test params |
| 3538 | * @arg: FW param id |
| 3539 | * @value: value |
| 3540 | */ |
| 3541 | struct set_fwtest_params { |
| 3542 | uint32_t arg; |
| 3543 | uint32_t value; |
| 3544 | }; |
| 3545 | |
| 3546 | /** |
| 3547 | * struct config_ratemask_params - ratemask config parameters |
| 3548 | * @vdev_id: vdev id |
| 3549 | * @type: Type |
| 3550 | * @lower32: Lower 32 bits |
| 3551 | * @higher32: Hogher 32 bits |
| 3552 | */ |
| 3553 | struct config_ratemask_params { |
| 3554 | uint8_t vdev_id; |
| 3555 | uint8_t type; |
| 3556 | uint32_t lower32; |
| 3557 | uint32_t higher32; |
| 3558 | }; |
| 3559 | |
| 3560 | /** |
| 3561 | * struct peer_add_wds_entry_params - WDS peer entry add params |
| 3562 | * @dest_addr: Pointer to destination macaddr |
| 3563 | * @peer_addr: Pointer to peer mac addr |
| 3564 | * @flags: flags |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 3565 | * @vdev_id: Vdev id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3566 | */ |
| 3567 | struct peer_add_wds_entry_params { |
| 3568 | const uint8_t *dest_addr; |
| 3569 | uint8_t *peer_addr; |
| 3570 | uint32_t flags; |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 3571 | uint32_t vdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3572 | }; |
| 3573 | |
| 3574 | /** |
| 3575 | * struct peer_del_wds_entry_params - WDS peer entry del params |
| 3576 | * @dest_addr: Pointer to destination macaddr |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 3577 | * @vdev_id: Vdev id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3578 | */ |
| 3579 | struct peer_del_wds_entry_params { |
| 3580 | uint8_t *dest_addr; |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 3581 | uint32_t vdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3582 | }; |
| 3583 | |
| 3584 | /** |
| 3585 | * struct peer_updatewds_entry_params - WDS peer entry update params |
| 3586 | * @wds_macaddr: Pointer to destination macaddr |
| 3587 | * @peer_add: Pointer to peer mac addr |
| 3588 | * @flags: flags |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 3589 | * @vdev_id: Vdev id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3590 | */ |
| 3591 | struct peer_update_wds_entry_params { |
| 3592 | uint8_t *wds_macaddr; |
| 3593 | uint8_t *peer_macaddr; |
| 3594 | uint32_t flags; |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 3595 | uint32_t vdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3596 | }; |
| 3597 | |
| 3598 | /** |
| 3599 | * struct set_ps_mode_params - PS mode params |
| 3600 | * @vdev_id: vdev id |
| 3601 | * @psmode: PS mode |
| 3602 | */ |
| 3603 | struct set_ps_mode_params { |
| 3604 | uint8_t vdev_id; |
| 3605 | uint8_t psmode; |
| 3606 | }; |
| 3607 | |
| 3608 | /** |
| 3609 | * @struct tt_level_config - Set Thermal throttlling config |
| 3610 | * @tmplwm: Temperature low water mark |
| 3611 | * @tmphwm: Temperature high water mark |
| 3612 | * @dcoffpercent: dc off percentage |
| 3613 | * @priority: priority |
| 3614 | */ |
| 3615 | typedef struct { |
| 3616 | uint32_t tmplwm; |
| 3617 | uint32_t tmphwm; |
| 3618 | uint32_t dcoffpercent; |
| 3619 | uint32_t priority; |
| 3620 | } tt_level_config; |
| 3621 | |
| 3622 | /** |
| 3623 | * struct thermal_mitigation_params - Thermal mitigation params |
| 3624 | * @enable: Enable/Disable Thermal mitigation |
| 3625 | * @dc: DC |
| 3626 | * @dc_per_event: DC per event |
| 3627 | * @tt_level_config: TT level config params |
| 3628 | */ |
| 3629 | struct thermal_mitigation_params { |
| 3630 | uint32_t enable; |
| 3631 | uint32_t dc; |
| 3632 | uint32_t dc_per_event; |
| 3633 | tt_level_config levelconf[THERMAL_LEVELS]; |
| 3634 | }; |
| 3635 | |
| 3636 | /** |
| 3637 | * struct smart_ant_enable_params - Smart antenna params |
| 3638 | * @enable: Enable/Disable |
| 3639 | * @mode: SA mode |
| 3640 | * @rx_antenna: RX antenna config |
Govind Singh | 41da315 | 2016-05-06 20:20:25 +0530 | [diff] [blame] | 3641 | * @gpio_pin : GPIO pin config |
| 3642 | * @gpio_func : GPIO function config |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3643 | */ |
| 3644 | struct smart_ant_enable_params { |
| 3645 | uint32_t enable; |
| 3646 | uint32_t mode; |
| 3647 | uint32_t rx_antenna; |
Govind Singh | 41da315 | 2016-05-06 20:20:25 +0530 | [diff] [blame] | 3648 | uint32_t gpio_pin[WMI_HAL_MAX_SANTENNA]; |
| 3649 | uint32_t gpio_func[WMI_HAL_MAX_SANTENNA]; |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 3650 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3651 | }; |
| 3652 | |
| 3653 | /** |
| 3654 | * struct smart_ant_rx_ant_params - RX antenna params |
| 3655 | * @antenna: RX antenna |
| 3656 | */ |
| 3657 | struct smart_ant_rx_ant_params { |
| 3658 | uint32_t antenna; |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 3659 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3660 | }; |
| 3661 | |
| 3662 | /** |
| 3663 | * struct smart_ant_tx_ant_params - TX antenna param |
| 3664 | * @antenna_array: Antenna arry |
| 3665 | * @vdev_id: VDEV id |
| 3666 | */ |
| 3667 | struct smart_ant_tx_ant_params { |
| 3668 | uint32_t *antenna_array; |
| 3669 | uint8_t vdev_id; |
| 3670 | }; |
| 3671 | |
| 3672 | /** |
| 3673 | * struct smart_ant_training_info_params - SA training params |
| 3674 | * @vdev_id: VDEV id |
| 3675 | * @rate_array: Rates array |
| 3676 | * @antenna_array: Antenna array |
| 3677 | * @numpkts: num packets for training |
| 3678 | */ |
| 3679 | struct smart_ant_training_info_params { |
| 3680 | uint8_t vdev_id; |
| 3681 | uint32_t *rate_array; |
| 3682 | uint32_t *antenna_array; |
| 3683 | uint32_t numpkts; |
| 3684 | }; |
| 3685 | |
| 3686 | /** |
| 3687 | * struct smart_ant_node_config_params - SA node config params |
| 3688 | * @vdev_id: VDEV id |
| 3689 | * @cmd_id: Command id |
| 3690 | * @args_count: Arguments count |
| 3691 | */ |
| 3692 | struct smart_ant_node_config_params { |
| 3693 | uint8_t vdev_id; |
| 3694 | uint32_t cmd_id; |
| 3695 | uint16_t args_count; |
| 3696 | uint32_t *args_arr; |
| 3697 | }; |
| 3698 | /** |
| 3699 | * struct smart_ant_enable_tx_feedback_params - SA tx feeback params |
| 3700 | * @enable: Enable TX feedback for SA |
| 3701 | */ |
| 3702 | struct smart_ant_enable_tx_feedback_params { |
| 3703 | int enable; |
| 3704 | }; |
| 3705 | |
| 3706 | /** |
| 3707 | * struct vdev_spectral_configure_params - SPectral config params |
| 3708 | * @vdev_id: VDEV id |
| 3709 | * @count: count |
| 3710 | * @period: period |
| 3711 | * @spectral_pri: Spectral priority |
| 3712 | * @fft_size: FFT size |
| 3713 | * @gc_enable: GC enable |
| 3714 | * @restart_enable: restart enabled |
| 3715 | * @noise_floor_ref: Noise floor reference |
| 3716 | * @init_delay: Init delays |
| 3717 | * @nb_tone_thr: NB tone threshold |
| 3718 | * @str_bin_thr: STR BIN threshold |
| 3719 | * @wb_rpt_mode: WB BIN threshold |
| 3720 | * @rssi_rpt_mode: RSSI report mode |
| 3721 | * @rssi_thr: RSSI threshold |
| 3722 | * @pwr_format: Power format |
| 3723 | * @rpt_mode: Report mdoe |
| 3724 | * @bin_scale: BIN scale |
| 3725 | * @dBm_adj: DBM adjust |
| 3726 | * @chn_mask: chain mask |
| 3727 | */ |
| 3728 | struct vdev_spectral_configure_params { |
| 3729 | uint8_t vdev_id; |
| 3730 | uint16_t count; |
| 3731 | uint16_t period; |
| 3732 | uint16_t spectral_pri; |
| 3733 | uint16_t fft_size; |
| 3734 | uint16_t gc_enable; |
| 3735 | uint16_t restart_enable; |
| 3736 | uint16_t noise_floor_ref; |
| 3737 | uint16_t init_delay; |
| 3738 | uint16_t nb_tone_thr; |
| 3739 | uint16_t str_bin_thr; |
| 3740 | uint16_t wb_rpt_mode; |
| 3741 | uint16_t rssi_rpt_mode; |
| 3742 | uint16_t rssi_thr; |
| 3743 | uint16_t pwr_format; |
| 3744 | uint16_t rpt_mode; |
| 3745 | uint16_t bin_scale; |
| 3746 | uint16_t dBm_adj; |
| 3747 | uint16_t chn_mask; |
| 3748 | }; |
| 3749 | |
| 3750 | /** |
| 3751 | * struct vdev_spectral_enable_params - Spectral enabled params |
| 3752 | * @vdev_id: VDEV id |
| 3753 | * @active_valid: Active valid |
| 3754 | * @active: active |
| 3755 | * @enabled_valid: Enabled valid |
| 3756 | * @enabled: enabled |
| 3757 | */ |
| 3758 | struct vdev_spectral_enable_params { |
| 3759 | uint8_t vdev_id; |
| 3760 | uint8_t active_valid; |
| 3761 | uint8_t active; |
| 3762 | uint8_t enabled_valid; |
| 3763 | uint8_t enabled; |
| 3764 | }; |
| 3765 | |
| 3766 | /** |
| 3767 | * struct pdev_set_regdomain_params - PDEV set reg domain params |
| 3768 | * @currentRDinuse: Current Reg domain |
| 3769 | * @currentRD2G: Current Reg domain 2G |
| 3770 | * @currentRD5G: Current Reg domain 5G |
| 3771 | * @ctl_2G: CTL 2G |
| 3772 | * @ctl_5G: CTL 5G |
| 3773 | * @dfsDomain: DFS domain |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 3774 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3775 | */ |
| 3776 | struct pdev_set_regdomain_params { |
| 3777 | uint16_t currentRDinuse; |
| 3778 | uint16_t currentRD2G; |
| 3779 | uint16_t currentRD5G; |
| 3780 | uint32_t ctl_2G; |
| 3781 | uint32_t ctl_5G; |
| 3782 | uint8_t dfsDomain; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 3783 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3784 | }; |
| 3785 | |
| 3786 | /** |
| 3787 | * struct set_quiet_mode_params - Set quiet mode params |
| 3788 | * @enabled: Enabled |
| 3789 | * @period: Quite period |
| 3790 | * @intval: Quite interval |
| 3791 | * @duration: Quite duration |
| 3792 | * @offset: offset |
| 3793 | */ |
| 3794 | struct set_quiet_mode_params { |
| 3795 | uint8_t enabled; |
| 3796 | uint8_t period; |
| 3797 | uint16_t intval; |
| 3798 | uint16_t duration; |
| 3799 | uint16_t offset; |
| 3800 | }; |
| 3801 | |
| 3802 | /** |
| 3803 | * struct set_beacon_filter_params - Set beacon filter params |
| 3804 | * @vdev_id: VDEV id |
| 3805 | * @ie: Pointer to IE fields |
| 3806 | */ |
| 3807 | struct set_beacon_filter_params { |
| 3808 | uint8_t vdev_id; |
| 3809 | uint32_t *ie; |
| 3810 | }; |
| 3811 | |
| 3812 | /** |
| 3813 | * struct remove_beacon_filter_params - Remove beacon filter params |
| 3814 | * @vdev_id: VDEV id |
| 3815 | */ |
| 3816 | struct remove_beacon_filter_params { |
| 3817 | uint8_t vdev_id; |
| 3818 | }; |
| 3819 | |
| 3820 | /** |
| 3821 | * struct mgmt_params - Mgmt params |
| 3822 | * @vdev_id: vdev id |
| 3823 | * @buf_len: lenght of frame buffer |
| 3824 | * @wbuf: frame buffer |
| 3825 | */ |
| 3826 | struct mgmt_params { |
| 3827 | int vdev_id; |
| 3828 | uint32_t buf_len; |
| 3829 | qdf_nbuf_t wbuf; |
| 3830 | }; |
| 3831 | |
| 3832 | /** |
| 3833 | * struct addba_clearresponse_params - Addba clear response params |
| 3834 | * @vdev_id: VDEV id |
| 3835 | */ |
| 3836 | struct addba_clearresponse_params { |
| 3837 | uint8_t vdev_id; |
| 3838 | }; |
| 3839 | |
| 3840 | /** |
| 3841 | * struct addba_send_params - ADDBA send params |
| 3842 | * @vdev_id: vdev id |
| 3843 | * @tidno: TID |
| 3844 | * @buffersize: buffer size |
| 3845 | */ |
| 3846 | struct addba_send_params { |
| 3847 | uint8_t vdev_id; |
| 3848 | uint8_t tidno; |
| 3849 | uint16_t buffersize; |
| 3850 | }; |
| 3851 | |
| 3852 | /** |
| 3853 | * struct delba_send_params - DELBA send params |
| 3854 | * @vdev_id: vdev id |
| 3855 | * @tidno: TID |
| 3856 | * @initiator: initiator |
| 3857 | * @reasoncode: reason code |
| 3858 | */ |
| 3859 | struct delba_send_params { |
| 3860 | uint8_t vdev_id; |
| 3861 | uint8_t tidno; |
| 3862 | uint8_t initiator; |
| 3863 | uint16_t reasoncode; |
| 3864 | }; |
| 3865 | /** |
| 3866 | * struct addba_setresponse_arams - Set ADDBA response params |
| 3867 | * @vdev_id: vdev id |
| 3868 | * @tidno: TID |
| 3869 | * @statuscode: status code in response |
| 3870 | */ |
| 3871 | struct addba_setresponse_params { |
| 3872 | uint8_t vdev_id; |
| 3873 | uint8_t tidno; |
| 3874 | uint16_t statuscode; |
| 3875 | }; |
| 3876 | |
| 3877 | /** |
| 3878 | * struct singleamsdu_params - Single AMSDU params |
| 3879 | * @vdev_id: vdev is |
| 3880 | * @tidno: TID |
| 3881 | */ |
| 3882 | struct singleamsdu_params { |
| 3883 | uint8_t vdev_id; |
| 3884 | uint8_t tidno; |
| 3885 | }; |
| 3886 | |
| 3887 | /** |
| 3888 | * struct set_qbosst_params - Set QBOOST params |
| 3889 | * @vdev_id: vdev id |
| 3890 | * @value: value |
| 3891 | */ |
| 3892 | struct set_qboost_params { |
| 3893 | uint8_t vdev_id; |
| 3894 | uint32_t value; |
| 3895 | }; |
| 3896 | |
| 3897 | /** |
| 3898 | * struct mu_scan_params - MU scan params |
| 3899 | * @id: id |
| 3900 | * @type: type |
| 3901 | * @duration: Duration |
| 3902 | * @lteu_tx_power: LTEU tx power |
| 3903 | */ |
| 3904 | struct mu_scan_params { |
| 3905 | uint8_t id; |
| 3906 | uint8_t type; |
| 3907 | uint32_t duration; |
| 3908 | uint32_t lteu_tx_power; |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 3909 | uint32_t rssi_thr_bssid; |
| 3910 | uint32_t rssi_thr_sta; |
| 3911 | uint32_t rssi_thr_sc; |
| 3912 | uint32_t plmn_id; |
| 3913 | uint32_t alpha_num_bssid; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3914 | }; |
| 3915 | |
| 3916 | /** |
| 3917 | * struct lteu_config_params - LTEU config params |
| 3918 | * @lteu_gpio_start: start MU/AP scan after GPIO toggle |
| 3919 | * @lteu_num_bins: no. of elements in the following arrays |
| 3920 | * @use_actual_nf: whether to use the actual NF obtained or a hardcoded one |
| 3921 | * @lteu_weight: weights for MU algo |
| 3922 | * @lteu_thresh: thresholds for MU algo |
| 3923 | * @lteu_gamma: gamma's for MU algo |
| 3924 | * @lteu_scan_timeout: timeout in ms to gpio toggle |
| 3925 | * @alpha_num_ssid: alpha for num active bssid calculation |
| 3926 | * @wifi_tx_power: Wifi Tx power |
| 3927 | */ |
| 3928 | struct lteu_config_params { |
| 3929 | uint8_t lteu_gpio_start; |
| 3930 | uint8_t lteu_num_bins; |
| 3931 | uint8_t use_actual_nf; |
| 3932 | uint32_t lteu_weight[LTEU_MAX_BINS]; |
| 3933 | uint32_t lteu_thresh[LTEU_MAX_BINS]; |
| 3934 | uint32_t lteu_gamma[LTEU_MAX_BINS]; |
| 3935 | uint32_t lteu_scan_timeout; |
| 3936 | uint32_t alpha_num_bssid; |
| 3937 | uint32_t wifi_tx_power; |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 3938 | uint32_t allow_err_packets; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3939 | }; |
| 3940 | |
| 3941 | struct wmi_macaddr_t { |
| 3942 | /** upper 4 bytes of MAC address */ |
| 3943 | uint32_t mac_addr31to0; |
| 3944 | /** lower 2 bytes of MAC address */ |
| 3945 | uint32_t mac_addr47to32; |
| 3946 | }; |
| 3947 | |
| 3948 | /** |
| 3949 | * struct atf_peer_info - ATF peer info params |
| 3950 | * @peer_macaddr: peer mac addr |
| 3951 | * @percentage_peer: percentage of air time for this peer |
| 3952 | */ |
| 3953 | typedef struct { |
| 3954 | struct wmi_macaddr_t peer_macaddr; |
| 3955 | uint32_t percentage_peer; |
| 3956 | } atf_peer_info; |
| 3957 | |
| 3958 | /** |
Sathish Kumar | 50232d7 | 2016-08-09 16:50:46 +0530 | [diff] [blame] | 3959 | * struct bwf_peer_info_t - BWF peer info params |
| 3960 | * @peer_macaddr: peer mac addr |
| 3961 | * @throughput: Throughput |
| 3962 | * @max_airtime: Max airtime |
| 3963 | * @priority: Priority level |
| 3964 | * @reserved: Reserved array |
| 3965 | */ |
| 3966 | typedef struct { |
| 3967 | struct wmi_macaddr_t peer_macaddr; |
| 3968 | uint32_t throughput; |
| 3969 | uint32_t max_airtime; |
| 3970 | uint32_t priority; |
| 3971 | uint32_t reserved[4]; |
| 3972 | } bwf_peer_info; |
| 3973 | |
| 3974 | /** |
| 3975 | * struct set_bwf_params - BWF params |
| 3976 | * @num_peers: number of peers |
| 3977 | * @atf_peer_info: BWF peer info |
| 3978 | */ |
| 3979 | struct set_bwf_params { |
| 3980 | uint32_t num_peers; |
| 3981 | bwf_peer_info peer_info[1]; |
| 3982 | }; |
| 3983 | |
| 3984 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 3985 | * struct atf_peer_ext_info - ATF peer ext info params |
| 3986 | * @peer_macaddr: peer mac address |
| 3987 | * @group_index: group index |
| 3988 | * @atf_index_reserved: ATF index rsvd |
| 3989 | */ |
| 3990 | typedef struct { |
| 3991 | struct wmi_macaddr_t peer_macaddr; |
| 3992 | uint32_t group_index; |
| 3993 | uint32_t atf_index_reserved; |
| 3994 | } atf_peer_ext_info; |
| 3995 | |
| 3996 | /** |
Sathish Kumar | b597ba4 | 2017-02-22 17:24:45 +0530 | [diff] [blame] | 3997 | * struct set_atf_params - ATF params |
| 3998 | * @num_peers: number of peers |
| 3999 | * @atf_peer_info: ATF peer info |
| 4000 | */ |
| 4001 | struct set_atf_params { |
| 4002 | uint32_t num_peers; |
| 4003 | atf_peer_info peer_info[ATF_ACTIVED_MAX_CLIENTS]; |
| 4004 | }; |
| 4005 | |
| 4006 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4007 | * struct atf_peer_request_params - ATF peer req params |
| 4008 | * @num_peers: number of peers |
| 4009 | * @atf_peer_ext_info: ATF peer ext info |
| 4010 | */ |
| 4011 | struct atf_peer_request_params { |
| 4012 | uint32_t num_peers; |
| 4013 | atf_peer_ext_info peer_ext_info[ATF_ACTIVED_MAX_CLIENTS]; |
| 4014 | }; |
| 4015 | |
| 4016 | /** |
| 4017 | * struct atf_group_info - ATF group info params |
| 4018 | * @percentage_group: Percentage AT for group |
| 4019 | * @atf_group_units_reserved: ATF group information |
| 4020 | */ |
| 4021 | typedef struct { |
| 4022 | uint32_t percentage_group; |
| 4023 | uint32_t atf_group_units_reserved; |
| 4024 | } atf_group_info; |
| 4025 | |
| 4026 | /** |
| 4027 | * struct atf_grouping_params - ATF grouping params |
| 4028 | * @num_groups: number of groups |
| 4029 | * @group_inf: Group informaition |
| 4030 | */ |
| 4031 | struct atf_grouping_params { |
| 4032 | uint32_t num_groups; |
| 4033 | atf_group_info group_info[ATF_ACTIVED_MAX_ATFGROUPS]; |
| 4034 | }; |
| 4035 | |
| 4036 | /** |
| 4037 | * struct wlan_profile_params - WLAN profile params |
| 4038 | * @param_id: param id |
| 4039 | * @profile_id: profile id |
| 4040 | * @enable: enable |
| 4041 | */ |
| 4042 | struct wlan_profile_params { |
| 4043 | uint32_t param_id; |
| 4044 | uint32_t profile_id; |
| 4045 | uint32_t enable; |
| 4046 | }; |
| 4047 | |
| 4048 | /* struct ht_ie_params - HT IE params |
| 4049 | * @ie_len: IE length |
| 4050 | * @ie_data: pointer to IE data |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 4051 | * @tx_streams: Tx streams supported for this HT IE |
| 4052 | * @rx_streams: Rx streams supported for this HT IE |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4053 | */ |
| 4054 | struct ht_ie_params { |
| 4055 | uint32_t ie_len; |
| 4056 | uint8_t *ie_data; |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 4057 | uint32_t tx_streams; |
| 4058 | uint32_t rx_streams; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4059 | }; |
| 4060 | |
| 4061 | /* struct vht_ie_params - VHT IE params |
| 4062 | * @ie_len: IE length |
| 4063 | * @ie_data: pointer to IE data |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 4064 | * @tx_streams: Tx streams supported for this VHT IE |
| 4065 | * @rx_streams: Rx streams supported for this VHT IE |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4066 | */ |
| 4067 | struct vht_ie_params { |
| 4068 | uint32_t ie_len; |
| 4069 | uint8_t *ie_data; |
Sathish Kumar | 79fdae4 | 2017-02-22 17:28:28 +0530 | [diff] [blame] | 4070 | uint32_t tx_streams; |
| 4071 | uint32_t rx_streams; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4072 | }; |
| 4073 | |
| 4074 | /** |
| 4075 | * struct wmi_host_wmeParams - WME params |
| 4076 | * @wmep_acm: ACM paramete |
| 4077 | * @wmep_aifsn: AIFSN parameters |
| 4078 | * @wmep_logcwmin: cwmin in exponential form |
| 4079 | * @wmep_logcwmax: cwmax in exponential form |
| 4080 | * @wmep_txopLimit: txopLimit |
| 4081 | * @wmep_noackPolicy: No-Ack Policy: 0=ack, 1=no-ack |
| 4082 | */ |
| 4083 | struct wmi_host_wmeParams { |
| 4084 | u_int8_t wmep_acm; |
| 4085 | u_int8_t wmep_aifsn; |
| 4086 | u_int8_t wmep_logcwmin; |
| 4087 | u_int8_t wmep_logcwmax; |
| 4088 | u_int16_t wmep_txopLimit; |
| 4089 | u_int8_t wmep_noackPolicy; |
| 4090 | }; |
| 4091 | |
| 4092 | /** |
| 4093 | * struct wmm_update_params - WMM update params |
| 4094 | * @wmep_array: WME params for each AC |
| 4095 | */ |
| 4096 | struct wmm_update_params { |
| 4097 | struct wmi_host_wmeParams *wmep_array; |
| 4098 | }; |
| 4099 | |
| 4100 | /** |
| 4101 | * struct ant_switch_tbl_params - Antenna switch table params |
| 4102 | * @ant_ctrl_common1: ANtenna control common param 1 |
| 4103 | * @ant_ctrl_common2: Antenna control commn param 2 |
| 4104 | */ |
| 4105 | struct ant_switch_tbl_params { |
| 4106 | uint32_t ant_ctrl_common1; |
| 4107 | uint32_t ant_ctrl_common2; |
Sathish Kumar | b597ba4 | 2017-02-22 17:24:45 +0530 | [diff] [blame] | 4108 | uint32_t pdev_id; |
| 4109 | uint32_t antCtrlChain; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4110 | }; |
| 4111 | |
| 4112 | /** |
| 4113 | * struct ratepwr_table_params - Rate power table params |
| 4114 | * @ratepwr_tbl: pointer to rate power table |
| 4115 | * @ratepwr_len: rate power table len |
| 4116 | */ |
| 4117 | struct ratepwr_table_params { |
| 4118 | uint8_t *ratepwr_tbl; |
| 4119 | uint16_t ratepwr_len; |
| 4120 | }; |
| 4121 | |
| 4122 | /** |
| 4123 | * struct ctl_table_params - Ctl table params |
| 4124 | * @ctl_array: pointer to ctl array |
Sathish Kumar | 990089f | 2016-11-09 11:44:50 +0530 | [diff] [blame] | 4125 | * @ctl_cmd_len: ctl command length |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4126 | * @is_acfg_ctl: is acfg_ctl table |
| 4127 | */ |
| 4128 | struct ctl_table_params { |
| 4129 | uint8_t *ctl_array; |
Sathish Kumar | 990089f | 2016-11-09 11:44:50 +0530 | [diff] [blame] | 4130 | uint16_t ctl_cmd_len; |
Nandha Kishore Easwaran | da8e13c | 2016-10-14 15:22:05 +0530 | [diff] [blame] | 4131 | uint32_t target_type; |
| 4132 | bool is_2g; |
Sathish Kumar | 990089f | 2016-11-09 11:44:50 +0530 | [diff] [blame] | 4133 | uint32_t ctl_band; |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 4134 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4135 | }; |
| 4136 | |
| 4137 | /** |
| 4138 | * struct mimogain_table_params - MIMO gain table params |
| 4139 | * @array_gain: pointer to array gain table |
| 4140 | * @tbl_len: table length |
| 4141 | * @multichain_gain_bypass: bypass multichain gain |
| 4142 | */ |
| 4143 | struct mimogain_table_params { |
| 4144 | uint8_t *array_gain; |
| 4145 | uint16_t tbl_len; |
| 4146 | bool multichain_gain_bypass; |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 4147 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4148 | }; |
| 4149 | |
| 4150 | /** |
| 4151 | * struct ratepwr_chainmask_params - Rate power chainmask params |
| 4152 | * @ratepwr_chain_tbl: pointer to ratepwr chain table |
| 4153 | * @num_rate: number of rate in table |
| 4154 | * @pream_type: preamble type |
| 4155 | * @ops: ops |
| 4156 | */ |
| 4157 | struct ratepwr_chainmsk_params { |
| 4158 | uint32_t *ratepwr_chain_tbl; |
| 4159 | uint16_t num_rate; |
| 4160 | uint8_t pream_type; |
| 4161 | uint8_t ops; |
| 4162 | }; |
| 4163 | |
| 4164 | struct macaddr_params { |
| 4165 | uint8_t *macaddr; |
| 4166 | }; |
| 4167 | |
| 4168 | /** |
| 4169 | * struct acparams_params - acparams config structure |
| 4170 | * @ac: AC to configure |
| 4171 | * @use_rts: Use rts for this AC |
| 4172 | * @aggrsize_scaling: Aggregrate size scaling for the AC |
| 4173 | * @min_kbps: min kbps req |
| 4174 | */ |
| 4175 | struct acparams_params { |
| 4176 | uint8_t ac; |
| 4177 | uint8_t use_rts; |
| 4178 | uint8_t aggrsize_scaling; |
| 4179 | uint32_t min_kbps; |
| 4180 | }; |
| 4181 | |
| 4182 | /** |
| 4183 | * struct vap_dscp_tid_map_params - DSCP tid map params |
| 4184 | * @vdev_id: vdev id |
| 4185 | * @dscp_to_tid_map: pointer to arry of tid to dscp map table |
| 4186 | */ |
| 4187 | struct vap_dscp_tid_map_params { |
| 4188 | uint8_t vdev_id; |
| 4189 | uint32_t *dscp_to_tid_map; |
| 4190 | }; |
| 4191 | |
| 4192 | /** |
| 4193 | * struct proxy_ast_reserve_params - Proxy AST reserve params |
| 4194 | * @macaddr: macaddr for proxy ast entry |
| 4195 | */ |
| 4196 | struct proxy_ast_reserve_params { |
| 4197 | uint8_t *macaddr; |
| 4198 | }; |
| 4199 | |
| 4200 | /** |
| 4201 | * struct fips_params - FIPS params config |
| 4202 | * @key: pointer to key |
| 4203 | * @key_len: length of key |
| 4204 | * @data: pointer data buf |
Nandha Kishore Easwaran | 2ccd424 | 2017-01-09 21:33:00 +0530 | [diff] [blame] | 4205 | * @data_len: lenght of data buf |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4206 | * @mode: mode |
| 4207 | * @op: operation |
Nandha Kishore Easwaran | 2ccd424 | 2017-01-09 21:33:00 +0530 | [diff] [blame] | 4208 | * @pdev_id: pdev_id for identifying the MAC |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4209 | */ |
| 4210 | struct fips_params { |
| 4211 | uint8_t *key; |
| 4212 | uint32_t key_len; |
| 4213 | uint8_t *data; |
| 4214 | uint32_t data_len; |
| 4215 | uint32_t mode; |
| 4216 | uint32_t op; |
Nandha Kishore Easwaran | 2ccd424 | 2017-01-09 21:33:00 +0530 | [diff] [blame] | 4217 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4218 | }; |
| 4219 | |
| 4220 | /** |
| 4221 | * struct mcast_group_update_param - Mcast group table update to target |
| 4222 | * @action: Addition/deletion |
| 4223 | * @wildcard: iwldcard table entry? |
| 4224 | * @mcast_ip_addr: mcast ip address to be updated |
| 4225 | * @mcast_ip_addr_bytes: mcast ip addr bytes |
| 4226 | * @ucast_mac_addr: ucast peer mac subscribed to mcast ip |
| 4227 | * @filter_mode: filter mode |
| 4228 | * @nsrcs: number of entries in source list |
| 4229 | * @srcs: source mac accpted |
| 4230 | * @mask: mask |
| 4231 | * @vap_id: vdev id |
| 4232 | * @is_action_delete: is delete |
| 4233 | * @is_filter_mode_snoop: |
| 4234 | * @is_mcast_addr_len: |
| 4235 | */ |
| 4236 | struct mcast_group_update_params { |
| 4237 | int action; |
| 4238 | int wildcard; |
| 4239 | uint8_t *mcast_ip_addr; |
| 4240 | int mcast_ip_addr_bytes; |
| 4241 | uint8_t *ucast_mac_addr; |
| 4242 | uint8_t filter_mode; |
| 4243 | uint8_t nsrcs; |
| 4244 | uint8_t *srcs; |
| 4245 | uint8_t *mask; |
| 4246 | uint8_t vap_id; |
| 4247 | bool is_action_delete; |
| 4248 | bool is_filter_mode_snoop; |
| 4249 | bool is_mcast_addr_len; |
| 4250 | }; |
| 4251 | |
| 4252 | /** |
| 4253 | * struct periodic_chan_stats_param - periodic channel stats req param |
| 4254 | * @stats_period: stats period update |
| 4255 | * @enable: enable/disable |
| 4256 | */ |
| 4257 | struct periodic_chan_stats_params { |
| 4258 | uint32_t stats_period; |
| 4259 | bool enable; |
| 4260 | }; |
| 4261 | |
| 4262 | /** |
| 4263 | * struct packet_power_info_params - packet power info params |
| 4264 | * @rate_flags: rate flags |
| 4265 | * @nss: number of spatial streams |
| 4266 | * @preamble: preamble |
| 4267 | * @hw_rate: |
| 4268 | */ |
| 4269 | struct packet_power_info_params { |
| 4270 | uint16_t rate_flags; |
| 4271 | uint16_t nss; |
| 4272 | uint16_t preamble; |
| 4273 | uint16_t hw_rate; |
Sathish Kumar | dcc7529 | 2017-03-01 14:02:36 +0530 | [diff] [blame] | 4274 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4275 | }; |
| 4276 | |
| 4277 | /** |
| 4278 | * WMI_GPIO_CONFIG_CMDID |
| 4279 | */ |
| 4280 | enum { |
| 4281 | WMI_HOST_GPIO_PULL_NONE, |
| 4282 | WMI_HOST_GPIO_PULL_UP, |
| 4283 | WMI_HOST_GPIO_PULL_DOWN, |
| 4284 | }; |
| 4285 | |
| 4286 | /** |
| 4287 | * WMI_GPIO_INTTYPE |
| 4288 | */ |
| 4289 | enum { |
| 4290 | WMI_HOST_GPIO_INTTYPE_DISABLE, |
| 4291 | WMI_HOST_GPIO_INTTYPE_RISING_EDGE, |
| 4292 | WMI_HOST_GPIO_INTTYPE_FALLING_EDGE, |
| 4293 | WMI_HOST_GPIO_INTTYPE_BOTH_EDGE, |
| 4294 | WMI_HOST_GPIO_INTTYPE_LEVEL_LOW, |
| 4295 | WMI_HOST_GPIO_INTTYPE_LEVEL_HIGH |
| 4296 | }; |
| 4297 | |
| 4298 | /** |
| 4299 | * struct wmi_host_gpio_input_event - GPIO input event structure |
| 4300 | * @gpio_num: GPIO number which changed state |
| 4301 | */ |
| 4302 | typedef struct { |
| 4303 | uint32_t gpio_num; /* GPIO number which changed state */ |
| 4304 | } wmi_host_gpio_input_event; |
| 4305 | |
| 4306 | /** |
| 4307 | * struct gpio_config_params - GPIO config params |
| 4308 | * @gpio_num: GPIO number to config |
| 4309 | * @input: input/output |
| 4310 | * @pull_type: pull type |
| 4311 | * @intr_mode: int mode |
| 4312 | */ |
| 4313 | struct gpio_config_params { |
| 4314 | uint32_t gpio_num; |
| 4315 | uint32_t input; |
| 4316 | uint32_t pull_type; |
| 4317 | uint32_t intr_mode; |
| 4318 | }; |
| 4319 | |
| 4320 | /** |
| 4321 | * struct gpio_output_params - GPIO output params |
| 4322 | * @gpio_num: GPIO number to configure |
| 4323 | * @set: set/reset |
| 4324 | */ |
| 4325 | struct gpio_output_params { |
| 4326 | uint32_t gpio_num; |
| 4327 | uint32_t set; |
| 4328 | }; |
| 4329 | |
Sathish Kumar | 7e566c5 | 2016-11-10 15:30:22 +0530 | [diff] [blame] | 4330 | /* flags bit 0: to configure wlan priority bitmap */ |
| 4331 | #define WMI_HOST_BTCOEX_PARAM_FLAGS_WLAN_PRIORITY_BITMAP_BIT (1<<0) |
| 4332 | /* flags bit 1: to configure both period and wlan duration */ |
| 4333 | #define WMI_HOST_BTCOEX_PARAM_FLAGS_DUTY_CYCLE_BIT (1<<1) |
| 4334 | struct btcoex_cfg_params { |
| 4335 | /* WLAN priority bitmask for different frame types */ |
| 4336 | uint32_t btcoex_wlan_priority_bitmap; |
| 4337 | /* This command is used to configure different btcoex params |
| 4338 | * in different situations.The host sets the appropriate bit(s) |
| 4339 | * in btcoex_param_flags to indicate which configuration parameters |
| 4340 | * are valid within a particular BT coex config message, so that one |
| 4341 | * BT configuration parameter can be configured without affecting |
| 4342 | * other BT configuration parameters.E.g. if the host wants to |
| 4343 | * configure only btcoex_wlan_priority_bitmap it sets only |
| 4344 | * WMI_BTCOEX_PARAM_FLAGS_WLAN_PRIORITY_BITMAP_BIT in |
| 4345 | * btcoex_param_flags so that firmware will not overwrite |
| 4346 | * other params with default value passed in the command. |
| 4347 | * Host can also set multiple bits in btcoex_param_flags |
| 4348 | * to configure more than one param in single message. |
| 4349 | */ |
| 4350 | uint32_t btcoex_param_flags; |
| 4351 | /* period denotes the total time in milliseconds which WLAN and BT share |
| 4352 | * configured percentage for transmission and reception. |
| 4353 | */ |
| 4354 | uint32_t period; |
| 4355 | /* wlan duration is the time in milliseconds given for wlan |
| 4356 | * in above period. |
| 4357 | */ |
| 4358 | uint32_t wlan_duration; |
| 4359 | }; |
| 4360 | |
Sathish Kumar | 612d0c2 | 2017-01-19 14:57:37 +0530 | [diff] [blame] | 4361 | #define WMI_HOST_COEX_CONFIG_BUF_MAX_LEN 32 /* 128 bytes */ |
| 4362 | /** |
| 4363 | * coex_ver_cfg_t |
| 4364 | * @coex_version: Version for 4 wire coex |
| 4365 | * @length: Length of payload buffer based on version |
| 4366 | * @config_buf: Payload Buffer |
| 4367 | */ |
| 4368 | typedef struct { |
| 4369 | /* VERSION_4 (4 wire coex) */ |
| 4370 | uint32_t coex_version; |
| 4371 | |
| 4372 | /* No. of A_UINT32 elements in payload buffer. Will depend on the coex |
| 4373 | * version |
| 4374 | */ |
| 4375 | uint32_t length; |
| 4376 | |
| 4377 | /* Payload buffer */ |
| 4378 | uint32_t config_buf[WMI_HOST_COEX_CONFIG_BUF_MAX_LEN]; |
| 4379 | } coex_ver_cfg_t; |
Sathish Kumar | 7e566c5 | 2016-11-10 15:30:22 +0530 | [diff] [blame] | 4380 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4381 | #define WMI_HOST_RTT_REPORT_CFR 0 |
| 4382 | #define WMI_HOST_RTT_NO_REPORT_CFR 1 |
| 4383 | #define WMI_HOST_RTT_AGGREGATE_REPORT_NON_CFR 2 |
| 4384 | /** |
| 4385 | * struct rtt_meas_req_test_params |
| 4386 | * @peer: peer mac address |
| 4387 | * @req_frame_type: RTT request frame type |
| 4388 | * @req_bw: requested bandwidth |
| 4389 | * @req_preamble: Preamble |
| 4390 | * @req_num_req: num of requests |
| 4391 | * @req_report_type: report type |
| 4392 | * @num_measurements: number of measurements |
| 4393 | * @asap_mode: priority |
| 4394 | * @lci_requested: LCI requested |
| 4395 | * @loc_civ_requested: |
| 4396 | * @channel_param: channel param |
| 4397 | * @req_id: requested id |
| 4398 | */ |
| 4399 | struct rtt_meas_req_test_params { |
| 4400 | uint8_t peer[IEEE80211_ADDR_LEN]; |
| 4401 | int req_frame_type; |
| 4402 | int req_bw; |
| 4403 | int req_preamble; |
| 4404 | int req_num_req; |
| 4405 | int req_report_type; |
| 4406 | uint32_t num_measurements; |
| 4407 | uint32_t asap_mode; |
| 4408 | uint32_t lci_requested; |
| 4409 | uint32_t loc_civ_requested; |
| 4410 | struct channel_param channel; |
| 4411 | uint8_t req_id; |
| 4412 | }; |
| 4413 | |
| 4414 | /** |
| 4415 | * struct rtt_meas_req_params - RTT measurement request params |
| 4416 | * @req_id: Request id |
| 4417 | * @vdev_id: vdev id |
| 4418 | * @sta_mac_addr: pointer to station mac address |
| 4419 | * @spoof_mac_addr: pointer to spoof mac address |
| 4420 | * @is_mode_na: 11NA |
| 4421 | * @is_mode_ac: AC |
| 4422 | * @is_bw_20: 20 |
| 4423 | * @is_bw_40: 40 |
| 4424 | * @is_bw_80: 80 |
| 4425 | * @num_probe_rqst: number of probe request |
| 4426 | * @channel_param: channel param |
| 4427 | */ |
| 4428 | struct rtt_meas_req_params { |
| 4429 | uint8_t req_id; |
| 4430 | uint8_t vdev_id; |
| 4431 | uint8_t *sta_mac_addr; |
| 4432 | uint8_t *spoof_mac_addr; |
| 4433 | bool is_mode_na; |
| 4434 | bool is_mode_ac; |
| 4435 | bool is_bw_20; |
| 4436 | bool is_bw_40; |
| 4437 | bool is_bw_80; |
| 4438 | uint32_t num_probe_rqst; |
| 4439 | struct channel_param channel; |
| 4440 | }; |
| 4441 | |
| 4442 | /** |
| 4443 | * struct lci_set_params - LCI params |
| 4444 | * @lci_data: pointer to LCI data |
| 4445 | * @latitude_unc: latitude |
| 4446 | * @latitude_0_12: bits 0 to 1 of latitude |
| 4447 | * @latitude_2_33: bits 2 to 33 of latitude |
| 4448 | * @longitude_unc: longitude |
| 4449 | * @longitude_0_1: bits 0 to 1 of longitude |
| 4450 | * @longitude_2_33: bits 2 to 33 of longitude |
| 4451 | * @altitude_type: altitude type |
| 4452 | * @altitude_unc_0_3: altitude bits 0 - 3 |
| 4453 | * @altitude_unc_4_5: altitude bits 4 - 5 |
| 4454 | * @altitude: altitude |
| 4455 | * @datum: dataum |
| 4456 | * @reg_loc_agmt: |
| 4457 | * @reg_loc_dse: |
| 4458 | * @dep_sta: |
| 4459 | * @version: version |
| 4460 | */ |
| 4461 | struct lci_set_params { |
| 4462 | void *lci_data; |
| 4463 | uint8_t latitude_unc:6, |
| 4464 | latitude_0_1:2; |
| 4465 | uint32_t latitude_2_33; |
| 4466 | uint8_t longitude_unc:6, |
| 4467 | longitude_0_1:2; |
| 4468 | uint32_t longitude_2_33; |
| 4469 | uint8_t altitude_type:4, |
| 4470 | altitude_unc_0_3:4; |
| 4471 | uint32_t altitude_unc_4_5:2, |
| 4472 | altitude:30; |
| 4473 | uint8_t datum:3, |
| 4474 | reg_loc_agmt:1, |
| 4475 | reg_loc_dse:1, |
| 4476 | dep_sta:1, |
| 4477 | version:2; |
Sathish Kumar | 38bf0d8 | 2016-10-20 14:07:21 +0530 | [diff] [blame] | 4478 | uint8_t *colocated_bss; |
| 4479 | int msg_len; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4480 | }; |
| 4481 | |
| 4482 | /** |
| 4483 | * struct lcr_set_params - LCR params |
| 4484 | * @lcr_data: pointer to lcr data |
| 4485 | */ |
| 4486 | struct lcr_set_params { |
| 4487 | void *lcr_data; |
Sathish Kumar | 38bf0d8 | 2016-10-20 14:07:21 +0530 | [diff] [blame] | 4488 | int msg_len; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4489 | }; |
| 4490 | |
| 4491 | /** |
| 4492 | * struct rtt_keepalive_req_params - RTT keepalive params |
| 4493 | * @macaddr: pointer to macaddress |
| 4494 | * @req_id: Request id |
| 4495 | * @vdev_id: vdev id |
| 4496 | * @stop: start/stop |
| 4497 | */ |
| 4498 | struct rtt_keepalive_req_params { |
| 4499 | uint8_t *macaddr; |
| 4500 | uint8_t req_id; |
| 4501 | uint8_t vdev_id; |
| 4502 | bool stop; |
| 4503 | }; |
| 4504 | |
| 4505 | /** |
Leo Chang | 8184e9c | 2016-09-28 13:43:36 -0700 | [diff] [blame] | 4506 | * struct rx_reorder_queue_setup_params - Reorder queue setup params |
| 4507 | * @peer_mac_addr: Peer mac address |
| 4508 | * @tid: TID |
| 4509 | * @vdev_id: vdev id |
| 4510 | * @hw_qdesc_paddr_lo: lower 32 bits of queue desc adddress |
| 4511 | * @hw_qdesc_paddr_hi: upper 32 bits of queue desc adddress |
| 4512 | * @queue_no: 16-bit number assigned by host for queue |
| 4513 | */ |
| 4514 | struct rx_reorder_queue_setup_params { |
| 4515 | uint8_t *peer_macaddr; |
| 4516 | uint16_t tid; |
| 4517 | uint16_t vdev_id; |
| 4518 | uint32_t hw_qdesc_paddr_lo; |
| 4519 | uint32_t hw_qdesc_paddr_hi; |
| 4520 | uint16_t queue_no; |
| 4521 | }; |
| 4522 | |
| 4523 | /** |
| 4524 | * struct rx_reorder_queue_remove_params - Reorder queue setup params |
| 4525 | * @peer_mac_addr: Peer mac address |
| 4526 | * @vdev_id: vdev id |
| 4527 | * @peer_tid_bitmap: peer tid bitmap |
| 4528 | */ |
| 4529 | struct rx_reorder_queue_remove_params { |
| 4530 | uint8_t *peer_macaddr; |
| 4531 | uint16_t vdev_id; |
| 4532 | uint32_t peer_tid_bitmap; |
| 4533 | }; |
| 4534 | |
| 4535 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4536 | * struct wmi_host_stats_event - Stats event params |
| 4537 | * @stats_id: stats id of type wmi_host_stats_event |
| 4538 | * @num_pdev_stats: number of pdev stats event structures 0 or 1 |
| 4539 | * @num_pdev_ext_stats: number of pdev ext stats event structures |
| 4540 | * @num_vdev_stats: number of vdev stats |
| 4541 | * @num_peer_stats: number of peer stats event structures 0 or max peers |
| 4542 | * @num_bcnflt_stats: number of beacon filter stats |
| 4543 | * @num_chan_stats: number of channel stats |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 4544 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4545 | */ |
| 4546 | typedef struct { |
| 4547 | wmi_host_stats_id stats_id; |
| 4548 | uint32_t num_pdev_stats; |
| 4549 | uint32_t num_pdev_ext_stats; |
| 4550 | uint32_t num_vdev_stats; |
| 4551 | uint32_t num_peer_stats; |
| 4552 | uint32_t num_bcnflt_stats; |
| 4553 | uint32_t num_chan_stats; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 4554 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4555 | } wmi_host_stats_event; |
| 4556 | |
| 4557 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 4558 | * struct wmi_host_peer_extd_stats - peer extd stats event structure |
| 4559 | * @peer_macaddr: Peer mac address |
| 4560 | * @inactive_time: inactive time in secs |
| 4561 | * @peer_chain_rssi: peer rssi |
| 4562 | * @rx_duration: RX duration |
| 4563 | * @peer_tx_bytes: TX bytes |
| 4564 | * @peer_rx_bytes: RX bytes |
| 4565 | * @last_tx_rate_code: Tx rate code of last frame |
| 4566 | * @last_tx_power: Tx power latest |
| 4567 | * @atf_tokens_allocated: atf tokens allocated |
| 4568 | * @atf_tokens_utilized: atf tokens utilized |
| 4569 | * @reserved: for future use |
| 4570 | */ |
| 4571 | typedef struct { |
| 4572 | wmi_host_mac_addr peer_macaddr; |
| 4573 | uint32_t inactive_time; |
| 4574 | uint32_t peer_chain_rssi; |
| 4575 | uint32_t rx_duration; |
| 4576 | uint32_t peer_tx_bytes; |
| 4577 | uint32_t peer_rx_bytes; |
| 4578 | uint32_t last_tx_rate_code; |
| 4579 | uint32_t last_tx_power; |
| 4580 | uint32_t atf_tokens_allocated; |
| 4581 | uint32_t atf_tokens_utilized; |
| 4582 | uint32_t reserved[4]; |
| 4583 | } wmi_host_peer_extd_stats; |
| 4584 | |
| 4585 | /** |
| 4586 | * struct wmi_host_pdev_ext_stats - peer ext stats structure |
| 4587 | * @rx_rssi_comb: RX rssi |
| 4588 | * @rx_rssi_chain0: RX rssi chain 0 |
| 4589 | * @rx_rssi_chain1: RX rssi chain 1 |
| 4590 | * @rx_rssi_chain2: RX rssi chain 2 |
| 4591 | * @rx_rssi_chain3: RX rssi chain 3 |
| 4592 | * @rx_mcs: RX MCS array |
| 4593 | * @tx_mcs: TX MCS array |
| 4594 | * @ack_rssi: Ack rssi |
| 4595 | */ |
| 4596 | typedef struct { |
| 4597 | uint32_t rx_rssi_comb; |
| 4598 | uint32_t rx_rssi_chain0; |
| 4599 | uint32_t rx_rssi_chain1; |
| 4600 | uint32_t rx_rssi_chain2; |
| 4601 | uint32_t rx_rssi_chain3; |
| 4602 | uint32_t rx_mcs[10]; |
| 4603 | uint32_t tx_mcs[10]; |
| 4604 | uint32_t ack_rssi; |
| 4605 | } wmi_host_pdev_ext_stats; |
| 4606 | |
| 4607 | /** |
| 4608 | * struct wmi_host_dbg_tx_stats - Debug stats |
| 4609 | * @comp_queued: Num HTT cookies queued to dispatch list |
| 4610 | * @comp_delivered: Num HTT cookies dispatched |
| 4611 | * @msdu_enqued: Num MSDU queued to WAL |
| 4612 | * @mpdu_enqued: Num MPDU queue to WAL |
| 4613 | * @wmm_drop: Num MSDUs dropped by WMM limit |
| 4614 | * @local_enqued: Num Local frames queued |
| 4615 | * @local_freed: Num Local frames done |
| 4616 | * @hw_queued: Num queued to HW |
| 4617 | * @hw_reaped: Num PPDU reaped from HW |
| 4618 | * @underrun: Num underruns |
| 4619 | * @hw_paused: HW Paused. |
| 4620 | * @tx_abort: Num PPDUs cleaned up in TX abort |
| 4621 | * @mpdus_requed: Num MPDUs requed by SW |
| 4622 | * @tx_ko: excessive retries |
| 4623 | * @tx_xretry: |
| 4624 | * @data_rc: data hw rate code |
| 4625 | * @self_triggers: Scheduler self triggers |
| 4626 | * @sw_retry_failure: frames dropped due to excessive sw retries |
| 4627 | * @illgl_rate_phy_err: illegal rate phy errors |
| 4628 | * @pdev_cont_xretry: wal pdev continous xretry |
| 4629 | * @pdev_tx_timeout: wal pdev continous xretry |
| 4630 | * @pdev_resets: wal pdev resets |
| 4631 | * @stateless_tid_alloc_failure: frames dropped due to non-availability of |
| 4632 | * stateless TIDs |
| 4633 | * @phy_underrun: PhY/BB underrun |
| 4634 | * @txop_ovf: MPDU is more than txop limit |
| 4635 | * @seq_posted: Number of Sequences posted |
| 4636 | * @seq_failed_queueing: Number of Sequences failed queueing |
| 4637 | * @seq_completed: Number of Sequences completed |
| 4638 | * @seq_restarted: Number of Sequences restarted |
| 4639 | * @mu_seq_posted: Number of MU Sequences posted |
| 4640 | * @mpdus_sw_flush: Num MPDUs flushed by SW, HWPAUSED, SW TXABORT |
| 4641 | * (Reset,channel change) |
| 4642 | * @mpdus_hw_filter: Num MPDUs filtered by HW, all filter condition |
| 4643 | * (TTL expired) |
| 4644 | * @mpdus_truncated: Num MPDUs truncated by PDG (TXOP, TBTT, |
| 4645 | * PPDU_duration based on rate, dyn_bw) |
| 4646 | * @mpdus_ack_failed: Num MPDUs that was tried but didn't receive ACK or BA |
| 4647 | * @mpdus_expired: Num MPDUs that was dropped du to expiry. |
| 4648 | * @mc_dropr: Num mc drops |
| 4649 | */ |
| 4650 | typedef struct { |
| 4651 | int32_t comp_queued; |
| 4652 | int32_t comp_delivered; |
| 4653 | int32_t msdu_enqued; |
| 4654 | int32_t mpdu_enqued; |
| 4655 | int32_t wmm_drop; |
| 4656 | int32_t local_enqued; |
| 4657 | int32_t local_freed; |
| 4658 | int32_t hw_queued; |
| 4659 | int32_t hw_reaped; |
| 4660 | int32_t underrun; |
| 4661 | uint32_t hw_paused; |
| 4662 | int32_t tx_abort; |
| 4663 | int32_t mpdus_requed; |
| 4664 | uint32_t tx_ko; |
| 4665 | uint32_t tx_xretry; |
| 4666 | uint32_t data_rc; |
| 4667 | uint32_t self_triggers; |
| 4668 | uint32_t sw_retry_failure; |
| 4669 | uint32_t illgl_rate_phy_err; |
| 4670 | uint32_t pdev_cont_xretry; |
| 4671 | uint32_t pdev_tx_timeout; |
| 4672 | uint32_t pdev_resets; |
| 4673 | uint32_t stateless_tid_alloc_failure; |
| 4674 | uint32_t phy_underrun; |
| 4675 | uint32_t txop_ovf; |
| 4676 | uint32_t seq_posted; |
| 4677 | uint32_t seq_failed_queueing; |
| 4678 | uint32_t seq_completed; |
| 4679 | uint32_t seq_restarted; |
| 4680 | uint32_t mu_seq_posted; |
| 4681 | int32_t mpdus_sw_flush; |
| 4682 | int32_t mpdus_hw_filter; |
| 4683 | int32_t mpdus_truncated; |
| 4684 | int32_t mpdus_ack_failed; |
| 4685 | int32_t mpdus_expired; |
| 4686 | uint32_t mc_drop; |
| 4687 | } wmi_host_dbg_tx_stats; |
| 4688 | |
| 4689 | /** |
| 4690 | * struct wmi_host_dbg_rx_stats - RX Debug stats |
| 4691 | * @mid_ppdu_route_change: Cnts any change in ring routing mid-ppdu |
| 4692 | * @status_rcvd: Total number of statuses processed |
| 4693 | * @r0_frags: Extra frags on rings 0 |
| 4694 | * @r1_frags: Extra frags on rings 1 |
| 4695 | * @r2_frags: Extra frags on rings 2 |
| 4696 | * @r3_frags: Extra frags on rings 3 |
| 4697 | * @htt_msdus: MSDUs delivered to HTT |
| 4698 | * @htt_mpdus: MPDUs delivered to HTT |
| 4699 | * @loc_msdus: MSDUs delivered to local stack |
| 4700 | * @loc_mpdus: MPDUS delivered to local stack |
| 4701 | * @oversize_amsdu: AMSDUs that have more MSDUs than the status ring size |
| 4702 | * @phy_errs: Number of PHY errors |
| 4703 | * @phy_err_drop: Number of PHY errors drops |
| 4704 | * @mpdu_errs: Number of mpdu errors - FCS, MIC, ENC etc. |
| 4705 | * @pdev_rx_timeout: Number of rx inactivity timeouts |
| 4706 | * @rx_ovfl_errs: Number of rx overflow errors. |
| 4707 | */ |
| 4708 | typedef struct { |
| 4709 | int32_t mid_ppdu_route_change; |
| 4710 | int32_t status_rcvd; |
| 4711 | int32_t r0_frags; |
| 4712 | int32_t r1_frags; |
| 4713 | int32_t r2_frags; |
| 4714 | int32_t r3_frags; |
| 4715 | int32_t htt_msdus; |
| 4716 | int32_t htt_mpdus; |
| 4717 | int32_t loc_msdus; |
| 4718 | int32_t loc_mpdus; |
| 4719 | int32_t oversize_amsdu; |
| 4720 | int32_t phy_errs; |
| 4721 | int32_t phy_err_drop; |
| 4722 | int32_t mpdu_errs; |
| 4723 | uint32_t pdev_rx_timeout; |
| 4724 | int32_t rx_ovfl_errs; |
| 4725 | } wmi_host_dbg_rx_stats; |
| 4726 | |
| 4727 | /** struct wmi_host_dbg_mem_stats - memory stats |
| 4728 | * @iram_free_size: IRAM free size on target |
| 4729 | * @dram_free_size: DRAM free size on target |
| 4730 | * @sram_free_size: SRAM free size on target |
| 4731 | */ |
| 4732 | typedef struct { |
| 4733 | uint32_t iram_free_size; |
| 4734 | uint32_t dram_free_size; |
| 4735 | /* Only Non-TLV */ |
| 4736 | uint32_t sram_free_size; |
| 4737 | } wmi_host_dbg_mem_stats; |
| 4738 | |
| 4739 | typedef struct { |
| 4740 | /* Only TLV */ |
| 4741 | int32_t dummy;/* REMOVE THIS ONCE REAL PEER STAT COUNTERS ARE ADDED */ |
| 4742 | } wmi_host_dbg_peer_stats; |
| 4743 | |
| 4744 | /** |
| 4745 | * struct wmi_host_dbg_stats - host debug stats |
| 4746 | * @tx: TX stats of type wmi_host_dbg_tx_stats |
| 4747 | * @rx: RX stats of type wmi_host_dbg_rx_stats |
| 4748 | * @mem: Memory stats of type wmi_host_dbg_mem_stats |
| 4749 | * @peer: peer stats of type wmi_host_dbg_peer_stats |
| 4750 | */ |
| 4751 | typedef struct { |
| 4752 | wmi_host_dbg_tx_stats tx; |
| 4753 | wmi_host_dbg_rx_stats rx; |
| 4754 | wmi_host_dbg_mem_stats mem; |
| 4755 | wmi_host_dbg_peer_stats peer; |
| 4756 | } wmi_host_dbg_stats; |
| 4757 | |
| 4758 | /** |
| 4759 | * struct wmi_host_pdev_stats - PDEV stats |
| 4760 | * @chan_nf: Channel noise floor |
| 4761 | * @tx_frame_count: TX frame count |
| 4762 | * @rx_frame_count: RX frame count |
| 4763 | * @rx_clear_count: rx clear count |
| 4764 | * @cycle_count: cycle count |
| 4765 | * @phy_err_count: Phy error count |
| 4766 | * @chan_tx_pwr: Channel Tx Power |
| 4767 | * @pdev_stats: WAL dbg stats |
| 4768 | * @ackRcvBad: |
| 4769 | * @rtsBad: |
| 4770 | * @rtsGood: |
| 4771 | * @fcsBad: |
| 4772 | * @noBeacons: |
| 4773 | * @mib_int_count: |
| 4774 | */ |
| 4775 | typedef struct { |
| 4776 | int32_t chan_nf; |
| 4777 | uint32_t tx_frame_count; |
| 4778 | uint32_t rx_frame_count; |
| 4779 | uint32_t rx_clear_count; |
| 4780 | uint32_t cycle_count; |
| 4781 | uint32_t phy_err_count; |
| 4782 | uint32_t chan_tx_pwr; |
| 4783 | wmi_host_dbg_stats pdev_stats; |
| 4784 | uint32_t ackRcvBad; |
| 4785 | uint32_t rtsBad; |
| 4786 | uint32_t rtsGood; |
| 4787 | uint32_t fcsBad; |
| 4788 | uint32_t noBeacons; |
| 4789 | uint32_t mib_int_count; |
| 4790 | } wmi_host_pdev_stats; |
| 4791 | |
| 4792 | /** |
| 4793 | * struct wmi_host_snr_info - WMI host Signal to noise ration info |
| 4794 | * @bcn_snr: beacon SNR |
| 4795 | * @dat_snr: Data frames SNR |
| 4796 | */ |
| 4797 | typedef struct { |
| 4798 | int32_t bcn_snr; |
| 4799 | int32_t dat_snr; |
| 4800 | } wmi_host_snr_info; |
| 4801 | |
| 4802 | #define WMI_HOST_MAX_TX_RATE_VALUES 10 /*Max Tx Rates */ |
| 4803 | #define WMI_HOST_MAX_RSSI_VALUES 10 /*Max Rssi values */ |
| 4804 | |
| 4805 | /* The WLAN_MAX_AC macro cannot be changed without breaking |
| 4806 | * * WMI compatibility. |
| 4807 | * * The maximum value of access category |
| 4808 | * */ |
| 4809 | #define WMI_HOST_WLAN_MAX_AC 4 |
| 4810 | |
| 4811 | /** |
| 4812 | * struct wmi_host_vdev_stats - vdev stats structure |
| 4813 | * @vdev_id: unique id identifying the VDEV, generated by the caller |
| 4814 | * Rest all Only TLV |
| 4815 | * @vdev_snr: wmi_host_snr_info |
| 4816 | * @tx_frm_cnt: Total number of packets(per AC) that were successfully |
| 4817 | * transmitted (with and without retries, |
| 4818 | * including multi-cast, broadcast) |
| 4819 | * @rx_frm_cnt: Total number of packets that were successfully received |
| 4820 | * (after appropriate filter rules including multi-cast, broadcast) |
| 4821 | * @multiple_retry_cnt: The number of MSDU packets and MMPDU frames per AC |
| 4822 | * that the 802.11 station successfully transmitted after |
| 4823 | * more than one retransmission attempt |
| 4824 | * @fail_cnt: Total number packets(per AC) failed to transmit |
| 4825 | * @rts_fail_cnt: Total number of RTS/CTS sequence failures for transmission |
| 4826 | * of a packet |
| 4827 | * @rts_succ_cnt: Total number of RTS/CTS sequence success for transmission |
| 4828 | * of a packet |
| 4829 | * @rx_err_cnt: The receive error count. HAL will provide the |
| 4830 | * RxP FCS error global |
| 4831 | * @rx_discard_cnt: The sum of the receive error count and |
| 4832 | * dropped-receive-buffer error count (FCS error) |
| 4833 | * @ack_fail_cnt: Total number packets failed transmit because of no |
| 4834 | * ACK from the remote entity |
| 4835 | * @tx_rate_history:History of last ten transmit rate, in units of 500 kbit/sec |
| 4836 | * @bcn_rssi_history: History of last ten Beacon rssi of the connected Bss |
| 4837 | */ |
| 4838 | typedef struct { |
| 4839 | uint32_t vdev_id; |
| 4840 | /* Rest all Only TLV */ |
| 4841 | wmi_host_snr_info vdev_snr; |
| 4842 | uint32_t tx_frm_cnt[WMI_HOST_WLAN_MAX_AC]; |
| 4843 | uint32_t rx_frm_cnt; |
| 4844 | uint32_t multiple_retry_cnt[WMI_HOST_WLAN_MAX_AC]; |
| 4845 | uint32_t fail_cnt[WMI_HOST_WLAN_MAX_AC]; |
| 4846 | uint32_t rts_fail_cnt; |
| 4847 | uint32_t rts_succ_cnt; |
| 4848 | uint32_t rx_err_cnt; |
| 4849 | uint32_t rx_discard_cnt; |
| 4850 | uint32_t ack_fail_cnt; |
| 4851 | uint32_t tx_rate_history[WMI_HOST_MAX_TX_RATE_VALUES]; |
| 4852 | uint32_t bcn_rssi_history[WMI_HOST_MAX_RSSI_VALUES]; |
| 4853 | } wmi_host_vdev_stats; |
| 4854 | |
| 4855 | /** |
| 4856 | * struct wmi_host_vdev_extd_stats - VDEV extended stats |
| 4857 | * @vdev_id: unique id identifying the VDEV, generated by the caller |
| 4858 | * @ppdu_aggr_cnt: No of Aggrs Queued to HW |
| 4859 | * @ppdu_noack: No of PPDU's not Acked includes both aggr and nonaggr's |
| 4860 | * @mpdu_queued: No of MPDU/Subframes's queued to HW in Aggregates |
| 4861 | * @ppdu_nonaggr_cnt: No of NonAggr/MPDU/Subframes's queued to HW |
| 4862 | * in Legacy NonAggregates |
| 4863 | * @mpdu_sw_requed: No of MPDU/Subframes's SW requeued includes |
| 4864 | * both Aggr and NonAggr |
| 4865 | * @mpdu_suc_retry: No of MPDU/Subframes's transmitted Successfully |
| 4866 | * after Single/mul HW retry |
| 4867 | * @mpdu_suc_multitry: No of MPDU/Subframes's transmitted Success |
| 4868 | * after Multiple HW retry |
| 4869 | * @mpdu_fail_retry: No of MPDU/Subframes's failed transmission |
| 4870 | * after Multiple HW retry |
| 4871 | * @reserved[13]: for future extensions set to 0x0 |
| 4872 | */ |
| 4873 | typedef struct { |
| 4874 | uint32_t vdev_id; |
| 4875 | uint32_t ppdu_aggr_cnt; |
| 4876 | uint32_t ppdu_noack; |
| 4877 | uint32_t mpdu_queued; |
| 4878 | uint32_t ppdu_nonaggr_cnt; |
| 4879 | uint32_t mpdu_sw_requed; |
| 4880 | uint32_t mpdu_suc_retry; |
| 4881 | uint32_t mpdu_suc_multitry; |
| 4882 | uint32_t mpdu_fail_retry; |
| 4883 | uint32_t reserved[13]; |
| 4884 | } wmi_host_vdev_extd_stats; |
| 4885 | |
| 4886 | /** |
| 4887 | * struct wmi_host_peer_stats - peer stats |
| 4888 | * @peer_macaddr: peer MAC address |
| 4889 | * @peer_rssi: rssi |
| 4890 | * @peer_rssi_seq_num: rssi sequence number |
| 4891 | * @peer_tx_rate: last tx data rate used for peer |
| 4892 | * @peer_rx_rate: last rx data rate used for peer |
| 4893 | * @currentper: Current PER |
| 4894 | * @retries: Retries happend during transmission |
| 4895 | * @txratecount: Maximum Aggregation Size |
| 4896 | * @max4msframelen: Max4msframelen of tx rates used |
| 4897 | * @totalsubframes: Total no of subframes |
| 4898 | * @txbytes: No of bytes transmitted to the client |
| 4899 | * @nobuffs[4]: Packet Loss due to buffer overflows |
| 4900 | * @excretries[4]: Packet Loss due to excessive retries |
| 4901 | * @peer_rssi_changed: how many times peer's RSSI changed by a |
| 4902 | * non-negligible amount |
| 4903 | */ |
| 4904 | typedef struct { |
| 4905 | wmi_host_mac_addr peer_macaddr; |
| 4906 | uint32_t peer_rssi; |
| 4907 | uint32_t peer_rssi_seq_num; |
| 4908 | uint32_t peer_tx_rate; |
| 4909 | uint32_t peer_rx_rate; |
| 4910 | uint32_t currentper; |
| 4911 | uint32_t retries; |
| 4912 | uint32_t txratecount; |
| 4913 | uint32_t max4msframelen; |
| 4914 | uint32_t totalsubframes; |
| 4915 | uint32_t txbytes; |
| 4916 | uint32_t nobuffs[4]; |
| 4917 | uint32_t excretries[4]; |
| 4918 | uint32_t peer_rssi_changed; |
| 4919 | } wmi_host_peer_stats; |
| 4920 | |
| 4921 | typedef struct { |
| 4922 | uint32_t dummy; |
| 4923 | } wmi_host_bcnflt_stats; |
| 4924 | |
| 4925 | /** |
| 4926 | * struct wmi_host_chan_stats - WMI chan stats |
| 4927 | * @chan_mhz: Primary channel freq of the channel for which stats are sent |
| 4928 | * @sampling_period_us: Time spent on the channel |
| 4929 | * @rx_clear_count: Aggregate duration over a sampling period for |
| 4930 | * which channel activity was observed |
| 4931 | * @tx_duration_us: Accumalation of the TX PPDU duration over a sampling period |
| 4932 | * @rx_duration_us: Accumalation of the RX PPDU duration over a sampling period |
| 4933 | */ |
| 4934 | typedef struct { |
| 4935 | uint32_t chan_mhz; |
| 4936 | uint32_t sampling_period_us; |
| 4937 | uint32_t rx_clear_count; |
| 4938 | uint32_t tx_duration_us; |
| 4939 | uint32_t rx_duration_us; |
| 4940 | } wmi_host_chan_stats; |
| 4941 | |
| 4942 | #define WMI_EVENT_ID_INVALID 0 |
| 4943 | /** |
| 4944 | * Host based ENUM IDs for events to abstract target enums for event_id |
| 4945 | */ |
| 4946 | typedef enum { |
| 4947 | wmi_service_ready_event_id = 0, |
| 4948 | wmi_ready_event_id, |
| 4949 | wmi_dbg_msg_event_id, |
| 4950 | wmi_scan_event_id, |
| 4951 | wmi_echo_event_id, |
| 4952 | wmi_update_stats_event_id, |
| 4953 | wmi_inst_rssi_stats_event_id, |
| 4954 | wmi_vdev_start_resp_event_id, |
| 4955 | wmi_vdev_standby_req_event_id, |
| 4956 | wmi_vdev_resume_req_event_id, |
| 4957 | wmi_vdev_stopped_event_id, |
| 4958 | wmi_peer_sta_kickout_event_id, |
| 4959 | wmi_host_swba_event_id, |
| 4960 | wmi_tbttoffset_update_event_id, |
| 4961 | wmi_mgmt_rx_event_id, |
| 4962 | wmi_chan_info_event_id, |
| 4963 | wmi_phyerr_event_id, |
| 4964 | wmi_roam_event_id, |
| 4965 | wmi_profile_match, |
| 4966 | wmi_debug_print_event_id, |
| 4967 | wmi_pdev_qvit_event_id, |
| 4968 | wmi_wlan_profile_data_event_id, |
| 4969 | wmi_rtt_meas_report_event_id, |
| 4970 | wmi_tsf_meas_report_event_id, |
| 4971 | wmi_rtt_error_report_event_id, |
| 4972 | wmi_rtt_keepalive_event_id, |
| 4973 | wmi_oem_cap_event_id, |
| 4974 | wmi_oem_meas_report_event_id, |
| 4975 | wmi_oem_report_event_id, |
| 4976 | wmi_nan_event_id, |
| 4977 | wmi_wow_wakeup_host_event_id, |
| 4978 | wmi_gtk_offload_status_event_id, |
| 4979 | wmi_gtk_rekey_fail_event_id, |
| 4980 | wmi_dcs_interference_event_id, |
| 4981 | wmi_pdev_tpc_config_event_id, |
| 4982 | wmi_csa_handling_event_id, |
| 4983 | wmi_gpio_input_event_id, |
| 4984 | wmi_peer_ratecode_list_event_id, |
| 4985 | wmi_generic_buffer_event_id, |
| 4986 | wmi_mcast_buf_release_event_id, |
| 4987 | wmi_mcast_list_ageout_event_id, |
| 4988 | wmi_vdev_get_keepalive_event_id, |
| 4989 | wmi_wds_peer_event_id, |
| 4990 | wmi_peer_sta_ps_statechg_event_id, |
| 4991 | wmi_pdev_fips_event_id, |
| 4992 | wmi_tt_stats_event_id, |
| 4993 | wmi_pdev_channel_hopping_event_id, |
| 4994 | wmi_pdev_ani_cck_level_event_id, |
| 4995 | wmi_pdev_ani_ofdm_level_event_id, |
| 4996 | wmi_pdev_reserve_ast_entry_event_id, |
| 4997 | wmi_pdev_nfcal_power_event_id, |
| 4998 | wmi_pdev_tpc_event_id, |
| 4999 | wmi_pdev_get_ast_info_event_id, |
| 5000 | wmi_pdev_temperature_event_id, |
| 5001 | wmi_pdev_nfcal_power_all_channels_event_id, |
| 5002 | wmi_pdev_bss_chan_info_event_id, |
| 5003 | wmi_mu_report_event_id, |
| 5004 | wmi_pdev_utf_event_id, |
| 5005 | wmi_pdev_dump_event_id, |
| 5006 | wmi_tx_pause_event_id, |
| 5007 | wmi_dfs_radar_event_id, |
| 5008 | wmi_pdev_l1ss_track_event_id, |
| 5009 | wmi_service_ready_ext_event_id, |
| 5010 | wmi_vdev_install_key_complete_event_id, |
| 5011 | wmi_vdev_mcc_bcn_intvl_change_req_event_id, |
| 5012 | wmi_vdev_tsf_report_event_id, |
| 5013 | wmi_peer_info_event_id, |
| 5014 | wmi_peer_tx_fail_cnt_thr_event_id, |
| 5015 | wmi_peer_estimated_linkspeed_event_id, |
| 5016 | wmi_peer_state_event_id, |
| 5017 | wmi_offload_bcn_tx_status_event_id, |
| 5018 | wmi_offload_prob_resp_tx_status_event_id, |
| 5019 | wmi_mgmt_tx_completion_event_id, |
| 5020 | wmi_tx_delba_complete_event_id, |
| 5021 | wmi_tx_addba_complete_event_id, |
| 5022 | wmi_ba_rsp_ssn_event_id, |
| 5023 | wmi_aggr_state_trig_event_id, |
| 5024 | wmi_roam_synch_event_id, |
| 5025 | wmi_p2p_disc_event_id, |
| 5026 | wmi_p2p_noa_event_id, |
Wu Gao | af2196b | 2017-03-15 19:12:20 +0800 | [diff] [blame] | 5027 | wmi_p2p_lo_stop_event_id, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5028 | wmi_pdev_resume_event_id, |
| 5029 | wmi_do_wow_disable_ack_event_id, |
| 5030 | wmi_wow_initial_wakeup_event_id, |
| 5031 | wmi_stats_ext_event_id, |
| 5032 | wmi_iface_link_stats_event_id, |
| 5033 | wmi_peer_link_stats_event_id, |
| 5034 | wmi_radio_link_stats_link, |
| 5035 | wmi_update_fw_mem_dump_event_id, |
| 5036 | wmi_diag_event_id_log_supported_event_id, |
| 5037 | wmi_nlo_match_event_id, |
| 5038 | wmi_nlo_scan_complete_event_id, |
| 5039 | wmi_apfind_event_id, |
| 5040 | wmi_passpoint_match_event_id, |
| 5041 | wmi_chatter_pc_query_event_id, |
| 5042 | wmi_pdev_ftm_intg_event_id, |
| 5043 | wmi_wlan_freq_avoid_event_id, |
| 5044 | wmi_thermal_mgmt_event_id, |
| 5045 | wmi_diag_container_event_id, |
| 5046 | wmi_host_auto_shutdown_event_id, |
| 5047 | wmi_update_whal_mib_stats_event_id, |
| 5048 | wmi_update_vdev_rate_stats_event_id, |
| 5049 | wmi_diag_event_id, |
| 5050 | wmi_ocb_set_sched_event_id, |
| 5051 | wmi_dbg_mesg_flush_complete_event_id, |
| 5052 | wmi_rssi_breach_event_id, |
| 5053 | wmi_uploadh_event_id, |
| 5054 | wmi_captureh_event_id, |
| 5055 | wmi_rfkill_state_change_event_id, |
| 5056 | wmi_tdls_peer_event_id, |
| 5057 | wmi_batch_scan_enabled_event_id, |
| 5058 | wmi_batch_scan_result_event_id, |
| 5059 | wmi_lpi_result_event_id, |
| 5060 | wmi_lpi_status_event_id, |
| 5061 | wmi_lpi_handoff_event_id, |
| 5062 | wmi_extscan_start_stop_event_id, |
| 5063 | wmi_extscan_operation_event_id, |
| 5064 | wmi_extscan_table_usage_event_id, |
| 5065 | wmi_extscan_cached_results_event_id, |
| 5066 | wmi_extscan_wlan_change_results_event_id, |
| 5067 | wmi_extscan_hotlist_match_event_id, |
| 5068 | wmi_extscan_capabilities_event_id, |
| 5069 | wmi_extscan_hotlist_ssid_match_event_id, |
| 5070 | wmi_mdns_stats_event_id, |
| 5071 | wmi_sap_ofl_add_sta_event_id, |
| 5072 | wmi_sap_ofl_del_sta_event_id, |
| 5073 | wmi_ocb_set_config_resp_event_id, |
| 5074 | wmi_ocb_get_tsf_timer_resp_event_id, |
| 5075 | wmi_dcc_get_stats_resp_event_id, |
| 5076 | wmi_dcc_update_ndl_resp_event_id, |
| 5077 | wmi_dcc_stats_event_id, |
| 5078 | wmi_soc_set_hw_mode_resp_event_id, |
| 5079 | wmi_soc_hw_mode_transition_event_id, |
| 5080 | wmi_soc_set_dual_mac_config_resp_event_id, |
| 5081 | wmi_tx_data_traffic_ctrl_event_id, |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 5082 | wmi_peer_tx_mu_txmit_count_event_id, |
| 5083 | wmi_peer_gid_userpos_list_event_id, |
| 5084 | wmi_pdev_check_cal_version_event_id, |
| 5085 | wmi_atf_peer_stats_event_id, |
Vijay Pamidipati | add0ba7 | 2017-01-17 12:53:05 +0530 | [diff] [blame] | 5086 | wmi_peer_delete_response_event_id, |
Sathish Kumar | 907a746 | 2017-02-27 10:35:40 +0530 | [diff] [blame] | 5087 | wmi_pdev_csa_switch_count_status_event_id, |
Baila, Shashikala Prabhu | 6bad197 | 2017-03-17 10:21:14 +0530 | [diff] [blame^] | 5088 | wmi_reg_chan_list_cc_event_id, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5089 | |
| 5090 | wmi_events_max, |
| 5091 | } wmi_conv_event_id; |
| 5092 | |
| 5093 | #define WMI_UNAVAILABLE_PARAM 0 |
| 5094 | /** |
| 5095 | * Host based ENUM IDs for PDEV params to abstract target enums |
| 5096 | */ |
| 5097 | typedef enum { |
| 5098 | wmi_pdev_param_tx_chain_mask = 0, |
| 5099 | wmi_pdev_param_rx_chain_mask, |
| 5100 | wmi_pdev_param_txpower_limit2g, |
| 5101 | wmi_pdev_param_txpower_limit5g, |
| 5102 | wmi_pdev_param_txpower_scale, |
| 5103 | wmi_pdev_param_beacon_gen_mode, |
| 5104 | wmi_pdev_param_beacon_tx_mode, |
| 5105 | wmi_pdev_param_resmgr_offchan_mode, |
| 5106 | wmi_pdev_param_protection_mode, |
| 5107 | wmi_pdev_param_dynamic_bw, |
| 5108 | wmi_pdev_param_non_agg_sw_retry_th, |
| 5109 | wmi_pdev_param_agg_sw_retry_th, |
| 5110 | wmi_pdev_param_sta_kickout_th, |
| 5111 | wmi_pdev_param_ac_aggrsize_scaling, |
| 5112 | wmi_pdev_param_ltr_enable, |
| 5113 | wmi_pdev_param_ltr_ac_latency_be, |
| 5114 | wmi_pdev_param_ltr_ac_latency_bk, |
| 5115 | wmi_pdev_param_ltr_ac_latency_vi, |
| 5116 | wmi_pdev_param_ltr_ac_latency_vo, |
| 5117 | wmi_pdev_param_ltr_ac_latency_timeout, |
| 5118 | wmi_pdev_param_ltr_sleep_override, |
| 5119 | wmi_pdev_param_ltr_rx_override, |
| 5120 | wmi_pdev_param_ltr_tx_activity_timeout, |
| 5121 | wmi_pdev_param_l1ss_enable, |
| 5122 | wmi_pdev_param_dsleep_enable, |
| 5123 | wmi_pdev_param_pcielp_txbuf_flush, |
| 5124 | wmi_pdev_param_pcielp_txbuf_watermark, |
| 5125 | wmi_pdev_param_pcielp_txbuf_tmo_en, |
| 5126 | wmi_pdev_param_pcielp_txbuf_tmo_value, |
| 5127 | wmi_pdev_param_pdev_stats_update_period, |
| 5128 | wmi_pdev_param_vdev_stats_update_period, |
| 5129 | wmi_pdev_param_peer_stats_update_period, |
| 5130 | wmi_pdev_param_bcnflt_stats_update_period, |
| 5131 | wmi_pdev_param_pmf_qos, |
| 5132 | wmi_pdev_param_arp_ac_override, |
| 5133 | wmi_pdev_param_dcs, |
| 5134 | wmi_pdev_param_ani_enable, |
| 5135 | wmi_pdev_param_ani_poll_period, |
| 5136 | wmi_pdev_param_ani_listen_period, |
| 5137 | wmi_pdev_param_ani_ofdm_level, |
| 5138 | wmi_pdev_param_ani_cck_level, |
| 5139 | wmi_pdev_param_dyntxchain, |
| 5140 | wmi_pdev_param_proxy_sta, |
| 5141 | wmi_pdev_param_idle_ps_config, |
| 5142 | wmi_pdev_param_power_gating_sleep, |
| 5143 | wmi_pdev_param_aggr_burst, |
| 5144 | wmi_pdev_param_rx_decap_mode, |
| 5145 | wmi_pdev_param_fast_channel_reset, |
| 5146 | wmi_pdev_param_burst_dur, |
| 5147 | wmi_pdev_param_burst_enable, |
| 5148 | wmi_pdev_param_smart_antenna_default_antenna, |
| 5149 | wmi_pdev_param_igmpmld_override, |
| 5150 | wmi_pdev_param_igmpmld_tid, |
| 5151 | wmi_pdev_param_antenna_gain, |
| 5152 | wmi_pdev_param_rx_filter, |
| 5153 | wmi_pdev_set_mcast_to_ucast_tid, |
| 5154 | wmi_pdev_param_proxy_sta_mode, |
| 5155 | wmi_pdev_param_set_mcast2ucast_mode, |
| 5156 | wmi_pdev_param_set_mcast2ucast_buffer, |
| 5157 | wmi_pdev_param_remove_mcast2ucast_buffer, |
| 5158 | wmi_pdev_peer_sta_ps_statechg_enable, |
| 5159 | wmi_pdev_param_igmpmld_ac_override, |
| 5160 | wmi_pdev_param_block_interbss, |
| 5161 | wmi_pdev_param_set_disable_reset_cmdid, |
| 5162 | wmi_pdev_param_set_msdu_ttl_cmdid, |
| 5163 | wmi_pdev_param_set_ppdu_duration_cmdid, |
| 5164 | wmi_pdev_param_txbf_sound_period_cmdid, |
| 5165 | wmi_pdev_param_set_promisc_mode_cmdid, |
| 5166 | wmi_pdev_param_set_burst_mode_cmdid, |
| 5167 | wmi_pdev_param_en_stats, |
| 5168 | wmi_pdev_param_mu_group_policy, |
| 5169 | wmi_pdev_param_noise_detection, |
| 5170 | wmi_pdev_param_noise_threshold, |
| 5171 | wmi_pdev_param_dpd_enable, |
| 5172 | wmi_pdev_param_set_mcast_bcast_echo, |
| 5173 | wmi_pdev_param_atf_strict_sch, |
| 5174 | wmi_pdev_param_atf_sched_duration, |
| 5175 | wmi_pdev_param_ant_plzn, |
| 5176 | wmi_pdev_param_mgmt_retry_limit, |
| 5177 | wmi_pdev_param_sensitivity_level, |
| 5178 | wmi_pdev_param_signed_txpower_2g, |
| 5179 | wmi_pdev_param_signed_txpower_5g, |
| 5180 | wmi_pdev_param_enable_per_tid_amsdu, |
| 5181 | wmi_pdev_param_enable_per_tid_ampdu, |
| 5182 | wmi_pdev_param_cca_threshold, |
| 5183 | wmi_pdev_param_rts_fixed_rate, |
| 5184 | wmi_pdev_param_cal_period, |
| 5185 | wmi_pdev_param_pdev_reset, |
| 5186 | wmi_pdev_param_wapi_mbssid_offset, |
| 5187 | wmi_pdev_param_arp_srcaddr, |
| 5188 | wmi_pdev_param_arp_dstaddr, |
| 5189 | wmi_pdev_param_txpower_decr_db, |
| 5190 | wmi_pdev_param_rx_batchmode, |
| 5191 | wmi_pdev_param_packet_aggr_delay, |
| 5192 | wmi_pdev_param_atf_obss_noise_sch, |
| 5193 | wmi_pdev_param_atf_obss_noise_scaling_factor, |
| 5194 | wmi_pdev_param_cust_txpower_scale, |
| 5195 | wmi_pdev_param_atf_dynamic_enable, |
| 5196 | wmi_pdev_param_atf_ssid_group_policy, |
| 5197 | wmi_pdev_param_rfkill_enable, |
| 5198 | wmi_pdev_param_hw_rfkill_config, |
| 5199 | wmi_pdev_param_low_power_rf_enable, |
| 5200 | wmi_pdev_param_l1ss_track, |
| 5201 | wmi_pdev_param_hyst_en, |
| 5202 | wmi_pdev_param_power_collapse_enable, |
| 5203 | wmi_pdev_param_led_sys_state, |
| 5204 | wmi_pdev_param_led_enable, |
| 5205 | wmi_pdev_param_audio_over_wlan_latency, |
| 5206 | wmi_pdev_param_audio_over_wlan_enable, |
| 5207 | wmi_pdev_param_whal_mib_stats_update_enable, |
| 5208 | wmi_pdev_param_vdev_rate_stats_update_period, |
| 5209 | wmi_pdev_param_cts_cbw, |
| 5210 | wmi_pdev_param_wnts_config, |
| 5211 | wmi_pdev_param_adaptive_early_rx_enable, |
| 5212 | wmi_pdev_param_adaptive_early_rx_min_sleep_slop, |
| 5213 | wmi_pdev_param_adaptive_early_rx_inc_dec_step, |
| 5214 | wmi_pdev_param_early_rx_fix_sleep_slop, |
| 5215 | wmi_pdev_param_bmiss_based_adaptive_bto_enable, |
| 5216 | wmi_pdev_param_bmiss_bto_min_bcn_timeout, |
| 5217 | wmi_pdev_param_bmiss_bto_inc_dec_step, |
| 5218 | wmi_pdev_param_bto_fix_bcn_timeout, |
| 5219 | wmi_pdev_param_ce_based_adaptive_bto_enable, |
| 5220 | wmi_pdev_param_ce_bto_combo_ce_value, |
| 5221 | wmi_pdev_param_tx_chain_mask_2g, |
| 5222 | wmi_pdev_param_rx_chain_mask_2g, |
| 5223 | wmi_pdev_param_tx_chain_mask_5g, |
| 5224 | wmi_pdev_param_rx_chain_mask_5g, |
| 5225 | wmi_pdev_param_tx_chain_mask_cck, |
| 5226 | wmi_pdev_param_tx_chain_mask_1ss, |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 5227 | wmi_pdev_param_enable_btcoex, |
| 5228 | wmi_pdev_param_atf_peer_stats, |
Sathish Kumar | 612d0c2 | 2017-01-19 14:57:37 +0530 | [diff] [blame] | 5229 | wmi_pdev_param_btcoex_cfg, |
Venkateswara Swamy Bandaru | d8ac3e7 | 2017-02-24 17:09:46 +0530 | [diff] [blame] | 5230 | wmi_pdev_param_mesh_mcast_enable, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5231 | |
| 5232 | wmi_pdev_param_max, |
| 5233 | } wmi_conv_pdev_params_id; |
| 5234 | |
| 5235 | |
| 5236 | /** |
| 5237 | * Host based ENUM IDs for VDEV params to abstract target enums |
| 5238 | */ |
| 5239 | typedef enum { |
| 5240 | wmi_vdev_param_rts_threshold = 0, |
| 5241 | wmi_vdev_param_fragmentation_threshold, |
| 5242 | wmi_vdev_param_beacon_interval, |
| 5243 | wmi_vdev_param_listen_interval, |
| 5244 | wmi_vdev_param_multicast_rate, |
| 5245 | wmi_vdev_param_mgmt_tx_rate, |
| 5246 | wmi_vdev_param_slot_time, |
| 5247 | wmi_vdev_param_preamble, |
| 5248 | wmi_vdev_param_swba_time, |
| 5249 | wmi_vdev_stats_update_period, |
| 5250 | wmi_vdev_pwrsave_ageout_time, |
| 5251 | wmi_vdev_host_swba_interval, |
| 5252 | wmi_vdev_param_dtim_period, |
| 5253 | wmi_vdev_oc_scheduler_air_time_limit, |
| 5254 | wmi_vdev_param_wds, |
| 5255 | wmi_vdev_param_atim_window, |
| 5256 | wmi_vdev_param_bmiss_count_max, |
| 5257 | wmi_vdev_param_bmiss_first_bcnt, |
| 5258 | wmi_vdev_param_bmiss_final_bcnt, |
| 5259 | wmi_vdev_param_feature_wmm, |
| 5260 | wmi_vdev_param_chwidth, |
| 5261 | wmi_vdev_param_chextoffset, |
| 5262 | wmi_vdev_param_disable_htprotection, |
| 5263 | wmi_vdev_param_sta_quickkickout, |
| 5264 | wmi_vdev_param_mgmt_rate, |
| 5265 | wmi_vdev_param_protection_mode, |
| 5266 | wmi_vdev_param_fixed_rate, |
| 5267 | wmi_vdev_param_sgi, |
| 5268 | wmi_vdev_param_ldpc, |
| 5269 | wmi_vdev_param_tx_stbc, |
| 5270 | wmi_vdev_param_rx_stbc, |
| 5271 | wmi_vdev_param_intra_bss_fwd, |
| 5272 | wmi_vdev_param_def_keyid, |
| 5273 | wmi_vdev_param_nss, |
| 5274 | wmi_vdev_param_bcast_data_rate, |
| 5275 | wmi_vdev_param_mcast_data_rate, |
| 5276 | wmi_vdev_param_mcast_indicate, |
| 5277 | wmi_vdev_param_dhcp_indicate, |
| 5278 | wmi_vdev_param_unknown_dest_indicate, |
| 5279 | wmi_vdev_param_ap_keepalive_min_idle_inactive_time_secs, |
| 5280 | wmi_vdev_param_ap_keepalive_max_idle_inactive_time_secs, |
| 5281 | wmi_vdev_param_ap_keepalive_max_unresponsive_time_secs, |
| 5282 | wmi_vdev_param_ap_enable_nawds, |
| 5283 | wmi_vdev_param_mcast2ucast_set, |
| 5284 | wmi_vdev_param_enable_rtscts, |
| 5285 | wmi_vdev_param_rc_num_retries, |
| 5286 | wmi_vdev_param_txbf, |
| 5287 | wmi_vdev_param_packet_powersave, |
| 5288 | wmi_vdev_param_drop_unencry, |
| 5289 | wmi_vdev_param_tx_encap_type, |
| 5290 | wmi_vdev_param_ap_detect_out_of_sync_sleeping_sta_time_secs, |
| 5291 | wmi_vdev_param_cabq_maxdur, |
| 5292 | wmi_vdev_param_mfptest_set, |
| 5293 | wmi_vdev_param_rts_fixed_rate, |
| 5294 | wmi_vdev_param_vht_sgimask, |
| 5295 | wmi_vdev_param_vht80_ratemask, |
| 5296 | wmi_vdev_param_early_rx_adjust_enable, |
| 5297 | wmi_vdev_param_early_rx_tgt_bmiss_num, |
| 5298 | wmi_vdev_param_early_rx_bmiss_sample_cycle, |
| 5299 | wmi_vdev_param_early_rx_slop_step, |
| 5300 | wmi_vdev_param_early_rx_init_slop, |
| 5301 | wmi_vdev_param_early_rx_adjust_pause, |
| 5302 | wmi_vdev_param_proxy_sta, |
| 5303 | wmi_vdev_param_meru_vc, |
| 5304 | wmi_vdev_param_rx_decap_type, |
| 5305 | wmi_vdev_param_bw_nss_ratemask, |
| 5306 | wmi_vdev_param_sensor_ap, |
| 5307 | wmi_vdev_param_beacon_rate, |
| 5308 | wmi_vdev_param_dtim_enable_cts, |
| 5309 | wmi_vdev_param_sta_kickout, |
| 5310 | wmi_vdev_param_tx_pwrlimit, |
| 5311 | wmi_vdev_param_snr_num_for_cal, |
| 5312 | wmi_vdev_param_roam_fw_offload, |
| 5313 | wmi_vdev_param_enable_rmc, |
| 5314 | wmi_vdev_param_ibss_max_bcn_lost_ms, |
| 5315 | wmi_vdev_param_max_rate, |
| 5316 | wmi_vdev_param_early_rx_drift_sample, |
| 5317 | wmi_vdev_param_set_ibss_tx_fail_cnt_thr, |
| 5318 | wmi_vdev_param_ebt_resync_timeout, |
| 5319 | wmi_vdev_param_aggr_trig_event_enable, |
| 5320 | wmi_vdev_param_is_ibss_power_save_allowed, |
| 5321 | wmi_vdev_param_is_power_collapse_allowed, |
| 5322 | wmi_vdev_param_is_awake_on_txrx_enabled, |
| 5323 | wmi_vdev_param_inactivity_cnt, |
| 5324 | wmi_vdev_param_txsp_end_inactivity_time_ms, |
| 5325 | wmi_vdev_param_dtim_policy, |
| 5326 | wmi_vdev_param_ibss_ps_warmup_time_secs, |
| 5327 | wmi_vdev_param_ibss_ps_1rx_chain_in_atim_window_enable, |
| 5328 | wmi_vdev_param_rx_leak_window, |
| 5329 | wmi_vdev_param_stats_avg_factor, |
| 5330 | wmi_vdev_param_disconnect_th, |
| 5331 | wmi_vdev_param_rtscts_rate, |
| 5332 | wmi_vdev_param_mcc_rtscts_protection_enable, |
| 5333 | wmi_vdev_param_mcc_broadcast_probe_enable, |
Himanshu Agarwal | 56c292f | 2016-07-19 15:41:51 +0530 | [diff] [blame] | 5334 | wmi_vdev_param_capabilities, |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 5335 | wmi_vdev_param_mgmt_tx_power, |
| 5336 | wmi_vdev_param_atf_ssid_sched_policy, |
| 5337 | wmi_vdev_param_disable_dyn_bw_rts, |
Nandha Kishore Easwaran | b3da422 | 2017-02-01 10:59:00 +0530 | [diff] [blame] | 5338 | wmi_vdev_param_ampdu_subframe_size_per_ac, |
Kris Muthusamy | e66c6bf | 2017-02-20 20:21:04 -0800 | [diff] [blame] | 5339 | wmi_vdev_param_he_dcm_enable, |
| 5340 | wmi_vdev_param_he_bss_color, |
| 5341 | wmi_vdev_param_he_range_ext_enable, |
| 5342 | wmi_vdev_param_set_hemu_mode, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5343 | |
| 5344 | wmi_vdev_param_max, |
| 5345 | } wmi_conv_vdev_param_id; |
| 5346 | |
| 5347 | /** |
| 5348 | * Host based ENUM IDs for service bits to abstract target enums |
| 5349 | */ |
| 5350 | typedef enum { |
| 5351 | wmi_service_beacon_offload = 0, |
| 5352 | wmi_service_scan_offload, |
| 5353 | wmi_service_roam_offload, |
| 5354 | wmi_service_bcn_miss_offload, |
| 5355 | wmi_service_sta_pwrsave, |
| 5356 | wmi_service_sta_advanced_pwrsave, |
| 5357 | wmi_service_ap_uapsd, |
| 5358 | wmi_service_ap_dfs, |
| 5359 | wmi_service_11ac, |
| 5360 | wmi_service_blockack, |
| 5361 | wmi_service_phyerr, |
| 5362 | wmi_service_bcn_filter, |
| 5363 | wmi_service_rtt, |
| 5364 | wmi_service_ratectrl, |
| 5365 | wmi_service_wow, |
| 5366 | wmi_service_ratectrl_cache, |
| 5367 | wmi_service_iram_tids, |
| 5368 | wmi_service_burst, |
| 5369 | wmi_service_smart_antenna_sw_support, |
| 5370 | wmi_service_gtk_offload, |
| 5371 | wmi_service_scan_sch, |
| 5372 | wmi_service_csa_offload, |
| 5373 | wmi_service_chatter, |
| 5374 | wmi_service_coex_freqavoid, |
| 5375 | wmi_service_packet_power_save, |
| 5376 | wmi_service_force_fw_hang, |
| 5377 | wmi_service_smart_antenna_hw_support, |
| 5378 | wmi_service_gpio, |
| 5379 | wmi_sta_uapsd_basic_auto_trig, |
| 5380 | wmi_sta_uapsd_var_auto_trig, |
| 5381 | wmi_service_sta_keep_alive, |
| 5382 | wmi_service_tx_encap, |
| 5383 | wmi_service_ap_ps_detect_out_of_sync, |
| 5384 | wmi_service_early_rx, |
| 5385 | wmi_service_enhanced_proxy_sta, |
| 5386 | wmi_service_tt, |
| 5387 | wmi_service_atf, |
| 5388 | wmi_service_peer_caching, |
| 5389 | wmi_service_coex_gpio, |
| 5390 | wmi_service_aux_spectral_intf, |
| 5391 | wmi_service_aux_chan_load_intf, |
| 5392 | wmi_service_bss_channel_info_64, |
| 5393 | wmi_service_ext_res_cfg_support, |
| 5394 | wmi_service_mesh, |
| 5395 | wmi_service_restrt_chnl_support, |
| 5396 | wmi_service_roam_scan_offload, |
| 5397 | wmi_service_arpns_offload, |
| 5398 | wmi_service_nlo, |
| 5399 | wmi_service_sta_dtim_ps_modulated_dtim, |
| 5400 | wmi_service_sta_smps, |
| 5401 | wmi_service_fwtest, |
| 5402 | wmi_service_sta_wmmac, |
| 5403 | wmi_service_tdls, |
| 5404 | wmi_service_mcc_bcn_interval_change, |
| 5405 | wmi_service_adaptive_ocs, |
| 5406 | wmi_service_ba_ssn_support, |
| 5407 | wmi_service_filter_ipsec_natkeepalive, |
| 5408 | wmi_service_wlan_hb, |
| 5409 | wmi_service_lte_ant_share_support, |
| 5410 | wmi_service_batch_scan, |
| 5411 | wmi_service_qpower, |
| 5412 | wmi_service_plmreq, |
| 5413 | wmi_service_thermal_mgmt, |
| 5414 | wmi_service_rmc, |
| 5415 | wmi_service_mhf_offload, |
| 5416 | wmi_service_coex_sar, |
| 5417 | wmi_service_bcn_txrate_override, |
| 5418 | wmi_service_nan, |
| 5419 | wmi_service_l1ss_stat, |
| 5420 | wmi_service_estimate_linkspeed, |
| 5421 | wmi_service_obss_scan, |
| 5422 | wmi_service_tdls_offchan, |
| 5423 | wmi_service_tdls_uapsd_buffer_sta, |
| 5424 | wmi_service_tdls_uapsd_sleep_sta, |
| 5425 | wmi_service_ibss_pwrsave, |
| 5426 | wmi_service_lpass, |
| 5427 | wmi_service_extscan, |
| 5428 | wmi_service_d0wow, |
| 5429 | wmi_service_hsoffload, |
| 5430 | wmi_service_roam_ho_offload, |
| 5431 | wmi_service_rx_full_reorder, |
| 5432 | wmi_service_dhcp_offload, |
| 5433 | wmi_service_sta_rx_ipa_offload_support, |
| 5434 | wmi_service_mdns_offload, |
| 5435 | wmi_service_sap_auth_offload, |
| 5436 | wmi_service_dual_band_simultaneous_support, |
| 5437 | wmi_service_ocb, |
| 5438 | wmi_service_ap_arpns_offload, |
| 5439 | wmi_service_per_band_chainmask_support, |
| 5440 | wmi_service_packet_filter_offload, |
| 5441 | wmi_service_mgmt_tx_htt, |
| 5442 | wmi_service_mgmt_tx_wmi, |
| 5443 | wmi_service_ext_msg, |
| 5444 | wmi_service_mawc, |
| 5445 | |
| 5446 | wmi_service_peer_stats, |
| 5447 | wmi_service_mesh_11s, |
| 5448 | wmi_service_periodic_chan_stat_support, |
| 5449 | wmi_service_tx_mode_push_only, |
| 5450 | wmi_service_tx_mode_push_pull, |
| 5451 | wmi_service_tx_mode_dynamic, |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 5452 | wmi_service_check_cal_version, |
Sathish Kumar | 7e566c5 | 2016-11-10 15:30:22 +0530 | [diff] [blame] | 5453 | wmi_service_btcoex_duty_cycle, |
Sathish Kumar | 612d0c2 | 2017-01-19 14:57:37 +0530 | [diff] [blame] | 5454 | wmi_service_4_wire_coex_support, |
Sathish Kumar | 907a746 | 2017-02-27 10:35:40 +0530 | [diff] [blame] | 5455 | wmi_service_multiple_vdev_restart, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5456 | |
| 5457 | wmi_services_max, |
| 5458 | } wmi_conv_service_ids; |
| 5459 | #define WMI_SERVICE_UNAVAILABLE 0xFFFF |
| 5460 | |
| 5461 | /** |
Sandeep Puligilla | 82b95ca | 2017-01-04 16:45:45 -0800 | [diff] [blame] | 5462 | * enum WMI_DBG_PARAM - Debug params |
| 5463 | * @WMI_DBGLOG_LOG_LEVEL: Set the loglevel |
| 5464 | * @WMI_DBGLOG_VAP_ENABLE: Enable VAP level debug |
| 5465 | * @WMI_DBGLOG_VAP_DISABLE: Disable VAP level debug |
| 5466 | * @WMI_DBGLOG_MODULE_ENABLE: Enable MODULE level debug |
| 5467 | * @WMI_DBGLOG_MODULE_DISABLE: Disable MODULE level debug |
| 5468 | * @WMI_DBGLOG_MOD_LOG_LEVEL: Enable MODULE level debug |
| 5469 | * @WMI_DBGLOG_TYPE: set type of the debug output |
| 5470 | * @WMI_DBGLOG_REPORT_ENABLE: Enable Disable debug |
| 5471 | */ |
| 5472 | typedef enum { |
| 5473 | WMI_DBGLOG_LOG_LEVEL = 0x1, |
| 5474 | WMI_DBGLOG_VAP_ENABLE, |
| 5475 | WMI_DBGLOG_VAP_DISABLE, |
| 5476 | WMI_DBGLOG_MODULE_ENABLE, |
| 5477 | WMI_DBGLOG_MODULE_DISABLE, |
| 5478 | WMI_DBGLOG_MOD_LOG_LEVEL, |
| 5479 | WMI_DBGLOG_TYPE, |
| 5480 | WMI_DBGLOG_REPORT_ENABLE |
| 5481 | } WMI_DBG_PARAM; |
| 5482 | |
| 5483 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5484 | * struct wmi_host_fw_ver - FW version in non-tlv target |
| 5485 | * @sw_version: Versin info |
| 5486 | * @sw_version_1: Second dword of version |
| 5487 | */ |
| 5488 | struct wmi_host_fw_ver { |
| 5489 | uint32_t sw_version; |
| 5490 | uint32_t sw_version_1; |
| 5491 | }; |
| 5492 | |
| 5493 | /** |
| 5494 | * struct wmi_host_fw_abi_ver - FW version in non-tlv target |
| 5495 | * @sw_version: Versin info |
| 5496 | * @abi_version: ABI version |
| 5497 | */ |
| 5498 | struct wmi_host_fw_abi_ver { |
| 5499 | uint32_t sw_version; |
| 5500 | uint32_t abi_version; |
| 5501 | }; |
| 5502 | |
| 5503 | /** |
| 5504 | * struct target_resource_config - Resource config sent from host to target |
| 5505 | * abstracted out to include union of both configs |
| 5506 | * @num_vdevs: Number vdevs configured |
| 5507 | * @num_peers: Number of peers |
| 5508 | * @num_active_peers: Number of active peers for peer cache |
| 5509 | * @num_offload_peers: Number of offload peers |
| 5510 | * @num_offload_reorder_buffs: number of offload reorder buffs |
| 5511 | * @num_peer_keys: number of peer keys |
| 5512 | * @num_tids: number of tids |
| 5513 | * @ast_skid_limit: AST skid limit |
| 5514 | * @tx_chain_mask: TX chain mask |
| 5515 | * @rx_chain_mask: RX chain mask |
| 5516 | * @rx_timeout_pri: RX reorder timeout per AC |
| 5517 | * @rx_decap_mode: RX decap mode |
| 5518 | * @scan_max_pending_req: Scan mac pending req |
| 5519 | * @bmiss_offload_max_vdev: Beacom miss offload max vdevs |
| 5520 | * @roam_offload_max_vdev: Roam offload max vdevs |
| 5521 | * @roam_offload_max_ap_profiles: roam offload max ap profiles |
| 5522 | * @num_mcast_groups: num mcast groups |
| 5523 | * @num_mcast_table_elems: number of macst table elems |
| 5524 | * @mcast2ucast_mode: mcast enhance mode |
| 5525 | * @tx_dbg_log_size: DBG log buf size |
| 5526 | * @num_wds_entries: number of WDS entries |
| 5527 | * @dma_burst_size: DMA burst size. |
| 5528 | * @mac_aggr_delim: Mac aggr delim |
| 5529 | * @rx_skip_defrag_timeout_dup_detection_check: Defrag dup check in host? |
| 5530 | * @vow_config: vow configuration |
| 5531 | * @gtk_offload_max_vdev: Max vdevs for GTK offload |
| 5532 | * @num_msdu_desc: Number of msdu desc |
| 5533 | * @max_frag_entries: Max frag entries |
| 5534 | * End common |
| 5535 | * @max_peer_ext_stats: Max peer EXT stats |
| 5536 | * @smart_ant_cap: Smart antenna capabilities |
| 5537 | * @BK_Minfree: BIN configuration for BK traffic |
| 5538 | * @BE_Minfree: BIN configuration for BE traffic |
| 5539 | * @VI_Minfree: BIN configuration for VI traffic |
| 5540 | * @VO_Minfree: BIN configuration for VO traffic |
| 5541 | * @rx_batchmode: RX batch mode |
| 5542 | * @tt_support: Thermal throttling support |
| 5543 | * @atf_config: ATF config |
| 5544 | * @iphdr_pad_config: ipheader pad config |
| 5545 | * @qwrap_config: Qwrap configuration |
| 5546 | * @alloc_frag_desc_for_data_pkt: Frag desc for data |
| 5547 | * Added in MCL |
| 5548 | * @num_tdls_vdevs: |
| 5549 | * @num_tdls_conn_table_entries: |
| 5550 | * @beacon_tx_offload_max_vdev: |
| 5551 | * @num_multicast_filter_entries: |
| 5552 | * @num_wow_filters: |
| 5553 | * @num_keep_alive_pattern: |
| 5554 | * @keep_alive_pattern_size: |
| 5555 | * @max_tdls_concurrent_sleep_sta: |
| 5556 | * @max_tdls_concurrent_buffer_sta: |
| 5557 | * @wmi_send_separate: |
| 5558 | * @num_ocb_vdevs: |
| 5559 | * @num_ocb_channels: |
| 5560 | * @num_ocb_schedules: |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5561 | * @num_ns_ext_tuples_cfg: |
| 5562 | * @bpf_instruction_size: |
| 5563 | * @max_bssid_rx_filters: |
| 5564 | * @use_pdev_id: |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5565 | */ |
| 5566 | typedef struct { |
| 5567 | uint32_t num_vdevs; |
| 5568 | uint32_t num_peers; |
| 5569 | uint32_t num_active_peers; |
| 5570 | uint32_t num_offload_peers; |
| 5571 | uint32_t num_offload_reorder_buffs; |
| 5572 | uint32_t num_peer_keys; |
| 5573 | uint32_t num_tids; |
| 5574 | uint32_t ast_skid_limit; |
| 5575 | uint32_t tx_chain_mask; |
| 5576 | uint32_t rx_chain_mask; |
| 5577 | uint32_t rx_timeout_pri[4]; |
| 5578 | uint32_t rx_decap_mode; |
| 5579 | uint32_t scan_max_pending_req; |
| 5580 | uint32_t bmiss_offload_max_vdev; |
| 5581 | uint32_t roam_offload_max_vdev; |
| 5582 | uint32_t roam_offload_max_ap_profiles; |
| 5583 | uint32_t num_mcast_groups; |
| 5584 | uint32_t num_mcast_table_elems; |
| 5585 | uint32_t mcast2ucast_mode; |
| 5586 | uint32_t tx_dbg_log_size; |
| 5587 | uint32_t num_wds_entries; |
| 5588 | uint32_t dma_burst_size; |
| 5589 | uint32_t mac_aggr_delim; |
| 5590 | uint32_t rx_skip_defrag_timeout_dup_detection_check; |
| 5591 | uint32_t vow_config; |
| 5592 | uint32_t gtk_offload_max_vdev; |
| 5593 | uint32_t num_msdu_desc; /* Number of msdu desc */ |
| 5594 | uint32_t max_frag_entries; |
| 5595 | /* End common */ |
| 5596 | |
| 5597 | /* Added for Beeliner */ |
| 5598 | uint32_t max_peer_ext_stats; |
| 5599 | uint32_t smart_ant_cap; |
| 5600 | uint32_t BK_Minfree; |
| 5601 | uint32_t BE_Minfree; |
| 5602 | uint32_t VI_Minfree; |
| 5603 | uint32_t VO_Minfree; |
| 5604 | uint32_t rx_batchmode; |
| 5605 | uint32_t tt_support; |
| 5606 | uint32_t atf_config; |
| 5607 | uint32_t iphdr_pad_config; |
| 5608 | uint32_t |
| 5609 | qwrap_config:16, |
| 5610 | alloc_frag_desc_for_data_pkt:16; |
| 5611 | |
| 5612 | /* Added in MCL */ |
| 5613 | uint32_t num_tdls_vdevs; |
| 5614 | uint32_t num_tdls_conn_table_entries; |
| 5615 | uint32_t beacon_tx_offload_max_vdev; |
| 5616 | uint32_t num_multicast_filter_entries; |
| 5617 | uint32_t num_wow_filters; |
| 5618 | uint32_t num_keep_alive_pattern; |
| 5619 | uint32_t keep_alive_pattern_size; |
| 5620 | uint32_t max_tdls_concurrent_sleep_sta; |
| 5621 | uint32_t max_tdls_concurrent_buffer_sta; |
| 5622 | uint32_t wmi_send_separate; |
| 5623 | uint32_t num_ocb_vdevs; |
| 5624 | uint32_t num_ocb_channels; |
| 5625 | uint32_t num_ocb_schedules; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5626 | uint32_t num_ns_ext_tuples_cfg; |
| 5627 | uint32_t bpf_instruction_size; |
| 5628 | uint32_t max_bssid_rx_filters; |
| 5629 | uint32_t use_pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5630 | } target_resource_config; |
| 5631 | |
| 5632 | /** |
| 5633 | * struct wds_addr_event - WDS addr event structure |
| 5634 | * @event_type: event type add/delete |
| 5635 | * @peer_mac: peer mac |
| 5636 | * @dest_mac: destination mac address |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5637 | * @vdev_id: vdev id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5638 | */ |
| 5639 | typedef struct { |
| 5640 | uint32_t event_type[4]; |
| 5641 | u_int8_t peer_mac[IEEE80211_ADDR_LEN]; |
| 5642 | u_int8_t dest_mac[IEEE80211_ADDR_LEN]; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5643 | uint32_t vdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5644 | } wds_addr_event_t; |
| 5645 | /** |
| 5646 | * Enum replicated for host abstraction with FW |
| 5647 | */ |
| 5648 | typedef enum { |
| 5649 | /* Event respose of START CMD */ |
| 5650 | WMI_HOST_VDEV_START_RESP_EVENT = 0, |
| 5651 | /* Event respose of RESTART CMD */ |
| 5652 | WMI_HOST_VDEV_RESTART_RESP_EVENT, |
| 5653 | } WMI_HOST_START_EVENT_PARAM; |
| 5654 | |
| 5655 | /** |
| 5656 | * struct wmi_host_vdev_start_resp - VDEV start response |
| 5657 | * @vdev_id: vdev id |
| 5658 | * @requestor_id: requestor id that requested the VDEV start request |
| 5659 | * @resp_type: Respose of Event type START/RESTART |
| 5660 | * @status: status of the response |
| 5661 | * @chain_mask: Vdev chain mask |
| 5662 | * @smps_mode: Vdev mimo power save mode |
| 5663 | * @mac_id: mac_id field contains the MAC identifier that the |
| 5664 | * VDEV is bound to. The valid range is 0 to (num_macs-1). |
| 5665 | * @cfgd_tx_streams: Configured Transmit Streams |
| 5666 | * @cfgd_rx_streams: Configured Receive Streams |
| 5667 | */ |
| 5668 | typedef struct { |
| 5669 | uint32_t vdev_id; |
| 5670 | uint32_t requestor_id; |
| 5671 | WMI_HOST_START_EVENT_PARAM resp_type; |
| 5672 | uint32_t status; |
| 5673 | uint32_t chain_mask; |
| 5674 | uint32_t smps_mode; |
| 5675 | uint32_t mac_id; |
| 5676 | uint32_t cfgd_tx_streams; |
| 5677 | uint32_t cfgd_rx_streams; |
| 5678 | } wmi_host_vdev_start_resp; |
| 5679 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5680 | /** |
| 5681 | * struct wmi_host_roam_event - host roam event param |
| 5682 | * @vdev_id: vdev id |
| 5683 | * @reason: roam reason |
| 5684 | * @rssi: RSSI |
| 5685 | */ |
| 5686 | typedef struct { |
| 5687 | uint32_t vdev_id; |
| 5688 | uint32_t reason; |
| 5689 | uint32_t rssi; |
| 5690 | } wmi_host_roam_event; |
| 5691 | |
| 5692 | /** |
| 5693 | * ENUM wmi_host_scan_event_type - Scan event type |
| 5694 | */ |
| 5695 | enum wmi_host_scan_event_type { |
| 5696 | WMI_HOST_SCAN_EVENT_STARTED = 0x1, |
| 5697 | WMI_HOST_SCAN_EVENT_COMPLETED = 0x2, |
| 5698 | WMI_HOST_SCAN_EVENT_BSS_CHANNEL = 0x4, |
| 5699 | WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL = 0x8, |
| 5700 | WMI_HOST_SCAN_EVENT_DEQUEUED = 0x10, |
| 5701 | WMI_HOST_SCAN_EVENT_PREEMPTED = 0x20, |
| 5702 | WMI_HOST_SCAN_EVENT_START_FAILED = 0x40, |
| 5703 | WMI_HOST_SCAN_EVENT_RESTARTED = 0x80, |
| 5704 | WMI_HOST_SCAN_EVENT_FOREIGN_CHANNEL_EXIT = 0x100, |
| 5705 | WMI_HOST_SCAN_EVENT_INVALID = 0x200, |
Sathish Kumar | 753eb7d | 2016-10-25 18:47:52 +0530 | [diff] [blame] | 5706 | WMI_HOST_SCAN_EVENT_GPIO_TIMEOUT = 0x400, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5707 | WMI_HOST_SCAN_EVENT_MAX = 0x8000 |
| 5708 | }; |
| 5709 | |
| 5710 | /** |
| 5711 | * ENUM wmi_host_scan_completion_reason - Scan completion event type |
| 5712 | */ |
| 5713 | enum wmi_host_scan_completion_reason { |
| 5714 | /** scan related events */ |
| 5715 | WMI_HOST_SCAN_REASON_NONE = 0xFF, |
| 5716 | WMI_HOST_SCAN_REASON_COMPLETED = 0, |
| 5717 | WMI_HOST_SCAN_REASON_CANCELLED = 1, |
| 5718 | WMI_HOST_SCAN_REASON_PREEMPTED = 2, |
| 5719 | WMI_HOST_SCAN_REASON_TIMEDOUT = 3, |
| 5720 | WMI_HOST_SCAN_REASON_INTERNAL_FAILURE = 4, |
| 5721 | WMI_HOST_SCAN_REASON_MAX, |
| 5722 | }; |
| 5723 | |
| 5724 | /** |
| 5725 | * struct wmi_host_scan_event - Scan event response from target |
| 5726 | * @event: event type |
| 5727 | * @reason: Reason for event |
| 5728 | * @channel_freq: channel frequency |
| 5729 | * @requestor: requestor id |
| 5730 | * @scan_id: scan id |
| 5731 | * @vdev_id: vdev id |
| 5732 | */ |
| 5733 | typedef struct { |
| 5734 | uint32_t event; |
| 5735 | uint32_t reason; |
| 5736 | uint32_t channel_freq; |
| 5737 | uint32_t requestor; |
| 5738 | uint32_t scan_id; |
| 5739 | uint32_t vdev_id; |
| 5740 | } wmi_host_scan_event; |
| 5741 | |
| 5742 | /** |
| 5743 | * struct wmi_host_pdev_reserve_ast_entry_event - Reserve AST entry |
| 5744 | * @result: result |
| 5745 | */ |
| 5746 | typedef struct { |
| 5747 | uint32_t result; |
| 5748 | } wmi_host_pdev_reserve_ast_entry_event; |
| 5749 | |
| 5750 | /** |
| 5751 | * struct wmi_host_mcast_ageout_entry - mcast aged-out entry |
| 5752 | * @grp_addr: IPv4/6 mcast group addr |
| 5753 | * @vdev_id: vdev id |
| 5754 | */ |
| 5755 | typedef struct { |
| 5756 | uint8_t grp_addr[16]; |
| 5757 | uint32_t vdev_id; |
| 5758 | } wmi_host_mcast_ageout_entry; |
| 5759 | |
| 5760 | /** |
| 5761 | * struct wmi_host_mcast_list_ageout_event - List of mcast entry aged-out |
| 5762 | * @num_entry: Number of mcast entries timed-out |
| 5763 | * @entry: List of wmi_host_mcast_ageout_entry |
| 5764 | */ |
| 5765 | typedef struct { |
| 5766 | uint32_t num_entry; |
| 5767 | wmi_host_mcast_ageout_entry entry[1]; |
| 5768 | } wmi_host_mcast_list_ageout_event; |
| 5769 | |
| 5770 | /** |
| 5771 | * struct wmi_host_pdev_nfcal_power_all_channels_event - NF cal event data |
| 5772 | * @nfdBr: |
| 5773 | * chan0: {NFCalPower_chain0, NFCalPower_chain1, |
| 5774 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5775 | * chan1: {NFCalPower_chain0, NFCalPower_chain1, |
| 5776 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5777 | * chan2: {NFCalPower_chain0, NFCalPower_chain1, |
| 5778 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5779 | * chan3: {NFCalPower_chain0, NFCalPower_chain1, |
| 5780 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5781 | * @nfdBr: |
| 5782 | * chan0: {NFCalPower_chain0, NFCalPower_chain1, |
| 5783 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5784 | * chan1: {NFCalPower_chain0, NFCalPower_chain1, |
| 5785 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5786 | * chan2: {NFCalPower_chain0, NFCalPower_chain1, |
| 5787 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5788 | * chan3: {NFCalPower_chain0, NFCalPower_chain1, |
| 5789 | * NFCalPower_chain2, NFCalPower_chain3}, |
| 5790 | * @freqNum: frequency number |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5791 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5792 | */ |
| 5793 | typedef struct { |
| 5794 | int8_t nfdBr[WMI_HOST_RXG_CAL_CHAN_MAX * WMI_HOST_MAX_NUM_CHAINS]; |
| 5795 | int8_t nfdBm[WMI_HOST_RXG_CAL_CHAN_MAX * WMI_HOST_MAX_NUM_CHAINS]; |
| 5796 | uint32_t freqNum[WMI_HOST_RXG_CAL_CHAN_MAX]; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5797 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5798 | } wmi_host_pdev_nfcal_power_all_channels_event; |
| 5799 | |
| 5800 | /** |
| 5801 | * struct wmi_host_pdev_tpc_event - WMI host pdev TPC event |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5802 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5803 | * @tpc: |
| 5804 | */ |
| 5805 | typedef struct { |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5806 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5807 | uint32_t tpc[1]; |
| 5808 | } wmi_host_pdev_tpc_event; |
| 5809 | |
| 5810 | /** |
| 5811 | * struct wmi_host_pdev_generic_buffer_event |
| 5812 | * @buf_type: Buffer type |
| 5813 | * @frag_id: Frag id |
| 5814 | * @more_frag: more frags pending |
| 5815 | * @buf_len: buffer length |
| 5816 | * @buf_info: variable length buffer |
| 5817 | */ |
| 5818 | typedef struct { |
| 5819 | uint32_t buf_type; |
| 5820 | uint32_t frag_id; |
| 5821 | uint32_t more_frag; |
| 5822 | uint32_t buf_len; |
| 5823 | uint32_t buf_info[1]; |
| 5824 | } wmi_host_pdev_generic_buffer_event; |
| 5825 | /** |
| 5826 | * Enum for host buffer event |
| 5827 | */ |
| 5828 | enum { |
| 5829 | WMI_HOST_BUFFER_TYPE_RATEPWR_TABLE, |
| 5830 | WMI_HOST_BUFFER_TYPE_CTL_TABLE, |
| 5831 | }; |
| 5832 | |
| 5833 | /** |
| 5834 | * struct wmi_host_pdev_tpc_config_event - host pdev tpc config event |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5835 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5836 | * @regDomain: |
| 5837 | * @chanFreq: |
| 5838 | * @phyMode: |
| 5839 | * @twiceAntennaReduction: |
| 5840 | * @twiceMaxRDPower: |
| 5841 | * @twiceAntennaGain: |
| 5842 | * @powerLimit: |
| 5843 | * @rateMax: |
| 5844 | * @numTxChain: |
| 5845 | * @ctl: |
| 5846 | * @flags: |
| 5847 | * @maxRegAllowedPower: |
| 5848 | * @maxRegAllowedPowerAGCDD: |
| 5849 | * @maxRegAllowedPowerAGSTBC: |
| 5850 | * @maxRegAllowedPowerAGTXBF: |
| 5851 | * @ratesArray: |
| 5852 | */ |
| 5853 | typedef struct { |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5854 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5855 | uint32_t regDomain; |
| 5856 | uint32_t chanFreq; |
| 5857 | uint32_t phyMode; |
| 5858 | uint32_t twiceAntennaReduction; |
| 5859 | uint32_t twiceMaxRDPower; |
| 5860 | int32_t twiceAntennaGain; |
| 5861 | uint32_t powerLimit; |
| 5862 | uint32_t rateMax; |
| 5863 | uint32_t numTxChain; |
| 5864 | uint32_t ctl; |
| 5865 | uint32_t flags; |
| 5866 | int8_t maxRegAllowedPower[WMI_HOST_TPC_TX_NUM_CHAIN]; |
| 5867 | int8_t maxRegAllowedPowerAGCDD[WMI_HOST_TPC_TX_NUM_CHAIN][WMI_HOST_TPC_TX_NUM_CHAIN]; |
| 5868 | int8_t maxRegAllowedPowerAGSTBC[WMI_HOST_TPC_TX_NUM_CHAIN][WMI_HOST_TPC_TX_NUM_CHAIN]; |
| 5869 | int8_t maxRegAllowedPowerAGTXBF[WMI_HOST_TPC_TX_NUM_CHAIN][WMI_HOST_TPC_TX_NUM_CHAIN]; |
| 5870 | uint8_t ratesArray[WMI_HOST_TPC_RATE_MAX]; |
| 5871 | } wmi_host_pdev_tpc_config_event; |
| 5872 | /** |
| 5873 | * Enums for TPC event |
| 5874 | */ |
| 5875 | typedef enum { |
| 5876 | WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_CDD = 0x1, |
| 5877 | WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_STBC = 0x2, |
| 5878 | WMI_HOST_TPC_CONFIG_EVENT_FLAG_TABLE_TXBF = 0x4, |
| 5879 | } WMI_HOST_TPC_CONFIG_EVENT_FLAG; |
| 5880 | |
| 5881 | /** |
| 5882 | * Medium Utilization evaluation algorithms |
| 5883 | * These algorithms can be complementary rather than exclusive. |
| 5884 | */ |
| 5885 | typedef enum { |
| 5886 | WMI_HOST_MU_BASIC_ALGO = 0x1, |
| 5887 | WMI_HOST_MU_PER_BSSID_ALGO = 0x2, |
| 5888 | WMI_HOST_MU_HIDDEN_NODE_ALGO = 0x4, |
| 5889 | } WMI_HOST_MU_ALGO_TYPE; |
| 5890 | /* max MU alg combinations supported by target */ |
| 5891 | #define WMI_HOST_MU_MAX_ALGO_TYPE 3 |
| 5892 | |
| 5893 | /** |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 5894 | * struct wmi_host_mu_db_entry |
| 5895 | * @event_type: 0=AP, 1=STA, 2=Small Cell(SC) |
| 5896 | * @bssid_mac_addr: Transmitter MAC if entry is WiFi node. PLMNID if SC |
| 5897 | * @tx_addr: Transmitter MAC if entry is WiFi node. PLMNID if SC |
| 5898 | * @avg_duration_us: Avg. duration for which node was transmitting |
| 5899 | * @avg_rssi: Avg. RSSI of all TX packets by node. Unit dBm |
| 5900 | * @mu_percent: % medium utilization by node |
| 5901 | */ |
| 5902 | typedef struct { |
| 5903 | uint32_t entry_type; |
| 5904 | wmi_host_mac_addr bssid_mac_addr; |
| 5905 | wmi_host_mac_addr tx_addr; |
| 5906 | uint32_t avg_duration_us; |
| 5907 | uint32_t avg_rssi; |
| 5908 | uint32_t mu_percent; |
| 5909 | } wmi_host_mu_db_entry; |
| 5910 | |
| 5911 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5912 | * struct wmi_host_mu_report_event - WMI_MU_REPORT_EVENTID |
| 5913 | * @mu_request_id: request id |
| 5914 | * @status_reason: MU_STATUS_REASON |
| 5915 | * @total_mu: MU_ALG_TYPE combinations |
| 5916 | * @num_active_bssid: number of active bssid |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 5917 | * @hidden_node_mu : hidden node algo MU per bin |
| 5918 | * @num_TA_entries : No. of entries found in MU db report |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5919 | */ |
| 5920 | typedef struct { |
| 5921 | uint32_t mu_request_id; |
| 5922 | uint32_t status_reason; |
| 5923 | uint32_t total_mu[WMI_HOST_MU_MAX_ALGO_TYPE]; |
| 5924 | uint32_t num_active_bssid; |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 5925 | uint32_t hidden_node_mu[LTEU_MAX_BINS]; |
| 5926 | uint32_t num_TA_entries; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5927 | } wmi_host_mu_report_event; |
| 5928 | |
| 5929 | /** |
| 5930 | * struct wmi_host_mgmt_tx_compl_event - TX completion event |
| 5931 | * @desc_id: from tx_send_cmd |
| 5932 | * @status: WMI_MGMT_TX_COMP_STATUS_TYPE |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5933 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5934 | */ |
| 5935 | typedef struct { |
| 5936 | uint32_t desc_id; |
| 5937 | uint32_t status; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5938 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5939 | } wmi_host_mgmt_tx_compl_event; |
| 5940 | |
| 5941 | #define WMI_HOST_TIM_BITMAP_ARRAY_SIZE 17 |
| 5942 | |
| 5943 | /** |
| 5944 | * struct wmi_host_tim_info - TIM info in SWBA event |
| 5945 | * @tim_len: TIM length |
| 5946 | * @tim_mcast: |
| 5947 | * @tim_bitmap: TIM bitmap |
| 5948 | * @tim_changed: TIM changed |
| 5949 | * @tim_num_ps_pending: TIM num PS sta pending |
| 5950 | */ |
| 5951 | typedef struct { |
| 5952 | uint32_t tim_len; |
| 5953 | uint32_t tim_mcast; |
| 5954 | uint32_t tim_bitmap[WMI_HOST_TIM_BITMAP_ARRAY_SIZE]; |
| 5955 | uint32_t tim_changed; |
| 5956 | uint32_t tim_num_ps_pending; |
| 5957 | } wmi_host_tim_info; |
| 5958 | |
| 5959 | /** |
| 5960 | * struct wmi_host_p2p_noa_descriptor - NoA desc in SWBA event |
| 5961 | * @type_count: Absence count |
| 5962 | * @duration: NoA duration |
| 5963 | * @interval: NoA interval |
| 5964 | * @start_time: start time |
| 5965 | */ |
| 5966 | typedef struct { |
| 5967 | uint32_t type_count; |
| 5968 | uint32_t duration; |
| 5969 | uint32_t interval; |
| 5970 | uint32_t start_time; |
| 5971 | } wmi_host_p2p_noa_descriptor; |
| 5972 | /* Maximum number of NOA Descriptors supported */ |
| 5973 | #define WMI_HOST_P2P_MAX_NOA_DESCRIPTORS 4 |
| 5974 | /** |
| 5975 | * struct wmi_host_p2p_noa_info - p2p noa information |
| 5976 | * @modified: NoA modified |
| 5977 | * @index: Index |
| 5978 | * @oppPS: Oppurtunstic ps |
| 5979 | * @ctwindow: CT window |
| 5980 | * @num_descriptors: number of descriptors |
| 5981 | * @noa_descriptors: noa descriptors |
| 5982 | */ |
| 5983 | typedef struct { |
| 5984 | uint8_t modified; |
| 5985 | uint8_t index; |
| 5986 | uint8_t oppPS; |
| 5987 | uint8_t ctwindow; |
| 5988 | uint8_t num_descriptors; |
| 5989 | wmi_host_p2p_noa_descriptor |
| 5990 | noa_descriptors[WMI_HOST_P2P_MAX_NOA_DESCRIPTORS]; |
| 5991 | } wmi_host_p2p_noa_info; |
| 5992 | |
| 5993 | /** |
| 5994 | * struct wmi_host_peer_sta_kickout_event |
| 5995 | * @peer_macaddr: peer mac address |
| 5996 | * @reason: kickout reason |
| 5997 | * @rssi: rssi |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 5998 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 5999 | */ |
| 6000 | typedef struct { |
| 6001 | uint8_t peer_macaddr[IEEE80211_ADDR_LEN]; |
| 6002 | uint32_t reason; |
| 6003 | uint32_t rssi; |
| 6004 | } wmi_host_peer_sta_kickout_event; |
| 6005 | |
| 6006 | /** |
| 6007 | * struct wmi_host_peer_sta_ps_statechange_event - ST ps state change event |
| 6008 | * @peer_macaddr: peer mac address |
| 6009 | * @peer_ps_stats: peer PS state |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6010 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6011 | */ |
| 6012 | typedef struct { |
| 6013 | uint8_t peer_macaddr[IEEE80211_ADDR_LEN]; |
| 6014 | uint32_t peer_ps_state; |
| 6015 | } wmi_host_peer_sta_ps_statechange_event; |
| 6016 | |
| 6017 | /* Maximum CCK, OFDM rates supported */ |
| 6018 | #define WMI_SA_MAX_CCK_OFDM_RATES 12 |
| 6019 | /* Maximum MCS rates supported; 4 rates in each dword */ |
| 6020 | #define WMI_SA_MAX_MCS_RATES 40 |
| 6021 | #define WMI_SA_MAX_RATE_COUNTERS 4 |
| 6022 | /* Maximum rate series used for transmission */ |
| 6023 | #define SA_MAX_RATE_SERIES 2 |
| 6024 | |
| 6025 | #define SA_MAX_LEGACY_RATE_DWORDS 3 |
| 6026 | #define SA_MAX_HT_RATE_DWORDS 10 |
| 6027 | #define SA_BYTES_IN_DWORD 4 |
| 6028 | #define SA_MASK_BYTE 0xff |
| 6029 | /* TODO: ratecode_160 needs to add for future chips */ |
| 6030 | /** |
| 6031 | * struct wmi_sa_rate_cap - smart antenna rat capabilities |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6032 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6033 | * @ratecode_legacy: Rate code array for CCK OFDM |
| 6034 | * @ratecode_20: Rate code array for 20MHz BW |
| 6035 | * @ratecode_40: Rate code array for 40MHz BW |
| 6036 | * @ratecode_80: Rate code array for 80MHz BW |
| 6037 | * @ratecount: Max Rate count for each mode |
| 6038 | */ |
| 6039 | typedef struct { |
| 6040 | uint8_t ratecode_legacy[WMI_SA_MAX_CCK_OFDM_RATES]; |
| 6041 | uint8_t ratecode_20[WMI_SA_MAX_MCS_RATES]; |
| 6042 | uint8_t ratecode_40[WMI_SA_MAX_MCS_RATES]; |
| 6043 | uint8_t ratecode_80[WMI_SA_MAX_MCS_RATES]; |
| 6044 | uint8_t ratecount[WMI_SA_MAX_RATE_COUNTERS]; |
| 6045 | } wmi_sa_rate_cap; |
| 6046 | |
| 6047 | /** Preamble types to be used with VDEV fixed rate configuration */ |
| 6048 | typedef enum { |
| 6049 | WMI_HOST_RATE_PREAMBLE_OFDM, |
| 6050 | WMI_HOST_RATE_PREAMBLE_CCK, |
| 6051 | WMI_HOST_RATE_PREAMBLE_HT, |
| 6052 | WMI_HOST_RATE_PREAMBLE_VHT, |
Kris Muthusamy | e66c6bf | 2017-02-20 20:21:04 -0800 | [diff] [blame] | 6053 | WMI_HOST_RATE_PREAMBLE_HE, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6054 | } WMI_HOST_RATE_PREAMBLE; |
| 6055 | |
| 6056 | #define WMI_HOST_FIXED_RATE_NONE (0xff) |
| 6057 | |
| 6058 | /** slot time long */ |
| 6059 | #define WMI_HOST_VDEV_SLOT_TIME_LONG 0x1 |
| 6060 | /** slot time short */ |
| 6061 | #define WMI_HOST_VDEV_SLOT_TIME_SHORT 0x2 |
| 6062 | /** preablbe long */ |
| 6063 | #define WMI_HOST_VDEV_PREAMBLE_LONG 0x1 |
| 6064 | /** preablbe short */ |
| 6065 | #define WMI_HOST_VDEV_PREAMBLE_SHORT 0x2 |
| 6066 | /** found a better AP */ |
| 6067 | #define WMI_HOST_ROAM_REASON_BETTER_AP 0x1 |
| 6068 | /** beacon miss detected */ |
| 6069 | #define WMI_HOST_ROAM_REASON_BMISS 0x2 |
| 6070 | /** deauth/disassoc received */ |
| 6071 | #define WMI_HOST_ROAM_REASON_DEAUTH 0x2 |
| 6072 | /** connected AP's low rssi condition detected */ |
| 6073 | #define WMI_HOST_ROAM_REASON_LOW_RSSI 0x3 |
| 6074 | /** found another AP that matches SSID and Security profile in |
| 6075 | * WMI_ROAM_AP_PROFILE, found during scan triggered upon FINAL_BMISS |
| 6076 | */ |
| 6077 | #define WMI_HOST_ROAM_REASON_SUITABLE_AP 0x4 |
| 6078 | /** LFR3.0 roaming failed, indicate the disconnection to host */ |
| 6079 | #define WMI_HOST_ROAM_REASON_HO_FAILED 0x5 |
| 6080 | |
| 6081 | /** values for vdev_type */ |
| 6082 | #define WMI_HOST_VDEV_TYPE_AP 0x1 |
| 6083 | #define WMI_HOST_VDEV_TYPE_STA 0x2 |
| 6084 | #define WMI_HOST_VDEV_TYPE_IBSS 0x3 |
| 6085 | #define WMI_HOST_VDEV_TYPE_MONITOR 0x4 |
| 6086 | |
| 6087 | /** values for vdev_subtype */ |
| 6088 | #define WMI_HOST_VDEV_SUBTYPE_P2P_DEVICE 0x1 |
| 6089 | #define WMI_HOST_VDEV_SUBTYPE_P2P_CLIENT 0x2 |
| 6090 | #define WMI_HOST_VDEV_SUBTYPE_P2P_GO 0x3 |
| 6091 | #define WMI_HOST_VDEV_SUBTYPE_PROXY_STA 0x4 |
| 6092 | #define WMI_HOST_VDEV_SUBTYPE_MESH 0x5 |
| 6093 | |
| 6094 | #define WMI_HOST_MGMT_TID 17 |
| 6095 | /* Disable aging & learning */ |
| 6096 | #define WMI_HOST_WDS_FLAG_STATIC 0x1 |
| 6097 | |
| 6098 | /** |
| 6099 | * Peer param enum abstracted from target |
| 6100 | */ |
| 6101 | typedef enum { |
| 6102 | /** mimo powersave state */ |
| 6103 | WMI_HOST_PEER_MIMO_PS_STATE = 0x1, |
| 6104 | /** enable/disable AMPDU . initial value (enabled) */ |
| 6105 | WMI_HOST_PEER_AMPDU = 0x2, |
| 6106 | /** authorize/unauthorize peer. initial value is unauthorized (0) */ |
| 6107 | WMI_HOST_PEER_AUTHORIZE = 0x3, |
| 6108 | /** peer channel bandwidth */ |
| 6109 | WMI_HOST_PEER_CHWIDTH = 0x4, |
| 6110 | /** peer NSS */ |
| 6111 | WMI_HOST_PEER_NSS = 0x5, |
| 6112 | /** USE 4 ADDR */ |
| 6113 | WMI_HOST_PEER_USE_4ADDR = 0x6, |
| 6114 | /** Enable extended peer stats */ |
| 6115 | WMI_HOST_PEER_EXT_STATS_ENABLE = 0x7, |
| 6116 | /*Use FIXED Pwr */ |
| 6117 | WMI_HOST_PEER_USE_FIXED_PWR = 0x8, |
| 6118 | /* Set peer fixed rate */ |
| 6119 | WMI_HOST_PEER_PARAM_FIXED_RATE = 0x9, |
| 6120 | /* Whitelist peer TIDs */ |
| 6121 | WMI_HOST_PEER_SET_MU_WHITELIST = 0xa, |
| 6122 | /* set group membership status */ |
| 6123 | WMI_HOST_PEER_MEMBERSHIP = 0xb, |
| 6124 | WMI_HOST_PEER_USERPOS = 0xc, |
Kiran Venkatappa | 9da7e04 | 2016-08-09 22:52:35 +0530 | [diff] [blame] | 6125 | WMI_HOST_PEER_CRIT_PROTO_HINT_ENABLED = 0xd, |
| 6126 | WMI_HOST_PEER_TX_FAIL_CNT_THR = 0xe, |
| 6127 | WMI_HOST_PEER_SET_HW_RETRY_CTS2S = 0xf, |
| 6128 | WMI_HOST_PEER_IBSS_ATIM_WINDOW_LENGTH = 0x10, |
| 6129 | WMI_HOST_PEER_PHYMODE = 0x11, |
| 6130 | WMI_HOST_PEER_SET_MAC_TX_RATE = 0x12, |
| 6131 | /* Set default Rx routing */ |
| 6132 | WMI_HOST_PEER_SET_DEFAULT_ROUTING = 0x13, |
| 6133 | WMI_HOST_PEER_SET_MIN_TX_RATE = 0x14, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6134 | } PEER_PARAM_ENUM; |
| 6135 | #define WMI_HOST_PEER_MIMO_PS_NONE 0x0 |
| 6136 | #define WMI_HOST_PEER_MIMO_PS_STATIC 0x1 |
| 6137 | #define WMI_HOST_PEER_MIMO_PS_DYNAMIC 0x2 |
| 6138 | typedef enum { |
| 6139 | HOST_PLATFORM_HIGH_PERF, |
| 6140 | HOST_PLATFORM_LOW_PERF, |
Sathish Kumar | 41eca49 | 2016-09-16 16:55:35 +0530 | [diff] [blame] | 6141 | HOST_PLATFORM_LOW_PERF_NO_FETCH, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6142 | } HOST_PLATFORM_TYPE; |
| 6143 | |
| 6144 | enum wmi_host_sta_ps_mode { |
| 6145 | /** enable power save for the given STA VDEV */ |
| 6146 | WMI_HOST_STA_PS_MODE_DISABLED = 0, |
| 6147 | /** disable power save for a given STA VDEV */ |
| 6148 | WMI_HOST_STA_PS_MODE_ENABLED = 1, |
| 6149 | }; |
| 6150 | enum wmi_host_sta_powersave_param { |
| 6151 | /** |
| 6152 | * Controls how frames are retrievd from AP while STA is sleeping |
| 6153 | * |
| 6154 | * (see enum wmi_sta_ps_param_rx_wake_policy) |
| 6155 | */ |
| 6156 | WMI_HOST_STA_PS_PARAM_RX_WAKE_POLICY = 0, |
| 6157 | |
| 6158 | /** |
| 6159 | * The STA will go active after this many TX |
| 6160 | * |
| 6161 | * (see enum wmi_sta_ps_param_tx_wake_threshold) |
| 6162 | */ |
| 6163 | WMI_HOST_STA_PS_PARAM_TX_WAKE_THRESHOLD = 1, |
| 6164 | |
| 6165 | /** |
| 6166 | * Number of PS-Poll to send before STA wakes up |
| 6167 | * |
| 6168 | * (see enum wmi_sta_ps_param_pspoll_count) |
| 6169 | * |
| 6170 | */ |
| 6171 | WMI_HOST_STA_PS_PARAM_PSPOLL_COUNT = 2, |
| 6172 | |
| 6173 | /** |
| 6174 | * TX/RX inactivity time in msec before going to sleep. |
| 6175 | * |
| 6176 | * The power save SM will monitor tx/rx activity on the VDEV, if no |
| 6177 | * activity for the specified msec of the parameter |
| 6178 | * the Power save SM will go to sleep. |
| 6179 | */ |
| 6180 | WMI_HOST_STA_PS_PARAM_INACTIVITY_TIME = 3, |
| 6181 | |
| 6182 | /** |
| 6183 | * Set uapsd configuration. |
| 6184 | * |
| 6185 | * (see enum wmi_sta_ps_param_uapsd) |
| 6186 | */ |
| 6187 | WMI_HOST_STA_PS_PARAM_UAPSD = 4, |
| 6188 | }; |
| 6189 | /* prefix used by scan requestor ids on the host |
| 6190 | * replicated here form wmi_unified.h*/ |
| 6191 | #define WMI_HOST_P_SCAN_REQUESTOR_ID_PREFIX 0xA000 |
| 6192 | /* prefix used by scan request ids generated on the host */ |
| 6193 | /* host cycles through the lower 12 bits to generate ids */ |
| 6194 | #define WMI_HOST_P_SCAN_REQ_ID_PREFIX 0xA000 |
| 6195 | |
| 6196 | #define WMI_HOST_RC_DS_FLAG 0x01 /* Dual stream flag */ |
| 6197 | #define WMI_HOST_RC_CW40_FLAG 0x02 /* CW 40 */ |
| 6198 | #define WMI_HOST_RC_SGI_FLAG 0x04 /* Short Guard Interval */ |
| 6199 | #define WMI_HOST_RC_HT_FLAG 0x08 /* HT */ |
| 6200 | #define WMI_HOST_RC_RTSCTS_FLAG 0x10 /* RTS-CTS */ |
| 6201 | #define WMI_HOST_RC_TX_STBC_FLAG 0x20 /* TX STBC */ |
| 6202 | #define WMI_HOST_RC_RX_STBC_FLAG 0xC0 /* RX STBC ,2 bits */ |
| 6203 | #define WMI_HOST_RC_RX_STBC_FLAG_S 6 /* RX STBC ,2 bits */ |
| 6204 | #define WMI_HOST_RC_WEP_TKIP_FLAG 0x100 /* WEP/TKIP encryption */ |
| 6205 | #define WMI_HOST_RC_TS_FLAG 0x200 /* Three stream flag */ |
| 6206 | #define WMI_HOST_RC_UAPSD_FLAG 0x400 /* UAPSD Rate Control */ |
| 6207 | |
| 6208 | /** HT Capabilities*/ |
| 6209 | #define WMI_HOST_HT_CAP_ENABLED 0x0001 /* HT Enabled/ disabled */ |
| 6210 | /* Short Guard Interval with HT20 */ |
| 6211 | #define WMI_HOST_HT_CAP_HT20_SGI 0x0002 |
| 6212 | #define WMI_HOST_HT_CAP_DYNAMIC_SMPS 0x0004 /* Dynamic MIMO powersave */ |
| 6213 | #define WMI_HOST_HT_CAP_TX_STBC 0x0008 /* B3 TX STBC */ |
| 6214 | #define WMI_HOST_HT_CAP_TX_STBC_MASK_SHIFT 3 |
| 6215 | #define WMI_HOST_HT_CAP_RX_STBC 0x0030 /* B4-B5 RX STBC */ |
| 6216 | #define WMI_HOST_HT_CAP_RX_STBC_MASK_SHIFT 4 |
| 6217 | #define WMI_HOST_HT_CAP_LDPC 0x0040 /* LDPC supported */ |
| 6218 | #define WMI_HOST_HT_CAP_L_SIG_TXOP_PROT 0x0080 /* L-SIG TXOP Protection */ |
| 6219 | #define WMI_HOST_HT_CAP_MPDU_DENSITY 0x0700 /* MPDU Density */ |
| 6220 | #define WMI_HOST_HT_CAP_MPDU_DENSITY_MASK_SHIFT 8 |
| 6221 | #define WMI_HOST_HT_CAP_HT40_SGI 0x0800 |
| 6222 | #define WMI_HOST_HT_CAP_IBF_BFER 0x1000 |
| 6223 | |
| 6224 | /* These macros should be used when we wish to advertise STBC support for |
| 6225 | * only 1SS or 2SS or 3SS. */ |
| 6226 | #define WMI_HOST_HT_CAP_RX_STBC_1SS 0x0010 /* B4-B5 RX STBC */ |
| 6227 | #define WMI_HOST_HT_CAP_RX_STBC_2SS 0x0020 /* B4-B5 RX STBC */ |
| 6228 | #define WMI_HOST_HT_CAP_RX_STBC_3SS 0x0030 /* B4-B5 RX STBC */ |
| 6229 | |
| 6230 | |
| 6231 | #define WMI_HOST_HT_CAP_DEFAULT_ALL (WMI_HOST_HT_CAP_ENABLED | \ |
| 6232 | WMI_HOST_HT_CAP_HT20_SGI | \ |
| 6233 | WMI_HOST_HT_CAP_HT40_SGI | \ |
| 6234 | WMI_HOST_HT_CAP_TX_STBC | \ |
| 6235 | WMI_HOST_HT_CAP_RX_STBC | \ |
| 6236 | WMI_HOST_HT_CAP_LDPC) |
| 6237 | |
| 6238 | /* WMI_HOST_VHT_CAP_* these maps to ieee 802.11ac vht capability information |
| 6239 | field. The fields not defined here are not supported, or reserved. |
| 6240 | Do not change these masks and if you have to add new one follow the |
| 6241 | bitmask as specified by 802.11ac draft. |
| 6242 | */ |
| 6243 | |
| 6244 | #define WMI_HOST_VHT_CAP_MAX_MPDU_LEN_MASK 0x00000003 |
| 6245 | #define WMI_HOST_VHT_CAP_RX_LDPC 0x00000010 |
| 6246 | #define WMI_HOST_VHT_CAP_SGI_80MHZ 0x00000020 |
| 6247 | #define WMI_HOST_VHT_CAP_SGI_160MHZ 0x00000040 |
| 6248 | #define WMI_HOST_VHT_CAP_TX_STBC 0x00000080 |
| 6249 | #define WMI_HOST_VHT_CAP_RX_STBC_MASK 0x00000300 |
| 6250 | #define WMI_HOST_VHT_CAP_RX_STBC_MASK_SHIFT 8 |
| 6251 | #define WMI_HOST_VHT_CAP_SU_BFER 0x00000800 |
| 6252 | #define WMI_HOST_VHT_CAP_SU_BFEE 0x00001000 |
| 6253 | #define WMI_HOST_VHT_CAP_MAX_CS_ANT_MASK 0x0000E000 |
| 6254 | #define WMI_HOST_VHT_CAP_MAX_CS_ANT_MASK_SHIFT 13 |
| 6255 | #define WMI_HOST_VHT_CAP_MAX_SND_DIM_MASK 0x00070000 |
| 6256 | #define WMI_HOST_VHT_CAP_MAX_SND_DIM_MASK_SHIFT 16 |
| 6257 | #define WMI_HOST_VHT_CAP_MU_BFER 0x00080000 |
| 6258 | #define WMI_HOST_VHT_CAP_MU_BFEE 0x00100000 |
| 6259 | #define WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP 0x03800000 |
| 6260 | #define WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIT 23 |
| 6261 | #define WMI_HOST_VHT_CAP_RX_FIXED_ANT 0x10000000 |
| 6262 | #define WMI_HOST_VHT_CAP_TX_FIXED_ANT 0x20000000 |
| 6263 | |
| 6264 | #define WMI_HOST_VHT_CAP_MAX_MPDU_LEN_11454 0x00000002 |
| 6265 | |
| 6266 | /* These macros should be used when we wish to advertise STBC support for |
| 6267 | * only 1SS or 2SS or 3SS. */ |
| 6268 | #define WMI_HOST_VHT_CAP_RX_STBC_1SS 0x00000100 |
| 6269 | #define WMI_HOST_VHT_CAP_RX_STBC_2SS 0x00000200 |
| 6270 | #define WMI_HOST_VHT_CAP_RX_STBC_3SS 0x00000300 |
| 6271 | |
| 6272 | #define WMI_HOST_VHT_CAP_DEFAULT_ALL (WMI_HOST_VHT_CAP_MAX_MPDU_LEN_11454 | \ |
| 6273 | WMI_HOST_VHT_CAP_SGI_80MHZ | \ |
| 6274 | WMI_HOST_VHT_CAP_TX_STBC | \ |
| 6275 | WMI_HOST_VHT_CAP_RX_STBC_MASK | \ |
| 6276 | WMI_HOST_VHT_CAP_RX_LDPC | \ |
| 6277 | WMI_HOST_VHT_CAP_MAX_AMPDU_LEN_EXP | \ |
| 6278 | WMI_HOST_VHT_CAP_RX_FIXED_ANT | \ |
| 6279 | WMI_HOST_VHT_CAP_TX_FIXED_ANT) |
| 6280 | |
| 6281 | /* Interested readers refer to Rx/Tx MCS Map definition as defined in |
| 6282 | 802.11ac |
| 6283 | */ |
| 6284 | #define WMI_HOST_VHT_MAX_MCS_4_SS_MASK(r, ss) ((3 & (r)) << (((ss) - 1) << 1)) |
| 6285 | #define WMI_HOST_VHT_MAX_SUPP_RATE_MASK 0x1fff0000 |
| 6286 | #define WMI_HOST_VHT_MAX_SUPP_RATE_MASK_SHIFT 16 |
| 6287 | |
| 6288 | /** U-APSD configuration of peer station from (re)assoc request and TSPECs */ |
| 6289 | enum wmi_host_ap_ps_param_uapsd { |
| 6290 | WMI_HOST_AP_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0), |
| 6291 | WMI_HOST_AP_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1), |
| 6292 | WMI_HOST_AP_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2), |
| 6293 | WMI_HOST_AP_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3), |
| 6294 | WMI_HOST_AP_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4), |
| 6295 | WMI_HOST_AP_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5), |
| 6296 | WMI_HOST_AP_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6), |
| 6297 | WMI_HOST_AP_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7), |
| 6298 | }; |
| 6299 | /** U-APSD maximum service period of peer station */ |
| 6300 | enum wmi_host_ap_ps_peer_param_max_sp { |
| 6301 | WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_UNLIMITED = 0, |
| 6302 | WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_2 = 1, |
| 6303 | WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_4 = 2, |
| 6304 | WMI_HOST_AP_PS_PEER_PARAM_MAX_SP_6 = 3, |
| 6305 | |
| 6306 | /* keep last! */ |
| 6307 | MAX_HOST_WMI_AP_PS_PEER_PARAM_MAX_SP, |
| 6308 | }; |
| 6309 | |
| 6310 | #define WMI_HOST_UAPSD_AC_TYPE_DELI 0 |
| 6311 | #define WMI_HOST_UAPSD_AC_TYPE_TRIG 1 |
| 6312 | |
| 6313 | #define WMI_HOST_UAPSD_AC_BIT_MASK(ac, type) \ |
| 6314 | ((type == WMI_HOST_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) :\ |
| 6315 | (1<<((ac<<1)+1))) |
| 6316 | |
| 6317 | enum wmi_host_ap_ps_peer_param_wnm_sleep { |
| 6318 | WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP_ENABLE, |
| 6319 | WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP_DISABLE, |
| 6320 | }; |
| 6321 | |
| 6322 | enum wmi_host_ap_ps_peer_param { |
| 6323 | /** Set uapsd configuration for a given peer. |
| 6324 | * |
| 6325 | * This will include the delivery and trigger enabled state for every AC. |
| 6326 | * The host MLME needs to set this based on AP capability and stations |
| 6327 | * request Set in the association request received from the station. |
| 6328 | * |
| 6329 | * Lower 8 bits of the value specify the UAPSD configuration. |
| 6330 | * |
| 6331 | * (see enum wmi_ap_ps_param_uapsd) |
| 6332 | * The default value is 0. |
| 6333 | */ |
| 6334 | WMI_HOST_AP_PS_PEER_PARAM_UAPSD = 0, |
| 6335 | |
| 6336 | /** |
| 6337 | * Set the service period for a UAPSD capable station |
| 6338 | * |
| 6339 | * The service period from wme ie in the (re)assoc request frame. |
| 6340 | * |
| 6341 | * (see enum wmi_ap_ps_peer_param_max_sp) |
| 6342 | */ |
| 6343 | WMI_HOST_AP_PS_PEER_PARAM_MAX_SP = 1, |
| 6344 | |
| 6345 | /** Time in seconds for aging out buffered frames |
| 6346 | * for STA in power save */ |
| 6347 | WMI_HOST_AP_PS_PEER_PARAM_AGEOUT_TIME = 2, |
| 6348 | |
| 6349 | /** Specify frame types that are considered SIFS |
| 6350 | * RESP trigger frame */ |
| 6351 | WMI_HOST_AP_PS_PEER_PARAM_SIFS_RESP_FRMTYPE = 3, |
| 6352 | |
| 6353 | /** Specifies the trigger state of TID. |
| 6354 | * Valid only for UAPSD frame type */ |
| 6355 | WMI_HOST_AP_PS_PEER_PARAM_SIFS_RESP_UAPSD = 4, |
| 6356 | |
| 6357 | /** Specifies the WNM sleep state of a STA */ |
| 6358 | WMI_HOST_AP_PS_PEER_PARAM_WNM_SLEEP = 5, |
| 6359 | }; |
| 6360 | #define WMI_HOST_RXERR_CRC 0x01 /* CRC error on frame */ |
| 6361 | #define WMI_HOST_RXERR_DECRYPT 0x08 /* non-Michael decrypt error */ |
| 6362 | #define WMI_HOST_RXERR_MIC 0x10 /* Michael MIC decrypt error */ |
| 6363 | #define WMI_HOST_RXERR_KEY_CACHE_MISS 0x20 /* No/incorrect key matter in h/w */ |
| 6364 | |
| 6365 | enum wmi_host_sta_ps_param_uapsd { |
| 6366 | WMI_HOST_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0), |
| 6367 | WMI_HOST_STA_PS_UAPSD_AC0_TRIGGER_EN = (1 << 1), |
| 6368 | WMI_HOST_STA_PS_UAPSD_AC1_DELIVERY_EN = (1 << 2), |
| 6369 | WMI_HOST_STA_PS_UAPSD_AC1_TRIGGER_EN = (1 << 3), |
| 6370 | WMI_HOST_STA_PS_UAPSD_AC2_DELIVERY_EN = (1 << 4), |
| 6371 | WMI_HOST_STA_PS_UAPSD_AC2_TRIGGER_EN = (1 << 5), |
| 6372 | WMI_HOST_STA_PS_UAPSD_AC3_DELIVERY_EN = (1 << 6), |
| 6373 | WMI_HOST_STA_PS_UAPSD_AC3_TRIGGER_EN = (1 << 7), |
| 6374 | }; |
| 6375 | |
| 6376 | enum wmi_host_sta_ps_param_rx_wake_policy { |
| 6377 | /* Wake up when ever there is an RX activity on the VDEV. In this mode |
| 6378 | * the Power save SM(state machine) will come out of sleep by either |
| 6379 | * sending null frame (or) a data frame (with PS==0) in response to TIM |
| 6380 | * bit set in the received beacon frame from AP. |
| 6381 | */ |
| 6382 | WMI_HOST_STA_PS_RX_WAKE_POLICY_WAKE = 0, |
| 6383 | |
| 6384 | /* Here the power save state machine will not wakeup in response to TIM |
| 6385 | * bit, instead it will send a PSPOLL (or) UASPD trigger based on UAPSD |
| 6386 | * configuration setup by WMISET_PS_SET_UAPSD WMI command. When all |
| 6387 | * access categories are delivery-enabled, the station will send a UAPSD |
| 6388 | * trigger frame, otherwise it will send a PS-Poll. |
| 6389 | */ |
| 6390 | WMI_HOST_STA_PS_RX_WAKE_POLICY_POLL_UAPSD = 1, |
| 6391 | }; |
| 6392 | enum wmi_host_sta_ps_param_pspoll_count { |
| 6393 | WMI_HOST_STA_PS_PSPOLL_COUNT_NO_MAX = 0, |
| 6394 | /* Values greater than 0 indicate the maximum numer of PS-Poll frames FW |
| 6395 | * will send before waking up. |
| 6396 | */ |
| 6397 | }; |
| 6398 | /** Number of tx frames/beacon that cause the power save SM to wake up. |
| 6399 | * |
| 6400 | * Value 1 causes the SM to wake up for every TX. Value 0 has a special |
| 6401 | * meaning, It will cause the SM to never wake up. This is useful if you want |
| 6402 | * to keep the system to sleep all the time for some kind of test mode . host |
| 6403 | * can change this parameter any time. It will affect at the next tx frame. |
| 6404 | */ |
| 6405 | enum wmi_host_sta_ps_param_tx_wake_threshold { |
| 6406 | WMI_HOST_STA_PS_TX_WAKE_THRESHOLD_NEVER = 0, |
| 6407 | WMI_HOST_STA_PS_TX_WAKE_THRESHOLD_ALWAYS = 1, |
| 6408 | |
| 6409 | /* Values greater than one indicate that many TX attempts per beacon |
| 6410 | * interval before the STA will wake up |
| 6411 | */ |
| 6412 | }; |
| 6413 | /* |
| 6414 | * Transmit power scale factor. |
| 6415 | * |
| 6416 | */ |
| 6417 | typedef enum { |
| 6418 | WMI_HOST_TP_SCALE_MAX = 0, /* no scaling (default) */ |
| 6419 | WMI_HOST_TP_SCALE_50 = 1, /* 50% of max (-3 dBm) */ |
| 6420 | WMI_HOST_TP_SCALE_25 = 2, /* 25% of max (-6 dBm) */ |
| 6421 | WMI_HOST_TP_SCALE_12 = 3, /* 12% of max (-9 dBm) */ |
| 6422 | WMI_HOST_TP_SCALE_MIN = 4, /* min, but still on */ |
| 6423 | WMI_HOST_TP_SCALE_SIZE = 5, /* max num of enum */ |
| 6424 | } WMI_HOST_TP_SCALE; |
| 6425 | enum { |
| 6426 | WMI_HOST_RATEPWR_TABLE_OPS_SET, |
| 6427 | WMI_HOST_RATEPWR_TABLE_OPS_GET, |
| 6428 | }; |
| 6429 | /* reserved up through 0xF */ |
| 6430 | /** |
| 6431 | * struct wmi_host_dcs_mib_stats - WLAN IM stats from target to host |
| 6432 | * Below statistics are sent from target to host periodically. |
| 6433 | * These are collected at target as long as target is running |
| 6434 | * and target chip is not in sleep. |
| 6435 | * @listen_time: |
| 6436 | * @reg_tx_frame_cnt: |
| 6437 | * @reg_rx_frame_cnt: |
| 6438 | * @reg_rxclr_cnt: |
| 6439 | * @reg_cycle_cnt: delta cycle count |
| 6440 | * @reg_rxclr_ext_cnt: |
| 6441 | * @reg_ofdm_phyerr_cnt: |
| 6442 | * @reg_cck_phyerr_cnt: CCK err count since last reset, read from register |
| 6443 | */ |
| 6444 | typedef struct _hp_dcs_mib_stats { |
| 6445 | int32_t listen_time; |
| 6446 | uint32_t reg_tx_frame_cnt; |
| 6447 | uint32_t reg_rx_frame_cnt; |
| 6448 | uint32_t reg_rxclr_cnt; |
| 6449 | uint32_t reg_cycle_cnt; |
| 6450 | uint32_t reg_rxclr_ext_cnt; |
| 6451 | uint32_t reg_ofdm_phyerr_cnt; |
| 6452 | uint32_t reg_cck_phyerr_cnt; |
| 6453 | } wmi_host_dcs_mib_stats_t; |
| 6454 | |
| 6455 | /** |
| 6456 | * struct wmi_host_dcs_im_tgt_stats - DCS IM target stats |
| 6457 | * @reg_tsf32: current running TSF from the TSF-1 |
| 6458 | * @last_ack_rssi: Known last frame rssi, in case of multiple stations, if |
| 6459 | * and at different ranges, this would not gaurantee that |
| 6460 | * this is the least rssi. |
| 6461 | * @tx_waste_time: Sum of all the failed durations in the last |
| 6462 | * one second interval. |
| 6463 | * @rx_time: count how many times the hal_rxerr_phy is marked, in this |
| 6464 | * time period |
| 6465 | * @phyerr_cnt: |
| 6466 | * @mib_stats: wmi_host_dcs_mib_stats_t - collected mib stats as explained |
| 6467 | * in mib structure |
Sathish Kumar | ba2b5da | 2016-11-08 14:58:29 +0530 | [diff] [blame] | 6468 | * @chan_nf: Channel noise floor (Units are in dBm) |
| 6469 | * @my_bss_rx_cycle_count: BSS rx cycle count |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6470 | */ |
| 6471 | typedef struct _wmi_host_dcs_im_tgt_stats { |
| 6472 | uint32_t reg_tsf32; |
| 6473 | uint32_t last_ack_rssi; |
| 6474 | uint32_t tx_waste_time; |
| 6475 | uint32_t rx_time; |
| 6476 | uint32_t phyerr_cnt; |
| 6477 | wmi_host_dcs_mib_stats_t mib_stats; |
Sathish Kumar | ba2b5da | 2016-11-08 14:58:29 +0530 | [diff] [blame] | 6478 | uint32_t chan_nf; |
| 6479 | uint32_t my_bss_rx_cycle_count; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6480 | } wmi_host_dcs_im_tgt_stats_t; |
| 6481 | |
| 6482 | /** |
| 6483 | * Enum for pktlog req |
| 6484 | */ |
| 6485 | typedef enum { |
| 6486 | WMI_HOST_PKTLOG_EVENT_RX = 0x1, |
| 6487 | WMI_HOST_PKTLOG_EVENT_TX = 0x2, |
| 6488 | WMI_HOST_PKTLOG_EVENT_RCF = 0x4, /* Rate Control Find */ |
| 6489 | WMI_HOST_PKTLOG_EVENT_RCU = 0x8, /* Rate Control Update */ |
| 6490 | WMI_HOST_PKTLOG_EVENT_DBG_PRINT = 0x10, /* DEBUG prints */ |
| 6491 | /* To support Smart Antenna */ |
| 6492 | WMI_HOST_PKTLOG_EVENT_SMART_ANTENNA = 0x20, |
| 6493 | WMI_HOST_PKTLOG_EVENT_H_INFO = 0x40, |
| 6494 | WMI_HOST_PKTLOG_EVENT_STEERING = 0x80, |
Sathish Kumar | 657402a | 2016-09-26 14:48:09 +0530 | [diff] [blame] | 6495 | /* To support Tx data Capture */ |
| 6496 | WMI_HOST_PKTLOG_EVENT_TX_DATA_CAPTURE = 0x100, |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6497 | } WMI_HOST_PKTLOG_EVENT; |
| 6498 | |
| 6499 | /** |
| 6500 | * wmi_host_phyerr |
| 6501 | * |
| 6502 | */ |
| 6503 | #define WMI_HOST_PHY_ERROR_SPECTRAL_SCAN 0x26 |
| 6504 | #define WMI_HOST_PHY_ERROR_FALSE_RADAR_EXT 0x24 |
| 6505 | |
| 6506 | #define WMI_HOST_AR900B_DFS_PHYERR_MASK 0x4 |
| 6507 | #define WMI_HOST_AR900B_SPECTRAL_PHYERR_MASK 0x4000000 |
| 6508 | |
| 6509 | /** |
| 6510 | * struct wmi_host_perchain_rssi_info - per chain RSSI info |
| 6511 | * @rssi_pri20: RSSI on primary 20 |
| 6512 | * @rssi_sec20: RSSI on secomdary 20 |
| 6513 | * @rssi_sec40: RSSI secondary 40 |
| 6514 | * @rssi_sec80: RSSI secondary 80 |
| 6515 | */ |
| 6516 | typedef struct wmi_host_perchain_rssi_info { |
| 6517 | int8_t rssi_pri20; |
| 6518 | int8_t rssi_sec20; |
| 6519 | int8_t rssi_sec40; |
| 6520 | int8_t rssi_sec80; |
| 6521 | } wmi_host_perchain_rssi_info_t; |
| 6522 | |
| 6523 | /** |
| 6524 | * struct _wmi_host_rf_info - RF measurement information |
| 6525 | * @rssi_comb: RSSI Information |
| 6526 | * @pc_rssi_info[4]: For now, we know we are getting information |
| 6527 | * for only 4 chains at max. For future extensions |
| 6528 | * use a define |
| 6529 | * @noise_floor: Noise floor information |
| 6530 | */ |
| 6531 | typedef struct _wmi_host_rf_info { |
| 6532 | int8_t rssi_comb; |
| 6533 | wmi_host_perchain_rssi_info_t pc_rssi_info[4]; |
| 6534 | int16_t noise_floor[4]; |
| 6535 | } wmi_host_rf_info_t; |
| 6536 | |
| 6537 | /** |
| 6538 | * struct _wmi_host_chan_info |
| 6539 | * @center_freq1: center frequency 1 in MHz |
| 6540 | * @center_freq2: center frequency 2 in MHz -valid only for |
| 6541 | * 11ACVHT 80PLUS80 mode |
| 6542 | * @chan_width: channel width in MHz |
| 6543 | */ |
| 6544 | typedef struct _wmi_host_chan_info { |
| 6545 | u_int16_t center_freq1; |
| 6546 | u_int16_t center_freq2; |
| 6547 | u_int8_t chan_width; |
| 6548 | } wmi_host_chan_info_t; |
| 6549 | |
| 6550 | /** |
| 6551 | * struct wmi_host_phyerr |
| 6552 | * @rf_info: |
| 6553 | * @chan_info: |
| 6554 | * @tsf64: |
| 6555 | * @phy_err_code: |
| 6556 | * @tsf_timestamp: |
| 6557 | * @bufp: |
| 6558 | * @buf_len: |
| 6559 | * @phy_err_mask0: |
| 6560 | * @phy_err_mask1: |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6561 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6562 | */ |
| 6563 | typedef struct _wmi_host_phyerr { |
| 6564 | wmi_host_rf_info_t rf_info; |
| 6565 | wmi_host_chan_info_t chan_info; |
| 6566 | uint64_t tsf64; |
| 6567 | int32_t phy_err_code; |
| 6568 | uint32_t tsf_timestamp; |
| 6569 | uint8_t *bufp; |
| 6570 | uint32_t buf_len; |
| 6571 | uint32_t phy_err_mask0; |
| 6572 | uint32_t phy_err_mask1; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6573 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6574 | } wmi_host_phyerr_t; |
| 6575 | |
| 6576 | /** |
| 6577 | * struct wmi_host_rtt_event_hdr |
| 6578 | * @req_id: request id |
| 6579 | * @status: status |
| 6580 | * @meas_done: measurement done flag |
| 6581 | * @meas_type: measurement type |
| 6582 | * @report_type: report type |
| 6583 | * @v3_status: v2 status |
| 6584 | * @v3_finish: |
| 6585 | * @v3_tm_start: |
| 6586 | * @num_ap: number of AP |
| 6587 | * @result: resuult |
| 6588 | * @dest_mac: destination mac |
| 6589 | */ |
| 6590 | typedef struct { |
| 6591 | uint16_t req_id; |
| 6592 | uint16_t status:1, |
| 6593 | meas_done:1, |
| 6594 | meas_type:3, |
| 6595 | report_type:3, |
| 6596 | v3_status:2, |
| 6597 | v3_finish:1, |
| 6598 | v3_tm_start:1, |
| 6599 | num_ap:4; |
| 6600 | uint16_t result; |
| 6601 | uint8_t dest_mac[IEEE80211_ADDR_LEN]; |
| 6602 | } wmi_host_rtt_event_hdr; |
| 6603 | |
| 6604 | /** |
| 6605 | * struct wmi_host_rtt_meas_event - RTT measurement event |
| 6606 | * @chain_mask: |
| 6607 | * @bw: |
| 6608 | * @rsvd: |
| 6609 | * @txrxchain_mask: Bit:0-3:chain mask |
| 6610 | * Bit 4-5: band width info |
| 6611 | * 00 --Legacy 20, 01 --HT/VHT20 |
| 6612 | * 10 --HT/VHT40, 11 -- VHT80 |
| 6613 | * @tod: resolution of 0.1ns |
| 6614 | * @toa: resolution of 0.1ns |
| 6615 | * @t3: |
| 6616 | * @t4: |
| 6617 | * @rssi0: |
| 6618 | * @rssi1: |
| 6619 | * @rssi2: |
| 6620 | * @rssi3: |
| 6621 | */ |
| 6622 | typedef struct { |
| 6623 | uint32_t chain_mask:3, |
| 6624 | bw:2, |
| 6625 | rsvd:27; |
| 6626 | uint32_t txrxchain_mask; |
| 6627 | uint64_t tod; |
| 6628 | uint64_t toa; |
| 6629 | uint64_t t3; |
| 6630 | uint64_t t4; |
| 6631 | uint32_t rssi0; |
| 6632 | uint32_t rssi1; |
| 6633 | uint32_t rssi2; |
| 6634 | uint32_t rssi3; |
| 6635 | } wmi_host_rtt_meas_event; |
| 6636 | |
| 6637 | /*----RTT Report event definition ----*/ |
| 6638 | typedef enum { |
| 6639 | /* rtt cmd header parsing error --terminate */ |
| 6640 | WMI_HOST_RTT_COMMAND_HEADER_ERROR = 0, |
| 6641 | /* rtt body parsing error -- skip current STA REQ */ |
| 6642 | WMI_HOST_RTT_COMMAND_ERROR, |
| 6643 | /* rtt no resource -- terminate */ |
| 6644 | WMI_HOST_RTT_MODULE_BUSY, |
| 6645 | /* STA exceed the support limit -- only server the first n STA */ |
| 6646 | WMI_HOST_RTT_TOO_MANY_STA, |
| 6647 | /* any allocate failure */ |
| 6648 | WMI_HOST_RTT_NO_RESOURCE, |
| 6649 | /* can not find vdev with vdev ID - skip current STA REQ */ |
| 6650 | WMI_HOST_RTT_VDEV_ERROR, |
| 6651 | /* Tx failure -- continiue and measure number */ |
| 6652 | WMI_HOST_RTT_TRANSIMISSION_ERROR, |
| 6653 | /* wait for first TM timer expire-terminate current STA measurement */ |
| 6654 | WMI_HOST_RTT_TM_TIMER_EXPIRE, |
| 6655 | /* we do not support RTT measurement with this type of frame */ |
| 6656 | WMI_HOST_RTT_FRAME_TYPE_NOSUPPORT, |
| 6657 | /* whole RTT measurement timer expire-terminate |
| 6658 | ** current STA measurement */ |
| 6659 | WMI_HOST_RTT_TIMER_EXPIRE, |
| 6660 | /* channel swicth failed */ |
| 6661 | WMI_HOST_RTT_CHAN_SWITCH_ERROR, |
| 6662 | /* TMR trans error, this dest peer will be skipped */ |
| 6663 | WMI_HOST_RTT_TMR_TRANS_ERROR, |
| 6664 | /* V3 only. If both CFR and Token mismatch, do not report */ |
| 6665 | WMI_HOST_RTT_NO_REPORT_BAD_CFR_TOKEN, |
| 6666 | /* For First TM, if CFR is bad, then do not report */ |
| 6667 | WMI_HOST_RTT_NO_REPORT_FIRST_TM_BAD_CFR, |
| 6668 | /* do not allow report type2 mix with type 0, 1 */ |
| 6669 | WMI_HOST_RTT_REPORT_TYPE2_MIX, |
| 6670 | /* LCI Configuration OK. - Responder only */ |
| 6671 | WMI_HOST_RTT_LCI_CFG_OK, |
| 6672 | /* LCR configuration OK. - Responder only */ |
| 6673 | WMI_HOST_RTT_LCR_CFG_OK, |
| 6674 | /* Bad configuration LCI (or) LCR request - Responder only */ |
| 6675 | WMI_HOST_RTT_CFG_ERROR, |
| 6676 | WMI_HOST_WMI_RTT_REJECT_MAX, |
| 6677 | } WMI_HOST_RTT_ERROR_INDICATOR; |
| 6678 | typedef struct { |
| 6679 | wmi_host_rtt_event_hdr hdr; |
| 6680 | WMI_HOST_RTT_ERROR_INDICATOR reject_reason; |
| 6681 | } wmi_host_rtt_error_report_event; |
| 6682 | |
| 6683 | #if defined(AR9888) |
| 6684 | typedef enum { |
| 6685 | WMI_HOST_PROF_CPU_IDLE, |
| 6686 | WMI_HOST_PROF_PPDU_PROC, |
| 6687 | WMI_HOST_PROF_PPDU_POST, |
| 6688 | WMI_HOST_PROF_HTT_TX_INPUT, |
| 6689 | WMI_HOST_PROF_MSDU_ENQ, |
| 6690 | WMI_HOST_PROF_PPDU_POST_HAL, |
| 6691 | WMI_HOST_PROF_COMPUTE_TX_TIME, |
| 6692 | |
| 6693 | /* Add new ID's above this. */ |
| 6694 | WMI_HOST_PROF_MAX_ID, |
| 6695 | } wmi_host_profile_id_t; |
| 6696 | #endif |
| 6697 | |
| 6698 | #define WMI_HOST_WLAN_PROFILE_MAX_HIST 3 |
| 6699 | #define WMI_HOST_WLAN_PROFILE_MAX_BIN_CNT 32 |
| 6700 | |
| 6701 | #if defined(AR9888) |
| 6702 | #define WMI_HOST_MAX_PROFILE WMI_HOST_PROF_MAX_ID |
| 6703 | #else |
| 6704 | #define WMI_HOST_MAX_PROFILE WMI_HOST_WLAN_PROFILE_MAX_BIN_CNT |
| 6705 | #endif |
| 6706 | |
| 6707 | /** |
| 6708 | * struct wmi_host_wlan_profile - Host profile param |
| 6709 | * @id: profile id |
| 6710 | * @cnt: Count |
| 6711 | * @tot: |
| 6712 | * @min: minimum |
| 6713 | * @max: Mac |
| 6714 | * @hist_intvl: history interval |
| 6715 | * @hist: profile data history |
| 6716 | */ |
| 6717 | typedef struct { |
| 6718 | uint32_t id; |
| 6719 | uint32_t cnt; |
| 6720 | uint32_t tot; |
| 6721 | uint32_t min; |
| 6722 | uint32_t max; |
| 6723 | uint32_t hist_intvl; |
| 6724 | uint32_t hist[WMI_HOST_WLAN_PROFILE_MAX_HIST]; |
| 6725 | } wmi_host_wlan_profile_t; |
| 6726 | |
| 6727 | /** |
| 6728 | * struct wmi_host_wlan_profile_ctx_t - profile context |
| 6729 | * @tot: time in us |
| 6730 | * @tx_msdu_cnt: MSDU TX count |
| 6731 | * @tx_mpdu_cnt: MPDU tx count |
| 6732 | * @tx_ppdu_cnt: PPDU tx count |
| 6733 | * @rx_msdu_cnt: MSDU RX count |
| 6734 | * @rx_mpdu_cnt: MPDU RXcount |
| 6735 | * @bin_count: Bin count |
| 6736 | */ |
| 6737 | typedef struct { |
| 6738 | uint32_t tot; |
| 6739 | uint32_t tx_msdu_cnt; |
| 6740 | uint32_t tx_mpdu_cnt; |
| 6741 | uint32_t tx_ppdu_cnt; |
| 6742 | uint32_t rx_msdu_cnt; |
| 6743 | uint32_t rx_mpdu_cnt; |
| 6744 | uint32_t bin_count; |
| 6745 | } wmi_host_wlan_profile_ctx_t; |
| 6746 | |
| 6747 | /** |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6748 | * struct wmi_host_chan_info_event - Channel info WMI event |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6749 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6750 | * @err_code: Error code |
| 6751 | * @freq: Channel freq |
| 6752 | * @cmd_flags: Read flags |
| 6753 | * @noise_floor: Noise Floor value |
| 6754 | * @rx_clear_count: rx clear count |
| 6755 | * @cycle_count: cycle count |
| 6756 | * @chan_tx_pwr_range: channel tx power per range |
| 6757 | * @chan_tx_pwr_tp: channel tx power per throughput |
| 6758 | * @rx_frame_count: rx frame count |
| 6759 | * @rx_11b_mode_data_duration: 11b mode data duration |
| 6760 | */ |
| 6761 | typedef struct { |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6762 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6763 | uint32_t err_code; |
| 6764 | uint32_t freq; |
| 6765 | uint32_t cmd_flags; |
| 6766 | uint32_t noise_floor; |
| 6767 | uint32_t rx_clear_count; |
| 6768 | uint32_t cycle_count; |
| 6769 | uint32_t chan_tx_pwr_range; |
| 6770 | uint32_t chan_tx_pwr_tp; |
| 6771 | uint32_t rx_frame_count; |
| 6772 | uint32_t rx_11b_mode_data_duration; |
| 6773 | } wmi_host_chan_info_event; |
| 6774 | |
| 6775 | /** |
| 6776 | * struct wmi_host_pdev_channel_hopping_event |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6777 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6778 | * @noise_floor_report_iter: Noise threshold iterations with high values |
| 6779 | * @noise_floor_total_iter: Total noise threshold iterations |
| 6780 | */ |
| 6781 | typedef struct { |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6782 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6783 | uint32_t noise_floor_report_iter; |
| 6784 | uint32_t noise_floor_total_iter; |
| 6785 | } wmi_host_pdev_channel_hopping_event; |
| 6786 | |
| 6787 | /** |
| 6788 | * struct wmi_host_pdev_bss_chan_info_event |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6789 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6790 | * @freq: Units in MHz |
| 6791 | * @noise_floor: units are dBm |
| 6792 | * @rx_clear_count_low: |
| 6793 | * @rx_clear_count_high: |
| 6794 | * @cycle_count_low: |
| 6795 | * @cycle_count_high: |
| 6796 | * @tx_cycle_count_low: |
| 6797 | * @tx_cycle_count_high: |
| 6798 | * @rx_cycle_count_low: |
| 6799 | * @rx_cycle_count_high: |
| 6800 | * @rx_bss_cycle_count_low: |
| 6801 | * @rx_bss_cycle_count_high: |
| 6802 | * @reserved: |
| 6803 | */ |
| 6804 | typedef struct { |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6805 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6806 | uint32_t freq; |
| 6807 | uint32_t noise_floor; |
| 6808 | uint32_t rx_clear_count_low; |
| 6809 | uint32_t rx_clear_count_high; |
| 6810 | uint32_t cycle_count_low; |
| 6811 | uint32_t cycle_count_high; |
| 6812 | uint32_t tx_cycle_count_low; |
| 6813 | uint32_t tx_cycle_count_high; |
| 6814 | uint32_t rx_cycle_count_low; |
| 6815 | uint32_t rx_cycle_count_high; |
| 6816 | uint32_t rx_bss_cycle_count_low; |
| 6817 | uint32_t rx_bss_cycle_count_high; |
| 6818 | uint32_t reserved; |
| 6819 | } wmi_host_pdev_bss_chan_info_event; |
| 6820 | |
| 6821 | #define WMI_HOST_INST_STATS_INVALID_RSSI 0 |
| 6822 | /** |
| 6823 | * struct wmi_host_inst_stats_resp |
| 6824 | * @iRSSI: Instantaneous RSSI |
| 6825 | * @peer_macaddr: peer mac address |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6826 | * @pdev_id: pdev_id |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6827 | */ |
| 6828 | typedef struct { |
| 6829 | uint32_t iRSSI; |
| 6830 | wmi_host_mac_addr peer_macaddr; |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6831 | uint32_t pdev_id; |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6832 | } wmi_host_inst_stats_resp; |
| 6833 | |
| 6834 | /* Event definition and new structure addition to send event |
| 6835 | * to host to block/unblock tx data traffic based on peer_ast_idx or vdev id |
| 6836 | */ |
| 6837 | #define WMI_HOST_INVALID_PEER_AST_INDEX 0xffff |
| 6838 | #define WMI_HOST_TX_DATA_TRAFFIC_CTRL_BLOCK 0x1 |
| 6839 | #define WMI_HOST_TX_DATA_TRAFFIC_CTRL_UNBLOCK 0x2 |
| 6840 | /** |
| 6841 | * struct wmi_host_tx_data_traffic_ctrl_event |
| 6842 | * @peer_ast_idx: For vdev based control, peer_ast_idx will be |
| 6843 | * WMI_INVALID_PEER_AST_INDEX |
| 6844 | * @vdev_id: only applies if peer_ast_idx == INVALID |
| 6845 | * @ctrl_cmd: WMI_TX_DATA_TRAFFIC_CTRL_BLOCK or |
| 6846 | * WMI_TX_DATA_TRAFFIC_CTRL_UNBLOCK |
| 6847 | */ |
| 6848 | typedef struct { |
| 6849 | uint32_t peer_ast_idx; |
| 6850 | uint32_t vdev_id; |
| 6851 | uint32_t ctrl_cmd; |
| 6852 | } wmi_host_tx_data_traffic_ctrl_event; |
| 6853 | |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 6854 | enum { |
| 6855 | WMI_HOST_ATF_PEER_STATS_DISABLED = 0, |
| 6856 | WMI_HOST_ATF_PEER_STATS_ENABLED = 1, |
| 6857 | }; |
| 6858 | |
| 6859 | #define WMI_HOST_ATF_PEER_STATS_GET_PEER_AST_IDX(token_info) \ |
| 6860 | (token_info.field1 & 0xffff) |
| 6861 | |
| 6862 | #define WMI_HOST_ATF_PEER_STATS_GET_USED_TOKENS(token_info) \ |
| 6863 | ((token_info.field2 & 0xffff0000) >> 16) |
| 6864 | |
| 6865 | #define WMI_HOST_ATF_PEER_STATS_GET_UNUSED_TOKENS(token_info) \ |
| 6866 | (token_info.field2 & 0xffff) |
| 6867 | |
| 6868 | #define WMI_HOST_ATF_PEER_STATS_SET_PEER_AST_IDX(token_info, peer_ast_idx) \ |
| 6869 | do { \ |
| 6870 | token_info.field1 &= 0xffff0000; \ |
| 6871 | token_info.field1 |= ((peer_ast_idx) & 0xffff); \ |
| 6872 | } while (0) |
| 6873 | |
| 6874 | #define WMI_HOST_ATF_PEER_STATS_SET_USED_TOKENS(token_info, used_token) \ |
| 6875 | do { \ |
| 6876 | token_info.field2 &= 0x0000ffff; \ |
| 6877 | token_info.field2 |= (((used_token) & 0xffff) << 16); \ |
| 6878 | } while (0) |
| 6879 | |
| 6880 | #define WMI_HOST_ATF_PEER_STATS_SET_UNUSED_TOKENS(token_info, unused_token) \ |
| 6881 | do { \ |
| 6882 | token_info.field2 &= 0xffff0000; \ |
| 6883 | token_info.field2 |= ((unused_token) & 0xffff); \ |
| 6884 | } while (0) |
| 6885 | |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6886 | /** |
| 6887 | * struct wmi_host_atf_peer_stats_info |
| 6888 | * @field1: bits 15:0 peer_ast_index WMI_ATF_PEER_STATS_GET_PEER_AST_IDX |
| 6889 | * bits 31:16 reserved |
| 6890 | * @field2: bits 15:0 used tokens WMI_ATF_PEER_STATS_GET_USED_TOKENS |
| 6891 | * bits 31:16 unused tokens WMI_ATF_PEER_STATS_GET_UNUSED_TOKENS |
| 6892 | * @field3: for future use |
| 6893 | */ |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 6894 | typedef struct { |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 6895 | uint32_t field1; |
| 6896 | uint32_t field2; |
| 6897 | uint32_t field3; |
| 6898 | } wmi_host_atf_peer_stats_info; |
| 6899 | |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6900 | /** |
| 6901 | * struct wmi_host_atf_peer_stats_event |
| 6902 | * @pdev_id: pdev_id |
| 6903 | * @num_atf_peers: number of peers in token_info_list |
| 6904 | * @comp_usable_airtime: computed usable airtime in tokens |
| 6905 | * @reserved[4]: reserved for future use |
| 6906 | * @wmi_host_atf_peer_stats_info token_info_list: list of num_atf_peers |
| 6907 | */ |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 6908 | typedef struct { |
Kiran Venkatappa | 6e7bb5e | 2017-02-08 14:51:13 +0530 | [diff] [blame] | 6909 | uint32_t pdev_id; |
| 6910 | uint32_t num_atf_peers; |
| 6911 | uint32_t comp_usable_airtime; |
| 6912 | uint32_t reserved[4]; |
| 6913 | wmi_host_atf_peer_stats_info token_info_list[1]; |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 6914 | } wmi_host_atf_peer_stats_event; |
| 6915 | |
Govind Singh | 8972788 | 2016-04-15 13:58:27 +0530 | [diff] [blame] | 6916 | /** |
| 6917 | * struct wmi_host_ath_dcs_cw_int |
| 6918 | * @channel: either number or freq in mhz |
| 6919 | */ |
| 6920 | typedef struct { |
| 6921 | uint32_t channel; |
| 6922 | } wmi_host_ath_dcs_cw_int; |
Govind Singh | c10bde8 | 2016-05-02 17:59:24 +0530 | [diff] [blame] | 6923 | |
| 6924 | #define WMI_MAX_POWER_DBG_ARGS 8 |
| 6925 | |
| 6926 | /** |
| 6927 | * struct wmi_power_dbg_params - power debug command parameter |
| 6928 | * @pdev_id: subsystem identifier |
| 6929 | * @module_id: parameter id |
| 6930 | * @num_arg: no of arguments |
| 6931 | * @args: arguments |
| 6932 | */ |
| 6933 | struct wmi_power_dbg_params { |
| 6934 | uint32_t pdev_id; |
| 6935 | uint32_t module_id; |
| 6936 | uint32_t num_args; |
| 6937 | uint32_t args[WMI_MAX_POWER_DBG_ARGS]; |
| 6938 | }; |
| 6939 | |
Gupta, Kapil | 7b76800 | 2016-04-25 19:14:19 +0530 | [diff] [blame] | 6940 | /** |
| 6941 | * struct wmi_adaptive_dwelltime_params - the adaptive dwelltime params |
| 6942 | * @vdev_id: vdev id |
| 6943 | * @is_enabled: Adaptive dwell time is enabled/disabled |
| 6944 | * @dwelltime_mode: global default adaptive dwell mode |
| 6945 | * @lpf_weight: weight to calculate the average low pass |
| 6946 | * filter for channel congestion |
| 6947 | * @passive_mon_intval: intval to monitor wifi activity in passive scan in msec |
| 6948 | * @wifi_act_threshold: % of wifi activity used in passive scan 0-100 |
| 6949 | * |
| 6950 | */ |
| 6951 | struct wmi_adaptive_dwelltime_params { |
| 6952 | uint32_t vdev_id; |
| 6953 | bool is_enabled; |
| 6954 | enum wmi_dwelltime_adaptive_mode dwelltime_mode; |
| 6955 | uint8_t lpf_weight; |
| 6956 | uint8_t passive_mon_intval; |
| 6957 | uint8_t wifi_act_threshold; |
| 6958 | }; |
Govind Singh | c7cd2d6 | 2016-06-21 14:33:26 +0530 | [diff] [blame] | 6959 | |
| 6960 | /** |
Kapil Gupta | f6eb731 | 2017-02-24 15:50:03 +0530 | [diff] [blame] | 6961 | * struct wmi_per_roam_config - per based roaming parameters |
| 6962 | * @enable: if PER based roaming is enabled/disabled |
| 6963 | * @tx_high_rate_thresh: high rate threshold at which PER based |
| 6964 | * roam will stop in tx path |
| 6965 | * @rx_high_rate_thresh: high rate threshold at which PER based |
| 6966 | * roam will stop in rx path |
| 6967 | * @tx_low_rate_thresh: rate below which traffic will be considered |
| 6968 | * for PER based roaming in Tx path |
| 6969 | * @rx_low_rate_thresh: rate below which traffic will be considered |
| 6970 | * for PER based roaming in Tx path |
| 6971 | * @tx_rate_thresh_percnt: % above which when traffic is below low_rate_thresh |
| 6972 | * will be considered for PER based scan in tx path |
| 6973 | * @rx_rate_thresh_percnt: % above which when traffic is below low_rate_thresh |
| 6974 | * will be considered for PER based scan in rx path |
| 6975 | * @per_rest_time: time for which PER based roam will wait once it |
| 6976 | * issues a roam scan. |
Kapil Gupta | 7dae426 | 2017-02-13 15:51:52 +0530 | [diff] [blame] | 6977 | * @tx_per_mon_time: Minimum time required to be considered as valid scenario |
| 6978 | * for PER based roam in tx path |
| 6979 | * @rx_per_mon_time: Minimum time required to be considered as valid scenario |
| 6980 | * for PER based roam in rx path |
Kapil Gupta | f6eb731 | 2017-02-24 15:50:03 +0530 | [diff] [blame] | 6981 | */ |
| 6982 | struct wmi_per_roam_config { |
| 6983 | uint32_t enable; |
| 6984 | uint32_t tx_high_rate_thresh; |
| 6985 | uint32_t rx_high_rate_thresh; |
| 6986 | uint32_t tx_low_rate_thresh; |
| 6987 | uint32_t rx_low_rate_thresh; |
| 6988 | uint32_t tx_rate_thresh_percnt; |
| 6989 | uint32_t rx_rate_thresh_percnt; |
| 6990 | uint32_t per_rest_time; |
Kapil Gupta | 7dae426 | 2017-02-13 15:51:52 +0530 | [diff] [blame] | 6991 | uint32_t tx_per_mon_time; |
| 6992 | uint32_t rx_per_mon_time; |
Kapil Gupta | f6eb731 | 2017-02-24 15:50:03 +0530 | [diff] [blame] | 6993 | }; |
| 6994 | |
| 6995 | /** |
| 6996 | * struct wmi_per_roam_config_req: PER based roaming config request |
| 6997 | * @vdev_id: vdev id on which config needs to be set |
| 6998 | * @per_config: PER config |
| 6999 | */ |
| 7000 | struct wmi_per_roam_config_req { |
| 7001 | uint8_t vdev_id; |
| 7002 | struct wmi_per_roam_config per_config; |
| 7003 | }; |
| 7004 | |
| 7005 | /** |
Govind Singh | c7cd2d6 | 2016-06-21 14:33:26 +0530 | [diff] [blame] | 7006 | * struct wmi_fw_dump_seg_req - individual segment details |
| 7007 | * @seg_id - segment id. |
| 7008 | * @seg_start_addr_lo - lower address of the segment. |
| 7009 | * @seg_start_addr_hi - higher address of the segment. |
| 7010 | * @seg_length - length of the segment. |
| 7011 | * @dst_addr_lo - lower address of the destination buffer. |
| 7012 | * @dst_addr_hi - higher address of the destination buffer. |
| 7013 | * |
| 7014 | * This structure carries the information to firmware about the |
| 7015 | * individual segments. This structure is part of firmware memory |
| 7016 | * dump request. |
| 7017 | */ |
| 7018 | struct wmi_fw_dump_seg_req { |
| 7019 | uint8_t seg_id; |
| 7020 | uint32_t seg_start_addr_lo; |
| 7021 | uint32_t seg_start_addr_hi; |
| 7022 | uint32_t seg_length; |
| 7023 | uint32_t dst_addr_lo; |
| 7024 | uint32_t dst_addr_hi; |
| 7025 | }; |
| 7026 | |
| 7027 | /** |
| 7028 | * enum wmi_userspace_log_level - Log level at userspace |
| 7029 | * @WMI_LOG_LEVEL_NO_COLLECTION: verbose_level 0 corresponds to no collection |
| 7030 | * @WMI_LOG_LEVEL_NORMAL_COLLECT: verbose_level 1 correspond to normal log |
| 7031 | * level with minimal user impact. This is the default value. |
| 7032 | * @WMI_LOG_LEVEL_ISSUE_REPRO: verbose_level 2 are enabled when user is lazily |
| 7033 | * trying to reproduce a problem, wifi performances and power can be impacted |
| 7034 | * but device should not otherwise be significantly impacted |
| 7035 | * @WMI_LOG_LEVEL_ACTIVE: verbose_level 3+ are used when trying to |
| 7036 | * actively debug a problem |
| 7037 | * |
| 7038 | * Various log levels defined in the userspace for logging applications |
| 7039 | */ |
| 7040 | enum wmi_userspace_log_level { |
| 7041 | WMI_LOG_LEVEL_NO_COLLECTION, |
| 7042 | WMI_LOG_LEVEL_NORMAL_COLLECT, |
| 7043 | WMI_LOG_LEVEL_ISSUE_REPRO, |
| 7044 | WMI_LOG_LEVEL_ACTIVE, |
| 7045 | }; |
| 7046 | |
Padma, Santhosh Kumar | 7352405 | 2016-09-11 18:24:59 +0530 | [diff] [blame] | 7047 | /** |
| 7048 | * struct encrypt_decrypt_req_params - encrypt/decrypt params |
| 7049 | * @vdev_id: virtual device id |
| 7050 | * @key_flag: This indicates firmware to encrypt/decrypt payload |
| 7051 | * see ENCRYPT_DECRYPT_FLAG |
| 7052 | * @key_idx: Index used in storing key |
| 7053 | * @key_cipher: cipher used for encryption/decryption |
| 7054 | * Eg: see WMI_CIPHER_AES_CCM for CCMP |
| 7055 | * @key_len: length of key data |
| 7056 | * @key_txmic_len: length of Tx MIC |
| 7057 | * @key_rxmic_len: length of Rx MIC |
| 7058 | * @key_data: Key |
| 7059 | * @pn: packet number |
| 7060 | * @mac_header: MAC header |
| 7061 | * @data_len: length of data |
| 7062 | * @data: pointer to payload |
| 7063 | */ |
| 7064 | struct encrypt_decrypt_req_params { |
| 7065 | uint32_t vdev_id; |
| 7066 | uint8_t key_flag; |
| 7067 | uint32_t key_idx; |
| 7068 | uint32_t key_cipher; |
| 7069 | uint32_t key_len; |
| 7070 | uint32_t key_txmic_len; |
| 7071 | uint32_t key_rxmic_len; |
| 7072 | uint8_t key_data[MAC_MAX_KEY_LENGTH]; |
| 7073 | uint8_t pn[MAC_PN_LENGTH]; |
| 7074 | uint8_t mac_header[MAX_MAC_HEADER_LEN]; |
| 7075 | uint32_t data_len; |
| 7076 | uint8_t *data; |
| 7077 | }; |
| 7078 | |
Krishna Kumaar Natarajan | 3f301ca | 2016-09-29 14:20:54 -0700 | [diff] [blame] | 7079 | /** |
Kiran Venkatappa | 176fe6c | 2016-12-26 15:38:06 +0530 | [diff] [blame] | 7080 | * HW mode config type replicated from FW header |
| 7081 | * @WMI_HOST_HW_MODE_SINGLE: Only one PHY is active. |
| 7082 | * @WMI_HOST_HW_MODE_DBS: Both PHYs are active in different bands, |
| 7083 | * one in 2G and another in 5G. |
| 7084 | * @WMI_HOST_HW_MODE_SBS_PASSIVE: Both PHYs are in passive mode (only rx) in |
| 7085 | * same band; no tx allowed. |
| 7086 | * @WMI_HOST_HW_MODE_SBS: Both PHYs are active in the same band. |
| 7087 | * Support for both PHYs within one band is planned |
| 7088 | * for 5G only(as indicated in WMI_MAC_PHY_CAPABILITIES), |
| 7089 | * but could be extended to other bands in the future. |
| 7090 | * The separation of the band between the two PHYs needs |
| 7091 | * to be communicated separately. |
| 7092 | * @WMI_HOST_HW_MODE_DBS_SBS: 3 PHYs, with 2 on the same band doing SBS |
| 7093 | * as in WMI_HW_MODE_SBS, and 3rd on the other band |
Kiran Venkatappa | af1dae3 | 2016-12-23 19:58:54 +0530 | [diff] [blame] | 7094 | * @WMI_HOST_HW_MODE_MAX: Max hw_mode_id. Used to indicate invalid mode. |
Kiran Venkatappa | 176fe6c | 2016-12-26 15:38:06 +0530 | [diff] [blame] | 7095 | */ |
| 7096 | enum wmi_host_hw_mode_config_type { |
| 7097 | WMI_HOST_HW_MODE_SINGLE = 0, |
| 7098 | WMI_HOST_HW_MODE_DBS = 1, |
| 7099 | WMI_HOST_HW_MODE_SBS_PASSIVE = 2, |
| 7100 | WMI_HOST_HW_MODE_SBS = 3, |
| 7101 | WMI_HOST_HW_MODE_DBS_SBS = 4, |
Kiran Venkatappa | af1dae3 | 2016-12-23 19:58:54 +0530 | [diff] [blame] | 7102 | WMI_HOST_HW_MODE_MAX, |
Kiran Venkatappa | 176fe6c | 2016-12-26 15:38:06 +0530 | [diff] [blame] | 7103 | }; |
| 7104 | |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 7105 | /* |
| 7106 | * struct wmi_host_peer_txmu_cnt_event |
| 7107 | * @tx_mu_transmitted - MU-MIMO tx count |
| 7108 | */ |
| 7109 | typedef struct { |
| 7110 | uint32_t tx_mu_transmitted; |
| 7111 | } wmi_host_peer_txmu_cnt_event; |
| 7112 | |
Manikandan Mohan | 7e5ad48 | 2016-12-13 13:14:06 -0800 | [diff] [blame] | 7113 | #define MAX_SAR_LIMIT_ROWS_SUPPORTED 64 |
| 7114 | /** |
| 7115 | * struct sar_limit_cmd_row - sar limts row |
| 7116 | * @band_id: Optional param for frequency band |
| 7117 | * @chain_id: Optional param for antenna chain id |
| 7118 | * @mod_id: Optional param for modulation scheme |
| 7119 | * @limit_value: Mandatory param providing power limits in steps of 0.5 dbm |
| 7120 | * @validity_bitmap: bitmap of valid optional params in sar_limit_cmd_row struct |
| 7121 | */ |
| 7122 | struct sar_limit_cmd_row { |
| 7123 | uint32_t band_id; |
| 7124 | uint32_t chain_id; |
| 7125 | uint32_t mod_id; |
| 7126 | uint32_t limit_value; |
| 7127 | uint32_t validity_bitmap; |
| 7128 | }; |
| 7129 | |
| 7130 | /** |
| 7131 | * struct sar_limit_cmd_params - sar limts params |
| 7132 | * @sar_enable: flag to enable SAR |
| 7133 | * @num_limit_rows: number of items in sar_limits |
| 7134 | * @commit_limits: indicates firmware to start apply new SAR values |
| 7135 | * @sar_limit_row_list: pointer to array of sar limit rows |
| 7136 | */ |
| 7137 | struct sar_limit_cmd_params { |
| 7138 | uint32_t sar_enable; |
| 7139 | uint32_t num_limit_rows; |
| 7140 | uint32_t commit_limits; |
| 7141 | struct sar_limit_cmd_row *sar_limit_row_list; |
| 7142 | }; |
| 7143 | |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 7144 | /* |
| 7145 | * struct wmi_peer_gid_userpos_list_event |
| 7146 | * @usr_list - User list |
| 7147 | */ |
| 7148 | #define GID_OVERLOAD_GROUP_COUNT 15 |
| 7149 | typedef struct { |
| 7150 | uint32_t usr_list[GID_OVERLOAD_GROUP_COUNT]; |
| 7151 | } wmi_host_peer_gid_userpos_list_event; |
| 7152 | |
| 7153 | #define WMI_HOST_BOARD_MCN_STRING_MAX_SIZE 19 |
| 7154 | #define WMI_HOST_BOARD_MCN_STRING_BUF_SIZE \ |
| 7155 | (WMI_HOST_BOARD_MCN_STRING_MAX_SIZE+1) /* null-terminator */ |
| 7156 | |
| 7157 | typedef struct { |
| 7158 | uint32_t software_cal_version; |
| 7159 | uint32_t board_cal_version; |
| 7160 | /* board_mcn_detail: |
| 7161 | * Provide a calibration message string for the host to display. |
| 7162 | * Note: on a big-endian host, the 4 bytes within each A_UINT32 portion |
| 7163 | * of a WMI message will be automatically byteswapped by the copy engine |
| 7164 | * as the messages are transferred between host and target, to convert |
| 7165 | * between the target's little-endianness and the host's big-endianness. |
| 7166 | * Consequently, a big-endian host should manually unswap the bytes |
| 7167 | * within the board_mcn_detail string buffer to get the bytes back into |
| 7168 | * the desired natural order. |
| 7169 | */ |
| 7170 | uint8_t board_mcn_detail[WMI_HOST_BOARD_MCN_STRING_BUF_SIZE]; |
| 7171 | uint32_t cal_ok; /* filled with CALIBRATION_STATUS enum value */ |
| 7172 | } wmi_host_pdev_check_cal_version_event; |
| 7173 | |
Kiran Venkatappa | 4110f0a | 2016-12-27 22:51:29 +0530 | [diff] [blame] | 7174 | /** |
| 7175 | * enum WMI_HOST_CALIBRATION_STATUS - Host defined Enums for cal status |
| 7176 | * @WMI_HOST_NO_FEATURE: The board was calibrated with a meta |
| 7177 | * which did not have this feature |
| 7178 | * @WMI_HOST_CALIBRATION_OK: The calibration status is OK |
| 7179 | * @WMI_HOST_CALIBRATION_NOT_OK: The calibration status is NOT OK |
| 7180 | */ |
| 7181 | enum WMI_HOST_CALIBRATION_STATUS { |
| 7182 | WMI_HOST_NO_FEATURE = 0, |
| 7183 | WMI_HOST_CALIBRATION_OK, |
| 7184 | WMI_HOST_CALIBRATION_NOT_OK, |
| 7185 | }; |
| 7186 | |
Sathish Kumar | 617535c | 2017-01-24 17:51:26 +0530 | [diff] [blame] | 7187 | /** |
| 7188 | * struct wmi_host_pdev_utf_event - Host defined struct to hold utf event data |
| 7189 | * @data: Pointer to data |
| 7190 | * @datalen: Data length |
| 7191 | * |
| 7192 | */ |
| 7193 | struct wmi_host_pdev_utf_event { |
| 7194 | uint8_t *data; |
| 7195 | uint16_t datalen; |
Kiran Venkatappa | 2a93f6f | 2017-02-28 12:42:36 +0530 | [diff] [blame] | 7196 | uint32_t pdev_id; |
Sathish Kumar | 617535c | 2017-01-24 17:51:26 +0530 | [diff] [blame] | 7197 | }; |
| 7198 | |
Kiran Venkatappa | 9b7a959 | 2016-12-29 18:09:32 +0530 | [diff] [blame] | 7199 | /** |
Kiran Venkatappa | 3d51498 | 2017-02-28 14:19:17 +0530 | [diff] [blame] | 7200 | * struct wmi_host_pdev_qvit_event - Host defined struct to hold qvit event data |
| 7201 | * @data: Pointer to data |
| 7202 | * @datalen: Data length |
| 7203 | * |
| 7204 | */ |
| 7205 | struct wmi_host_pdev_qvit_event { |
| 7206 | uint8_t *data; |
| 7207 | uint16_t datalen; |
| 7208 | uint32_t pdev_id; |
| 7209 | }; |
| 7210 | |
| 7211 | /** |
Vijay Pamidipati | add0ba7 | 2017-01-17 12:53:05 +0530 | [diff] [blame] | 7212 | * struct wmi_host_peer_delete_response_event - Peer Delete response event param |
| 7213 | * @vdev_id: vdev id |
| 7214 | * @mac_address: Peer Mac Address |
| 7215 | * |
| 7216 | */ |
| 7217 | struct wmi_host_peer_delete_response_event { |
| 7218 | uint32_t vdev_id; |
| 7219 | struct qdf_mac_addr mac_address; |
| 7220 | }; |
| 7221 | |
| 7222 | /** |
Kiran Venkatappa | 9b7a959 | 2016-12-29 18:09:32 +0530 | [diff] [blame] | 7223 | * @struct wmi_host_dcs_interference_param |
| 7224 | * @interference_type: Type of DCS Interference |
| 7225 | * @uint32_t pdev_id: pdev id |
| 7226 | */ |
| 7227 | struct wmi_host_dcs_interference_param { |
| 7228 | uint32_t interference_type; |
| 7229 | uint32_t pdev_id; |
| 7230 | }; |
| 7231 | |
Kiran Venkatappa | 9f5fcc0 | 2016-12-29 22:07:14 +0530 | [diff] [blame] | 7232 | /* |
| 7233 | * struct wmi_host_fips_event_param: FIPS event param |
| 7234 | * @pdev_id: pdev id |
| 7235 | * @error_status: Error status: 0 (no err), 1, or OPER_TIMEOUR |
| 7236 | * @data_len: FIPS data lenght |
| 7237 | * @data: pointer to data |
| 7238 | */ |
| 7239 | struct wmi_host_fips_event_param { |
| 7240 | uint32_t pdev_id; |
| 7241 | uint32_t error_status; |
| 7242 | uint32_t data_len; |
| 7243 | uint32_t *data; |
| 7244 | }; |
Kiran Venkatappa | 3f061a9 | 2017-02-08 14:57:16 +0530 | [diff] [blame] | 7245 | |
| 7246 | /** |
| 7247 | * struct wmi_host_proxy_ast_reserve_param |
| 7248 | * @pdev_id: pdev id |
| 7249 | * @result: result |
| 7250 | */ |
| 7251 | struct wmi_host_proxy_ast_reserve_param { |
| 7252 | uint32_t pdev_id; |
| 7253 | uint32_t result; |
| 7254 | }; |
Kiran Venkatappa | af1dae3 | 2016-12-23 19:58:54 +0530 | [diff] [blame] | 7255 | |
| 7256 | /** |
| 7257 | * struct wmi_host_pdev_band_to_mac - freq range for mac |
| 7258 | * @pdev_id: PDEV ID to identifiy mac |
| 7259 | * @start_freq: start frequency value |
| 7260 | * @end_freq: end frequency value |
| 7261 | */ |
| 7262 | struct wmi_host_pdev_band_to_mac { |
| 7263 | uint32_t pdev_id; |
| 7264 | uint32_t start_freq; |
| 7265 | uint32_t end_freq; |
| 7266 | }; |
| 7267 | #define WMI_HOST_MAX_PDEV 3 |
| 7268 | |
| 7269 | /** |
| 7270 | * struct wmi_init_cmd_param - INIT command params |
| 7271 | * @target_resource_config: pointer to resource config |
| 7272 | * @num_mem_chunks: number of memory chunks |
| 7273 | * @struct wmi_host_mem_chunk: pointer to memory chunks |
| 7274 | * @hw_mode_index: HW mode index chosen |
| 7275 | * @num_band_to_mac: Number of band to mac setting |
| 7276 | * @struct wmi_host_pdev_band_to_mac: band to mac setting |
| 7277 | */ |
| 7278 | struct wmi_init_cmd_param { |
| 7279 | target_resource_config *res_cfg; |
| 7280 | uint8_t num_mem_chunks; |
| 7281 | struct wmi_host_mem_chunk *mem_chunks; |
| 7282 | uint32_t hw_mode_id; |
| 7283 | uint32_t num_band_to_mac; |
| 7284 | struct wmi_host_pdev_band_to_mac band_to_mac[WMI_HOST_MAX_PDEV]; |
| 7285 | }; |
Sathish Kumar | 907a746 | 2017-02-27 10:35:40 +0530 | [diff] [blame] | 7286 | |
| 7287 | /** |
| 7288 | * struct pdev_csa_switch_count_status - CSA switch count status event param |
| 7289 | * @pdev_id: Physical device identifier |
| 7290 | * @current_switch_count: Current CSA switch count |
| 7291 | * @num_vdevs: Number of vdevs that need restart |
| 7292 | * @vdev_ids: Array containing the vdev ids that need restart |
| 7293 | */ |
| 7294 | struct pdev_csa_switch_count_status { |
| 7295 | uint32_t pdev_id; |
| 7296 | uint32_t current_switch_count; |
| 7297 | uint32_t num_vdevs; |
| 7298 | uint32_t *vdev_ids; |
| 7299 | }; |
| 7300 | |
Dustin Brown | 4def316 | 2017-01-13 15:24:07 -0800 | [diff] [blame] | 7301 | /** |
| 7302 | * enum wmi_host_active-bpf_mode - FW_ACTIVE_BPF_MODE, replicated from FW header |
| 7303 | * @WMI_HOST_ACTIVE_BPF_DISABLED: BPF is disabled for all packets in active mode |
| 7304 | * @WMI_HOST_ACTIVE_BPF_ENABLED: BPF is enabled for all packets in active mode |
| 7305 | * @WMI_HOST_ACTIVE_BPF_ADAPTIVE: BPF is enabled for packets up to some |
| 7306 | * threshold in active mode |
| 7307 | */ |
| 7308 | enum wmi_host_active_bpf_mode { |
| 7309 | WMI_HOST_ACTIVE_BPF_DISABLED = (1 << 1), |
| 7310 | WMI_HOST_ACTIVE_BPF_ENABLED = (1 << 2), |
| 7311 | WMI_HOST_ACTIVE_BPF_ADAPTIVE = (1 << 3) |
| 7312 | }; |
| 7313 | |
Sathish Kumar | 7e2eaed | 2016-11-14 17:44:29 +0530 | [diff] [blame] | 7314 | #endif /* _WMI_UNIFIED_PARAM_H_ */ |