1 /* 2 * Copyright (c) 2013 Eugene Krasnikov <k.eugene.e@gmail.com> 3 * 4 * Permission to use, copy, modify, and/or distribute this software for any 5 * purpose with or without fee is hereby granted, provided that the above 6 * copyright notice and this permission notice appear in all copies. 7 * 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 */ 16 17 #ifndef _HAL_H_ 18 #define _HAL_H_ 19 20 /*--------------------------------------------------------------------------- 21 API VERSIONING INFORMATION 22 23 The RIVA API is versioned as MAJOR.MINOR.VERSION.REVISION 24 The MAJOR is incremented for major product/architecture changes 25 (and then MINOR/VERSION/REVISION are zeroed) 26 The MINOR is incremented for minor product/architecture changes 27 (and then VERSION/REVISION are zeroed) 28 The VERSION is incremented if a significant API change occurs 29 (and then REVISION is zeroed) 30 The REVISION is incremented if an insignificant API change occurs 31 or if a new API is added 32 All values are in the range 0..255 (ie they are 8-bit values) 33 ---------------------------------------------------------------------------*/ 34 #define WCN36XX_HAL_VER_MAJOR 1 35 #define WCN36XX_HAL_VER_MINOR 4 36 #define WCN36XX_HAL_VER_VERSION 1 37 #define WCN36XX_HAL_VER_REVISION 2 38 39 /* This is to force compiler to use the maximum of an int ( 4 bytes ) */ 40 #define WCN36XX_HAL_MAX_ENUM_SIZE 0x7FFFFFFF 41 #define WCN36XX_HAL_MSG_TYPE_MAX_ENUM_SIZE 0x7FFF 42 43 /* Max no. of transmit categories */ 44 #define STACFG_MAX_TC 8 45 46 /* The maximum value of access category */ 47 #define WCN36XX_HAL_MAX_AC 4 48 49 #define WCN36XX_HAL_IPV4_ADDR_LEN 4 50 51 #define WCN36XX_HAL_STA_INVALID_IDX 0xFF 52 #define WCN36XX_HAL_BSS_INVALID_IDX 0xFF 53 54 /* Default Beacon template size */ 55 #define BEACON_TEMPLATE_SIZE 0x180 56 57 /* Minimum PVM size that the FW expects. See comment in smd.c for details. */ 58 #define TIM_MIN_PVM_SIZE 6 59 60 /* Param Change Bitmap sent to HAL */ 61 #define PARAM_BCN_INTERVAL_CHANGED (1 << 0) 62 #define PARAM_SHORT_PREAMBLE_CHANGED (1 << 1) 63 #define PARAM_SHORT_SLOT_TIME_CHANGED (1 << 2) 64 #define PARAM_llACOEXIST_CHANGED (1 << 3) 65 #define PARAM_llBCOEXIST_CHANGED (1 << 4) 66 #define PARAM_llGCOEXIST_CHANGED (1 << 5) 67 #define PARAM_HT20MHZCOEXIST_CHANGED (1<<6) 68 #define PARAM_NON_GF_DEVICES_PRESENT_CHANGED (1<<7) 69 #define PARAM_RIFS_MODE_CHANGED (1<<8) 70 #define PARAM_LSIG_TXOP_FULL_SUPPORT_CHANGED (1<<9) 71 #define PARAM_OBSS_MODE_CHANGED (1<<10) 72 #define PARAM_BEACON_UPDATE_MASK \ 73 (PARAM_BCN_INTERVAL_CHANGED | \ 74 PARAM_SHORT_PREAMBLE_CHANGED | \ 75 PARAM_SHORT_SLOT_TIME_CHANGED | \ 76 PARAM_llACOEXIST_CHANGED | \ 77 PARAM_llBCOEXIST_CHANGED | \ 78 PARAM_llGCOEXIST_CHANGED | \ 79 PARAM_HT20MHZCOEXIST_CHANGED | \ 80 PARAM_NON_GF_DEVICES_PRESENT_CHANGED | \ 81 PARAM_RIFS_MODE_CHANGED | \ 82 PARAM_LSIG_TXOP_FULL_SUPPORT_CHANGED | \ 83 PARAM_OBSS_MODE_CHANGED) 84 85 /* dump command response Buffer size */ 86 #define DUMPCMD_RSP_BUFFER 100 87 88 /* version string max length (including NULL) */ 89 #define WCN36XX_HAL_VERSION_LENGTH 64 90 91 /* How many frames until we start a-mpdu TX session */ 92 #define WCN36XX_AMPDU_START_THRESH 20 93 94 #define WCN36XX_MAX_SCAN_SSIDS 9 95 #define WCN36XX_MAX_SCAN_IE_LEN 500 96 97 /* message types for messages exchanged between WDI and HAL */ 98 enum wcn36xx_hal_host_msg_type { 99 /* Init/De-Init */ 100 WCN36XX_HAL_START_REQ = 0, 101 WCN36XX_HAL_START_RSP = 1, 102 WCN36XX_HAL_STOP_REQ = 2, 103 WCN36XX_HAL_STOP_RSP = 3, 104 105 /* Scan */ 106 WCN36XX_HAL_INIT_SCAN_REQ = 4, 107 WCN36XX_HAL_INIT_SCAN_RSP = 5, 108 WCN36XX_HAL_START_SCAN_REQ = 6, 109 WCN36XX_HAL_START_SCAN_RSP = 7, 110 WCN36XX_HAL_END_SCAN_REQ = 8, 111 WCN36XX_HAL_END_SCAN_RSP = 9, 112 WCN36XX_HAL_FINISH_SCAN_REQ = 10, 113 WCN36XX_HAL_FINISH_SCAN_RSP = 11, 114 115 /* HW STA configuration/deconfiguration */ 116 WCN36XX_HAL_CONFIG_STA_REQ = 12, 117 WCN36XX_HAL_CONFIG_STA_RSP = 13, 118 WCN36XX_HAL_DELETE_STA_REQ = 14, 119 WCN36XX_HAL_DELETE_STA_RSP = 15, 120 WCN36XX_HAL_CONFIG_BSS_REQ = 16, 121 WCN36XX_HAL_CONFIG_BSS_RSP = 17, 122 WCN36XX_HAL_DELETE_BSS_REQ = 18, 123 WCN36XX_HAL_DELETE_BSS_RSP = 19, 124 125 /* Infra STA asscoiation */ 126 WCN36XX_HAL_JOIN_REQ = 20, 127 WCN36XX_HAL_JOIN_RSP = 21, 128 WCN36XX_HAL_POST_ASSOC_REQ = 22, 129 WCN36XX_HAL_POST_ASSOC_RSP = 23, 130 131 /* Security */ 132 WCN36XX_HAL_SET_BSSKEY_REQ = 24, 133 WCN36XX_HAL_SET_BSSKEY_RSP = 25, 134 WCN36XX_HAL_SET_STAKEY_REQ = 26, 135 WCN36XX_HAL_SET_STAKEY_RSP = 27, 136 WCN36XX_HAL_RMV_BSSKEY_REQ = 28, 137 WCN36XX_HAL_RMV_BSSKEY_RSP = 29, 138 WCN36XX_HAL_RMV_STAKEY_REQ = 30, 139 WCN36XX_HAL_RMV_STAKEY_RSP = 31, 140 141 /* Qos Related */ 142 WCN36XX_HAL_ADD_TS_REQ = 32, 143 WCN36XX_HAL_ADD_TS_RSP = 33, 144 WCN36XX_HAL_DEL_TS_REQ = 34, 145 WCN36XX_HAL_DEL_TS_RSP = 35, 146 WCN36XX_HAL_UPD_EDCA_PARAMS_REQ = 36, 147 WCN36XX_HAL_UPD_EDCA_PARAMS_RSP = 37, 148 WCN36XX_HAL_ADD_BA_REQ = 38, 149 WCN36XX_HAL_ADD_BA_RSP = 39, 150 WCN36XX_HAL_DEL_BA_REQ = 40, 151 WCN36XX_HAL_DEL_BA_RSP = 41, 152 153 WCN36XX_HAL_CH_SWITCH_REQ = 42, 154 WCN36XX_HAL_CH_SWITCH_RSP = 43, 155 WCN36XX_HAL_SET_LINK_ST_REQ = 44, 156 WCN36XX_HAL_SET_LINK_ST_RSP = 45, 157 WCN36XX_HAL_GET_STATS_REQ = 46, 158 WCN36XX_HAL_GET_STATS_RSP = 47, 159 WCN36XX_HAL_UPDATE_CFG_REQ = 48, 160 WCN36XX_HAL_UPDATE_CFG_RSP = 49, 161 162 WCN36XX_HAL_MISSED_BEACON_IND = 50, 163 WCN36XX_HAL_UNKNOWN_ADDR2_FRAME_RX_IND = 51, 164 WCN36XX_HAL_MIC_FAILURE_IND = 52, 165 WCN36XX_HAL_FATAL_ERROR_IND = 53, 166 WCN36XX_HAL_SET_KEYDONE_MSG = 54, 167 168 /* NV Interface */ 169 WCN36XX_HAL_DOWNLOAD_NV_REQ = 55, 170 WCN36XX_HAL_DOWNLOAD_NV_RSP = 56, 171 172 WCN36XX_HAL_ADD_BA_SESSION_REQ = 57, 173 WCN36XX_HAL_ADD_BA_SESSION_RSP = 58, 174 WCN36XX_HAL_TRIGGER_BA_REQ = 59, 175 WCN36XX_HAL_TRIGGER_BA_RSP = 60, 176 WCN36XX_HAL_UPDATE_BEACON_REQ = 61, 177 WCN36XX_HAL_UPDATE_BEACON_RSP = 62, 178 WCN36XX_HAL_SEND_BEACON_REQ = 63, 179 WCN36XX_HAL_SEND_BEACON_RSP = 64, 180 181 WCN36XX_HAL_SET_BCASTKEY_REQ = 65, 182 WCN36XX_HAL_SET_BCASTKEY_RSP = 66, 183 WCN36XX_HAL_DELETE_STA_CONTEXT_IND = 67, 184 WCN36XX_HAL_UPDATE_PROBE_RSP_TEMPLATE_REQ = 68, 185 WCN36XX_HAL_UPDATE_PROBE_RSP_TEMPLATE_RSP = 69, 186 187 /* PTT interface support */ 188 WCN36XX_HAL_PROCESS_PTT_REQ = 70, 189 WCN36XX_HAL_PROCESS_PTT_RSP = 71, 190 191 /* BTAMP related events */ 192 WCN36XX_HAL_SIGNAL_BTAMP_EVENT_REQ = 72, 193 WCN36XX_HAL_SIGNAL_BTAMP_EVENT_RSP = 73, 194 WCN36XX_HAL_TL_HAL_FLUSH_AC_REQ = 74, 195 WCN36XX_HAL_TL_HAL_FLUSH_AC_RSP = 75, 196 197 WCN36XX_HAL_ENTER_IMPS_REQ = 76, 198 WCN36XX_HAL_EXIT_IMPS_REQ = 77, 199 WCN36XX_HAL_ENTER_BMPS_REQ = 78, 200 WCN36XX_HAL_EXIT_BMPS_REQ = 79, 201 WCN36XX_HAL_ENTER_UAPSD_REQ = 80, 202 WCN36XX_HAL_EXIT_UAPSD_REQ = 81, 203 WCN36XX_HAL_UPDATE_UAPSD_PARAM_REQ = 82, 204 WCN36XX_HAL_CONFIGURE_RXP_FILTER_REQ = 83, 205 WCN36XX_HAL_ADD_BCN_FILTER_REQ = 84, 206 WCN36XX_HAL_REM_BCN_FILTER_REQ = 85, 207 WCN36XX_HAL_ADD_WOWL_BCAST_PTRN = 86, 208 WCN36XX_HAL_DEL_WOWL_BCAST_PTRN = 87, 209 WCN36XX_HAL_ENTER_WOWL_REQ = 88, 210 WCN36XX_HAL_EXIT_WOWL_REQ = 89, 211 WCN36XX_HAL_HOST_OFFLOAD_REQ = 90, 212 WCN36XX_HAL_SET_RSSI_THRESH_REQ = 91, 213 WCN36XX_HAL_GET_RSSI_REQ = 92, 214 WCN36XX_HAL_SET_UAPSD_AC_PARAMS_REQ = 93, 215 WCN36XX_HAL_CONFIGURE_APPS_CPU_WAKEUP_STATE_REQ = 94, 216 217 WCN36XX_HAL_ENTER_IMPS_RSP = 95, 218 WCN36XX_HAL_EXIT_IMPS_RSP = 96, 219 WCN36XX_HAL_ENTER_BMPS_RSP = 97, 220 WCN36XX_HAL_EXIT_BMPS_RSP = 98, 221 WCN36XX_HAL_ENTER_UAPSD_RSP = 99, 222 WCN36XX_HAL_EXIT_UAPSD_RSP = 100, 223 WCN36XX_HAL_SET_UAPSD_AC_PARAMS_RSP = 101, 224 WCN36XX_HAL_UPDATE_UAPSD_PARAM_RSP = 102, 225 WCN36XX_HAL_CONFIGURE_RXP_FILTER_RSP = 103, 226 WCN36XX_HAL_ADD_BCN_FILTER_RSP = 104, 227 WCN36XX_HAL_REM_BCN_FILTER_RSP = 105, 228 WCN36XX_HAL_SET_RSSI_THRESH_RSP = 106, 229 WCN36XX_HAL_HOST_OFFLOAD_RSP = 107, 230 WCN36XX_HAL_ADD_WOWL_BCAST_PTRN_RSP = 108, 231 WCN36XX_HAL_DEL_WOWL_BCAST_PTRN_RSP = 109, 232 WCN36XX_HAL_ENTER_WOWL_RSP = 110, 233 WCN36XX_HAL_EXIT_WOWL_RSP = 111, 234 WCN36XX_HAL_RSSI_NOTIFICATION_IND = 112, 235 WCN36XX_HAL_GET_RSSI_RSP = 113, 236 WCN36XX_HAL_CONFIGURE_APPS_CPU_WAKEUP_STATE_RSP = 114, 237 238 /* 11k related events */ 239 WCN36XX_HAL_SET_MAX_TX_POWER_REQ = 115, 240 WCN36XX_HAL_SET_MAX_TX_POWER_RSP = 116, 241 242 /* 11R related msgs */ 243 WCN36XX_HAL_AGGR_ADD_TS_REQ = 117, 244 WCN36XX_HAL_AGGR_ADD_TS_RSP = 118, 245 246 /* P2P WLAN_FEATURE_P2P */ 247 WCN36XX_HAL_SET_P2P_GONOA_REQ = 119, 248 WCN36XX_HAL_SET_P2P_GONOA_RSP = 120, 249 250 /* WLAN Dump commands */ 251 WCN36XX_HAL_DUMP_COMMAND_REQ = 121, 252 WCN36XX_HAL_DUMP_COMMAND_RSP = 122, 253 254 /* OEM_DATA FEATURE SUPPORT */ 255 WCN36XX_HAL_START_OEM_DATA_REQ = 123, 256 WCN36XX_HAL_START_OEM_DATA_RSP = 124, 257 258 /* ADD SELF STA REQ and RSP */ 259 WCN36XX_HAL_ADD_STA_SELF_REQ = 125, 260 WCN36XX_HAL_ADD_STA_SELF_RSP = 126, 261 262 /* DEL SELF STA SUPPORT */ 263 WCN36XX_HAL_DEL_STA_SELF_REQ = 127, 264 WCN36XX_HAL_DEL_STA_SELF_RSP = 128, 265 266 /* Coex Indication */ 267 WCN36XX_HAL_COEX_IND = 129, 268 269 /* Tx Complete Indication */ 270 WCN36XX_HAL_OTA_TX_COMPL_IND = 130, 271 272 /* Host Suspend/resume messages */ 273 WCN36XX_HAL_HOST_SUSPEND_IND = 131, 274 WCN36XX_HAL_HOST_RESUME_REQ = 132, 275 WCN36XX_HAL_HOST_RESUME_RSP = 133, 276 277 WCN36XX_HAL_SET_TX_POWER_REQ = 134, 278 WCN36XX_HAL_SET_TX_POWER_RSP = 135, 279 WCN36XX_HAL_GET_TX_POWER_REQ = 136, 280 WCN36XX_HAL_GET_TX_POWER_RSP = 137, 281 282 WCN36XX_HAL_P2P_NOA_ATTR_IND = 138, 283 284 WCN36XX_HAL_ENABLE_RADAR_DETECT_REQ = 139, 285 WCN36XX_HAL_ENABLE_RADAR_DETECT_RSP = 140, 286 WCN36XX_HAL_GET_TPC_REPORT_REQ = 141, 287 WCN36XX_HAL_GET_TPC_REPORT_RSP = 142, 288 WCN36XX_HAL_RADAR_DETECT_IND = 143, 289 WCN36XX_HAL_RADAR_DETECT_INTR_IND = 144, 290 WCN36XX_HAL_KEEP_ALIVE_REQ = 145, 291 WCN36XX_HAL_KEEP_ALIVE_RSP = 146, 292 293 /* PNO messages */ 294 WCN36XX_HAL_SET_PREF_NETWORK_REQ = 147, 295 WCN36XX_HAL_SET_PREF_NETWORK_RSP = 148, 296 WCN36XX_HAL_SET_RSSI_FILTER_REQ = 149, 297 WCN36XX_HAL_SET_RSSI_FILTER_RSP = 150, 298 WCN36XX_HAL_UPDATE_SCAN_PARAM_REQ = 151, 299 WCN36XX_HAL_UPDATE_SCAN_PARAM_RSP = 152, 300 WCN36XX_HAL_PREF_NETW_FOUND_IND = 153, 301 302 WCN36XX_HAL_SET_TX_PER_TRACKING_REQ = 154, 303 WCN36XX_HAL_SET_TX_PER_TRACKING_RSP = 155, 304 WCN36XX_HAL_TX_PER_HIT_IND = 156, 305 306 WCN36XX_HAL_8023_MULTICAST_LIST_REQ = 157, 307 WCN36XX_HAL_8023_MULTICAST_LIST_RSP = 158, 308 309 WCN36XX_HAL_SET_PACKET_FILTER_REQ = 159, 310 WCN36XX_HAL_SET_PACKET_FILTER_RSP = 160, 311 WCN36XX_HAL_PACKET_FILTER_MATCH_COUNT_REQ = 161, 312 WCN36XX_HAL_PACKET_FILTER_MATCH_COUNT_RSP = 162, 313 WCN36XX_HAL_CLEAR_PACKET_FILTER_REQ = 163, 314 WCN36XX_HAL_CLEAR_PACKET_FILTER_RSP = 164, 315 316 /* 317 * This is temp fix. Should be removed once Host and Riva code is 318 * in sync. 319 */ 320 WCN36XX_HAL_INIT_SCAN_CON_REQ = 165, 321 322 WCN36XX_HAL_SET_POWER_PARAMS_REQ = 166, 323 WCN36XX_HAL_SET_POWER_PARAMS_RSP = 167, 324 325 WCN36XX_HAL_TSM_STATS_REQ = 168, 326 WCN36XX_HAL_TSM_STATS_RSP = 169, 327 328 /* wake reason indication (WOW) */ 329 WCN36XX_HAL_WAKE_REASON_IND = 170, 330 331 /* GTK offload support */ 332 WCN36XX_HAL_GTK_OFFLOAD_REQ = 171, 333 WCN36XX_HAL_GTK_OFFLOAD_RSP = 172, 334 WCN36XX_HAL_GTK_OFFLOAD_GETINFO_REQ = 173, 335 WCN36XX_HAL_GTK_OFFLOAD_GETINFO_RSP = 174, 336 337 WCN36XX_HAL_FEATURE_CAPS_EXCHANGE_REQ = 175, 338 WCN36XX_HAL_FEATURE_CAPS_EXCHANGE_RSP = 176, 339 WCN36XX_HAL_EXCLUDE_UNENCRYPTED_IND = 177, 340 341 WCN36XX_HAL_SET_THERMAL_MITIGATION_REQ = 178, 342 WCN36XX_HAL_SET_THERMAL_MITIGATION_RSP = 179, 343 344 WCN36XX_HAL_UPDATE_VHT_OP_MODE_REQ = 182, 345 WCN36XX_HAL_UPDATE_VHT_OP_MODE_RSP = 183, 346 347 WCN36XX_HAL_P2P_NOA_START_IND = 184, 348 349 WCN36XX_HAL_GET_ROAM_RSSI_REQ = 185, 350 WCN36XX_HAL_GET_ROAM_RSSI_RSP = 186, 351 352 WCN36XX_HAL_CLASS_B_STATS_IND = 187, 353 WCN36XX_HAL_DEL_BA_IND = 188, 354 WCN36XX_HAL_DHCP_START_IND = 189, 355 WCN36XX_HAL_DHCP_STOP_IND = 190, 356 357 /* Scan Offload(hw) APIs */ 358 WCN36XX_HAL_START_SCAN_OFFLOAD_REQ = 204, 359 WCN36XX_HAL_START_SCAN_OFFLOAD_RSP = 205, 360 WCN36XX_HAL_STOP_SCAN_OFFLOAD_REQ = 206, 361 WCN36XX_HAL_STOP_SCAN_OFFLOAD_RSP = 207, 362 WCN36XX_HAL_SCAN_OFFLOAD_IND = 210, 363 364 WCN36XX_HAL_AVOID_FREQ_RANGE_IND = 233, 365 366 WCN36XX_HAL_PRINT_REG_INFO_IND = 259, 367 368 WCN36XX_HAL_MSG_MAX = WCN36XX_HAL_MSG_TYPE_MAX_ENUM_SIZE 369 }; 370 371 /* Enumeration for Version */ 372 enum wcn36xx_hal_host_msg_version { 373 WCN36XX_HAL_MSG_VERSION0 = 0, 374 WCN36XX_HAL_MSG_VERSION1 = 1, 375 /* define as 2 bytes data */ 376 WCN36XX_HAL_MSG_WCNSS_CTRL_VERSION = 0x7FFF, 377 WCN36XX_HAL_MSG_VERSION_MAX_FIELD = WCN36XX_HAL_MSG_WCNSS_CTRL_VERSION 378 }; 379 380 enum driver_type { 381 DRIVER_TYPE_PRODUCTION = 0, 382 DRIVER_TYPE_MFG = 1, 383 DRIVER_TYPE_DVT = 2, 384 DRIVER_TYPE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 385 }; 386 387 enum wcn36xx_hal_stop_type { 388 HAL_STOP_TYPE_SYS_RESET, 389 HAL_STOP_TYPE_SYS_DEEP_SLEEP, 390 HAL_STOP_TYPE_RF_KILL, 391 HAL_STOP_TYPE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 392 }; 393 394 enum wcn36xx_hal_sys_mode { 395 HAL_SYS_MODE_NORMAL, 396 HAL_SYS_MODE_LEARN, 397 HAL_SYS_MODE_SCAN, 398 HAL_SYS_MODE_PROMISC, 399 HAL_SYS_MODE_SUSPEND_LINK, 400 HAL_SYS_MODE_ROAM_SCAN, 401 HAL_SYS_MODE_ROAM_SUSPEND_LINK, 402 HAL_SYS_MODE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 403 }; 404 405 enum phy_chan_bond_state { 406 /* 20MHz IF bandwidth centered on IF carrier */ 407 PHY_SINGLE_CHANNEL_CENTERED = 0, 408 409 /* 40MHz IF bandwidth with lower 20MHz supporting the primary channel */ 410 PHY_DOUBLE_CHANNEL_LOW_PRIMARY = 1, 411 412 /* 40MHz IF bandwidth centered on IF carrier */ 413 PHY_DOUBLE_CHANNEL_CENTERED = 2, 414 415 /* 40MHz IF bandwidth with higher 20MHz supporting the primary ch */ 416 PHY_DOUBLE_CHANNEL_HIGH_PRIMARY = 3, 417 418 /* 20/40MHZ offset LOW 40/80MHZ offset CENTERED */ 419 PHY_QUADRUPLE_CHANNEL_20MHZ_LOW_40MHZ_CENTERED = 4, 420 421 /* 20/40MHZ offset CENTERED 40/80MHZ offset CENTERED */ 422 PHY_QUADRUPLE_CHANNEL_20MHZ_CENTERED_40MHZ_CENTERED = 5, 423 424 /* 20/40MHZ offset HIGH 40/80MHZ offset CENTERED */ 425 PHY_QUADRUPLE_CHANNEL_20MHZ_HIGH_40MHZ_CENTERED = 6, 426 427 /* 20/40MHZ offset LOW 40/80MHZ offset LOW */ 428 PHY_QUADRUPLE_CHANNEL_20MHZ_LOW_40MHZ_LOW = 7, 429 430 /* 20/40MHZ offset HIGH 40/80MHZ offset LOW */ 431 PHY_QUADRUPLE_CHANNEL_20MHZ_HIGH_40MHZ_LOW = 8, 432 433 /* 20/40MHZ offset LOW 40/80MHZ offset HIGH */ 434 PHY_QUADRUPLE_CHANNEL_20MHZ_LOW_40MHZ_HIGH = 9, 435 436 /* 20/40MHZ offset-HIGH 40/80MHZ offset HIGH */ 437 PHY_QUADRUPLE_CHANNEL_20MHZ_HIGH_40MHZ_HIGH = 10, 438 439 PHY_CHANNEL_BONDING_STATE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 440 }; 441 442 /* Spatial Multiplexing(SM) Power Save mode */ 443 enum wcn36xx_hal_ht_mimo_state { 444 /* Static SM Power Save mode */ 445 WCN36XX_HAL_HT_MIMO_PS_STATIC = 0, 446 447 /* Dynamic SM Power Save mode */ 448 WCN36XX_HAL_HT_MIMO_PS_DYNAMIC = 1, 449 450 /* reserved */ 451 WCN36XX_HAL_HT_MIMO_PS_NA = 2, 452 453 /* SM Power Save disabled */ 454 WCN36XX_HAL_HT_MIMO_PS_NO_LIMIT = 3, 455 456 WCN36XX_HAL_HT_MIMO_PS_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 457 }; 458 459 /* each station added has a rate mode which specifies the sta attributes */ 460 enum sta_rate_mode { 461 STA_TAURUS = 0, 462 STA_TITAN, 463 STA_POLARIS, 464 STA_11b, 465 STA_11bg, 466 STA_11a, 467 STA_11n, 468 STA_11ac, 469 STA_INVALID_RATE_MODE = WCN36XX_HAL_MAX_ENUM_SIZE 470 }; 471 472 /* 1,2,5.5,11 */ 473 #define WCN36XX_HAL_NUM_DSSS_RATES 4 474 475 /* 6,9,12,18,24,36,48,54 */ 476 #define WCN36XX_HAL_NUM_OFDM_RATES 8 477 478 /* 72,96,108 */ 479 #define WCN36XX_HAL_NUM_POLARIS_RATES 3 480 481 #define WCN36XX_HAL_MAC_MAX_SUPPORTED_MCS_SET 16 482 483 enum wcn36xx_hal_bss_type { 484 WCN36XX_HAL_INFRASTRUCTURE_MODE, 485 486 /* Added for softAP support */ 487 WCN36XX_HAL_INFRA_AP_MODE, 488 489 WCN36XX_HAL_IBSS_MODE, 490 491 /* Added for BT-AMP support */ 492 WCN36XX_HAL_BTAMP_STA_MODE, 493 494 /* Added for BT-AMP support */ 495 WCN36XX_HAL_BTAMP_AP_MODE, 496 497 WCN36XX_HAL_AUTO_MODE, 498 499 WCN36XX_HAL_DONOT_USE_BSS_TYPE = WCN36XX_HAL_MAX_ENUM_SIZE 500 }; 501 502 enum wcn36xx_hal_nw_type { 503 WCN36XX_HAL_11A_NW_TYPE, 504 WCN36XX_HAL_11B_NW_TYPE, 505 WCN36XX_HAL_11G_NW_TYPE, 506 WCN36XX_HAL_11N_NW_TYPE, 507 WCN36XX_HAL_DONOT_USE_NW_TYPE = WCN36XX_HAL_MAX_ENUM_SIZE 508 }; 509 510 #define WCN36XX_HAL_MAC_RATESET_EID_MAX 12 511 512 enum wcn36xx_hal_ht_operating_mode { 513 /* No Protection */ 514 WCN36XX_HAL_HT_OP_MODE_PURE, 515 516 /* Overlap Legacy device present, protection is optional */ 517 WCN36XX_HAL_HT_OP_MODE_OVERLAP_LEGACY, 518 519 /* No legacy device, but 20 MHz HT present */ 520 WCN36XX_HAL_HT_OP_MODE_NO_LEGACY_20MHZ_HT, 521 522 /* Protection is required */ 523 WCN36XX_HAL_HT_OP_MODE_MIXED, 524 525 WCN36XX_HAL_HT_OP_MODE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 526 }; 527 528 /* Encryption type enum used with peer */ 529 enum ani_ed_type { 530 WCN36XX_HAL_ED_NONE, 531 WCN36XX_HAL_ED_WEP40, 532 WCN36XX_HAL_ED_WEP104, 533 WCN36XX_HAL_ED_TKIP, 534 WCN36XX_HAL_ED_CCMP, 535 WCN36XX_HAL_ED_WPI, 536 WCN36XX_HAL_ED_AES_128_CMAC, 537 WCN36XX_HAL_ED_NOT_IMPLEMENTED = WCN36XX_HAL_MAX_ENUM_SIZE 538 }; 539 540 #define WLAN_MAX_KEY_RSC_LEN 16 541 #define WLAN_WAPI_KEY_RSC_LEN 16 542 543 /* MAX key length when ULA is used */ 544 #define WCN36XX_HAL_MAC_MAX_KEY_LENGTH 32 545 #define WCN36XX_HAL_MAC_MAX_NUM_OF_DEFAULT_KEYS 4 546 547 /* 548 * Enum to specify whether key is used for TX only, RX only or both. 549 */ 550 enum ani_key_direction { 551 WCN36XX_HAL_TX_ONLY, 552 WCN36XX_HAL_RX_ONLY, 553 WCN36XX_HAL_TX_RX, 554 WCN36XX_HAL_TX_DEFAULT, 555 WCN36XX_HAL_DONOT_USE_KEY_DIRECTION = WCN36XX_HAL_MAX_ENUM_SIZE 556 }; 557 558 enum ani_wep_type { 559 WCN36XX_HAL_WEP_STATIC, 560 WCN36XX_HAL_WEP_DYNAMIC, 561 WCN36XX_HAL_WEP_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 562 }; 563 564 enum wcn36xx_hal_link_state { 565 566 WCN36XX_HAL_LINK_IDLE_STATE = 0, 567 WCN36XX_HAL_LINK_PREASSOC_STATE = 1, 568 WCN36XX_HAL_LINK_POSTASSOC_STATE = 2, 569 WCN36XX_HAL_LINK_AP_STATE = 3, 570 WCN36XX_HAL_LINK_IBSS_STATE = 4, 571 572 /* BT-AMP Case */ 573 WCN36XX_HAL_LINK_BTAMP_PREASSOC_STATE = 5, 574 WCN36XX_HAL_LINK_BTAMP_POSTASSOC_STATE = 6, 575 WCN36XX_HAL_LINK_BTAMP_AP_STATE = 7, 576 WCN36XX_HAL_LINK_BTAMP_STA_STATE = 8, 577 578 /* Reserved for HAL Internal Use */ 579 WCN36XX_HAL_LINK_LEARN_STATE = 9, 580 WCN36XX_HAL_LINK_SCAN_STATE = 10, 581 WCN36XX_HAL_LINK_FINISH_SCAN_STATE = 11, 582 WCN36XX_HAL_LINK_INIT_CAL_STATE = 12, 583 WCN36XX_HAL_LINK_FINISH_CAL_STATE = 13, 584 WCN36XX_HAL_LINK_LISTEN_STATE = 14, 585 586 WCN36XX_HAL_LINK_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 587 }; 588 589 enum wcn36xx_hal_stats_mask { 590 HAL_SUMMARY_STATS_INFO = 0x00000001, 591 HAL_GLOBAL_CLASS_A_STATS_INFO = 0x00000002, 592 HAL_GLOBAL_CLASS_B_STATS_INFO = 0x00000004, 593 HAL_GLOBAL_CLASS_C_STATS_INFO = 0x00000008, 594 HAL_GLOBAL_CLASS_D_STATS_INFO = 0x00000010, 595 HAL_PER_STA_STATS_INFO = 0x00000020 596 }; 597 598 /* BT-AMP events type */ 599 enum bt_amp_event_type { 600 BTAMP_EVENT_CONNECTION_START, 601 BTAMP_EVENT_CONNECTION_STOP, 602 BTAMP_EVENT_CONNECTION_TERMINATED, 603 604 /* This and beyond are invalid values */ 605 BTAMP_EVENT_TYPE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE, 606 }; 607 608 /* PE Statistics */ 609 enum pe_stats_mask { 610 PE_SUMMARY_STATS_INFO = 0x00000001, 611 PE_GLOBAL_CLASS_A_STATS_INFO = 0x00000002, 612 PE_GLOBAL_CLASS_B_STATS_INFO = 0x00000004, 613 PE_GLOBAL_CLASS_C_STATS_INFO = 0x00000008, 614 PE_GLOBAL_CLASS_D_STATS_INFO = 0x00000010, 615 PE_PER_STA_STATS_INFO = 0x00000020, 616 617 /* This and beyond are invalid values */ 618 PE_STATS_TYPE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 619 }; 620 621 /* 622 * Configuration Parameter IDs 623 */ 624 #define WCN36XX_HAL_CFG_STA_ID 0 625 #define WCN36XX_HAL_CFG_CURRENT_TX_ANTENNA 1 626 #define WCN36XX_HAL_CFG_CURRENT_RX_ANTENNA 2 627 #define WCN36XX_HAL_CFG_LOW_GAIN_OVERRIDE 3 628 #define WCN36XX_HAL_CFG_POWER_STATE_PER_CHAIN 4 629 #define WCN36XX_HAL_CFG_CAL_PERIOD 5 630 #define WCN36XX_HAL_CFG_CAL_CONTROL 6 631 #define WCN36XX_HAL_CFG_PROXIMITY 7 632 #define WCN36XX_HAL_CFG_NETWORK_DENSITY 8 633 #define WCN36XX_HAL_CFG_MAX_MEDIUM_TIME 9 634 #define WCN36XX_HAL_CFG_MAX_MPDUS_IN_AMPDU 10 635 #define WCN36XX_HAL_CFG_RTS_THRESHOLD 11 636 #define WCN36XX_HAL_CFG_SHORT_RETRY_LIMIT 12 637 #define WCN36XX_HAL_CFG_LONG_RETRY_LIMIT 13 638 #define WCN36XX_HAL_CFG_FRAGMENTATION_THRESHOLD 14 639 #define WCN36XX_HAL_CFG_DYNAMIC_THRESHOLD_ZERO 15 640 #define WCN36XX_HAL_CFG_DYNAMIC_THRESHOLD_ONE 16 641 #define WCN36XX_HAL_CFG_DYNAMIC_THRESHOLD_TWO 17 642 #define WCN36XX_HAL_CFG_FIXED_RATE 18 643 #define WCN36XX_HAL_CFG_RETRYRATE_POLICY 19 644 #define WCN36XX_HAL_CFG_RETRYRATE_SECONDARY 20 645 #define WCN36XX_HAL_CFG_RETRYRATE_TERTIARY 21 646 #define WCN36XX_HAL_CFG_FORCE_POLICY_PROTECTION 22 647 #define WCN36XX_HAL_CFG_FIXED_RATE_MULTICAST_24GHZ 23 648 #define WCN36XX_HAL_CFG_FIXED_RATE_MULTICAST_5GHZ 24 649 #define WCN36XX_HAL_CFG_DEFAULT_RATE_INDEX_24GHZ 25 650 #define WCN36XX_HAL_CFG_DEFAULT_RATE_INDEX_5GHZ 26 651 #define WCN36XX_HAL_CFG_MAX_BA_SESSIONS 27 652 #define WCN36XX_HAL_CFG_PS_DATA_INACTIVITY_TIMEOUT 28 653 #define WCN36XX_HAL_CFG_PS_ENABLE_BCN_FILTER 29 654 #define WCN36XX_HAL_CFG_PS_ENABLE_RSSI_MONITOR 30 655 #define WCN36XX_HAL_CFG_NUM_BEACON_PER_RSSI_AVERAGE 31 656 #define WCN36XX_HAL_CFG_STATS_PERIOD 32 657 #define WCN36XX_HAL_CFG_CFP_MAX_DURATION 33 658 #define WCN36XX_HAL_CFG_FRAME_TRANS_ENABLED 34 659 #define WCN36XX_HAL_CFG_DTIM_PERIOD 35 660 #define WCN36XX_HAL_CFG_EDCA_WMM_ACBK 36 661 #define WCN36XX_HAL_CFG_EDCA_WMM_ACBE 37 662 #define WCN36XX_HAL_CFG_EDCA_WMM_ACVO 38 663 #define WCN36XX_HAL_CFG_EDCA_WMM_ACVI 39 664 #define WCN36XX_HAL_CFG_BA_THRESHOLD_HIGH 40 665 #define WCN36XX_HAL_CFG_MAX_BA_BUFFERS 41 666 #define WCN36XX_HAL_CFG_RPE_POLLING_THRESHOLD 42 667 #define WCN36XX_HAL_CFG_RPE_AGING_THRESHOLD_FOR_AC0_REG 43 668 #define WCN36XX_HAL_CFG_RPE_AGING_THRESHOLD_FOR_AC1_REG 44 669 #define WCN36XX_HAL_CFG_RPE_AGING_THRESHOLD_FOR_AC2_REG 45 670 #define WCN36XX_HAL_CFG_RPE_AGING_THRESHOLD_FOR_AC3_REG 46 671 #define WCN36XX_HAL_CFG_NO_OF_ONCHIP_REORDER_SESSIONS 47 672 #define WCN36XX_HAL_CFG_PS_LISTEN_INTERVAL 48 673 #define WCN36XX_HAL_CFG_PS_HEART_BEAT_THRESHOLD 49 674 #define WCN36XX_HAL_CFG_PS_NTH_BEACON_FILTER 50 675 #define WCN36XX_HAL_CFG_PS_MAX_PS_POLL 51 676 #define WCN36XX_HAL_CFG_PS_MIN_RSSI_THRESHOLD 52 677 #define WCN36XX_HAL_CFG_PS_RSSI_FILTER_PERIOD 53 678 #define WCN36XX_HAL_CFG_PS_BROADCAST_FRAME_FILTER_ENABLE 54 679 #define WCN36XX_HAL_CFG_PS_IGNORE_DTIM 55 680 #define WCN36XX_HAL_CFG_PS_ENABLE_BCN_EARLY_TERM 56 681 #define WCN36XX_HAL_CFG_DYNAMIC_PS_POLL_VALUE 57 682 #define WCN36XX_HAL_CFG_PS_NULLDATA_AP_RESP_TIMEOUT 58 683 #define WCN36XX_HAL_CFG_TELE_BCN_WAKEUP_EN 59 684 #define WCN36XX_HAL_CFG_TELE_BCN_TRANS_LI 60 685 #define WCN36XX_HAL_CFG_TELE_BCN_TRANS_LI_IDLE_BCNS 61 686 #define WCN36XX_HAL_CFG_TELE_BCN_MAX_LI 62 687 #define WCN36XX_HAL_CFG_TELE_BCN_MAX_LI_IDLE_BCNS 63 688 #define WCN36XX_HAL_CFG_TX_PWR_CTRL_ENABLE 64 689 #define WCN36XX_HAL_CFG_VALID_RADAR_CHANNEL_LIST 65 690 #define WCN36XX_HAL_CFG_TX_POWER_24_20 66 691 #define WCN36XX_HAL_CFG_TX_POWER_24_40 67 692 #define WCN36XX_HAL_CFG_TX_POWER_50_20 68 693 #define WCN36XX_HAL_CFG_TX_POWER_50_40 69 694 #define WCN36XX_HAL_CFG_MCAST_BCAST_FILTER_SETTING 70 695 #define WCN36XX_HAL_CFG_BCN_EARLY_TERM_WAKEUP_INTERVAL 71 696 #define WCN36XX_HAL_CFG_MAX_TX_POWER_2_4 72 697 #define WCN36XX_HAL_CFG_MAX_TX_POWER_5 73 698 #define WCN36XX_HAL_CFG_INFRA_STA_KEEP_ALIVE_PERIOD 74 699 #define WCN36XX_HAL_CFG_ENABLE_CLOSE_LOOP 75 700 #define WCN36XX_HAL_CFG_BTC_EXECUTION_MODE 76 701 #define WCN36XX_HAL_CFG_BTC_DHCP_BT_SLOTS_TO_BLOCK 77 702 #define WCN36XX_HAL_CFG_BTC_A2DP_DHCP_BT_SUB_INTERVALS 78 703 #define WCN36XX_HAL_CFG_PS_TX_INACTIVITY_TIMEOUT 79 704 #define WCN36XX_HAL_CFG_WCNSS_API_VERSION 80 705 #define WCN36XX_HAL_CFG_AP_KEEPALIVE_TIMEOUT 81 706 #define WCN36XX_HAL_CFG_GO_KEEPALIVE_TIMEOUT 82 707 #define WCN36XX_HAL_CFG_ENABLE_MC_ADDR_LIST 83 708 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_INQ_BT 84 709 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_PAGE_BT 85 710 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_CONN_BT 86 711 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_LE_BT 87 712 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_INQ_WLAN 88 713 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_PAGE_WLAN 89 714 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_CONN_WLAN 90 715 #define WCN36XX_HAL_CFG_BTC_STATIC_LEN_LE_WLAN 91 716 #define WCN36XX_HAL_CFG_BTC_DYN_MAX_LEN_BT 92 717 #define WCN36XX_HAL_CFG_BTC_DYN_MAX_LEN_WLAN 93 718 #define WCN36XX_HAL_CFG_BTC_MAX_SCO_BLOCK_PERC 94 719 #define WCN36XX_HAL_CFG_BTC_DHCP_PROT_ON_A2DP 95 720 #define WCN36XX_HAL_CFG_BTC_DHCP_PROT_ON_SCO 96 721 #define WCN36XX_HAL_CFG_ENABLE_UNICAST_FILTER 97 722 #define WCN36XX_HAL_CFG_MAX_ASSOC_LIMIT 98 723 #define WCN36XX_HAL_CFG_ENABLE_LPWR_IMG_TRANSITION 99 724 #define WCN36XX_HAL_CFG_ENABLE_MCC_ADAPTIVE_SCHEDULER 100 725 #define WCN36XX_HAL_CFG_ENABLE_DETECT_PS_SUPPORT 101 726 #define WCN36XX_HAL_CFG_AP_LINK_MONITOR_TIMEOUT 102 727 #define WCN36XX_HAL_CFG_BTC_DWELL_TIME_MULTIPLIER 103 728 #define WCN36XX_HAL_CFG_ENABLE_TDLS_OXYGEN_MODE 104 729 #define WCN36XX_HAL_CFG_MAX_PARAMS 105 730 731 /* Message definitons - All the messages below need to be packed */ 732 733 /* Definition for HAL API Version. */ 734 struct wcnss_wlan_version { 735 u8 revision; 736 u8 version; 737 u8 minor; 738 u8 major; 739 } __packed; 740 741 /* Definition for Encryption Keys */ 742 struct wcn36xx_hal_keys { 743 u8 id; 744 745 /* 0 for multicast */ 746 u8 unicast; 747 748 enum ani_key_direction direction; 749 750 /* Usage is unknown */ 751 u8 rsc[WLAN_MAX_KEY_RSC_LEN]; 752 753 /* =1 for authenticator,=0 for supplicant */ 754 u8 pae_role; 755 756 u16 length; 757 u8 key[WCN36XX_HAL_MAC_MAX_KEY_LENGTH]; 758 } __packed; 759 760 /* 761 * set_sta_key_params Moving here since it is shared by 762 * configbss/setstakey msgs 763 */ 764 struct wcn36xx_hal_set_sta_key_params { 765 /* STA Index */ 766 u16 sta_index; 767 768 /* Encryption Type used with peer */ 769 enum ani_ed_type enc_type; 770 771 /* STATIC/DYNAMIC - valid only for WEP */ 772 enum ani_wep_type wep_type; 773 774 /* Default WEP key, valid only for static WEP, must between 0 and 3. */ 775 u8 def_wep_idx; 776 777 /* valid only for non-static WEP encyrptions */ 778 struct wcn36xx_hal_keys key[WCN36XX_HAL_MAC_MAX_NUM_OF_DEFAULT_KEYS]; 779 780 /* 781 * Control for Replay Count, 1= Single TID based replay count on Tx 782 * 0 = Per TID based replay count on TX 783 */ 784 u8 single_tid_rc; 785 786 } __packed; 787 788 /* 4-byte control message header used by HAL*/ 789 struct wcn36xx_hal_msg_header { 790 enum wcn36xx_hal_host_msg_type msg_type:16; 791 enum wcn36xx_hal_host_msg_version msg_version:16; 792 u32 len; 793 } __packed; 794 795 /* Config format required by HAL for each CFG item*/ 796 struct wcn36xx_hal_cfg { 797 /* Cfg Id. The Id required by HAL is exported by HAL 798 * in shared header file between UMAC and HAL.*/ 799 u16 id; 800 801 /* Length of the Cfg. This parameter is used to go to next cfg 802 * in the TLV format.*/ 803 u16 len; 804 805 /* Padding bytes for unaligned address's */ 806 u16 pad_bytes; 807 808 /* Reserve bytes for making cfgVal to align address */ 809 u16 reserve; 810 811 /* Following the uCfgLen field there should be a 'uCfgLen' bytes 812 * containing the uCfgValue ; u8 uCfgValue[uCfgLen] */ 813 } __packed; 814 815 struct wcn36xx_hal_mac_start_parameters { 816 /* Drive Type - Production or FTM etc */ 817 enum driver_type type; 818 819 /* Length of the config buffer */ 820 u32 len; 821 822 /* Following this there is a TLV formatted buffer of length 823 * "len" bytes containing all config values. 824 * The TLV is expected to be formatted like this: 825 * 0 15 31 31+CFG_LEN-1 length-1 826 * | CFG_ID | CFG_LEN | CFG_BODY | CFG_ID |......| 827 */ 828 } __packed; 829 830 struct wcn36xx_hal_mac_start_req_msg { 831 /* config buffer must start in TLV format just here */ 832 struct wcn36xx_hal_msg_header header; 833 struct wcn36xx_hal_mac_start_parameters params; 834 } __packed; 835 836 struct wcn36xx_hal_mac_start_rsp_params { 837 /* success or failure */ 838 u16 status; 839 840 /* Max number of STA supported by the device */ 841 u8 stations; 842 843 /* Max number of BSS supported by the device */ 844 u8 bssids; 845 846 /* API Version */ 847 struct wcnss_wlan_version version; 848 849 /* CRM build information */ 850 u8 crm_version[WCN36XX_HAL_VERSION_LENGTH]; 851 852 /* hardware/chipset/misc version information */ 853 u8 wlan_version[WCN36XX_HAL_VERSION_LENGTH]; 854 855 } __packed; 856 857 struct wcn36xx_hal_mac_start_rsp_msg { 858 struct wcn36xx_hal_msg_header header; 859 struct wcn36xx_hal_mac_start_rsp_params start_rsp_params; 860 } __packed; 861 862 struct wcn36xx_hal_mac_stop_req_params { 863 /* The reason for which the device is being stopped */ 864 enum wcn36xx_hal_stop_type reason; 865 866 } __packed; 867 868 struct wcn36xx_hal_mac_stop_req_msg { 869 struct wcn36xx_hal_msg_header header; 870 struct wcn36xx_hal_mac_stop_req_params stop_req_params; 871 } __packed; 872 873 struct wcn36xx_hal_mac_stop_rsp_msg { 874 struct wcn36xx_hal_msg_header header; 875 876 /* success or failure */ 877 u32 status; 878 } __packed; 879 880 struct wcn36xx_hal_update_cfg_req_msg { 881 /* 882 * Note: The length specified in tHalUpdateCfgReqMsg messages should be 883 * header.msgLen = sizeof(tHalUpdateCfgReqMsg) + uConfigBufferLen 884 */ 885 struct wcn36xx_hal_msg_header header; 886 887 /* Length of the config buffer. Allows UMAC to update multiple CFGs */ 888 u32 len; 889 890 /* 891 * Following this there is a TLV formatted buffer of length 892 * "uConfigBufferLen" bytes containing all config values. 893 * The TLV is expected to be formatted like this: 894 * 0 15 31 31+CFG_LEN-1 length-1 895 * | CFG_ID | CFG_LEN | CFG_BODY | CFG_ID |......| 896 */ 897 898 } __packed; 899 900 struct wcn36xx_hal_update_cfg_rsp_msg { 901 struct wcn36xx_hal_msg_header header; 902 903 /* success or failure */ 904 u32 status; 905 906 } __packed; 907 908 /* Frame control field format (2 bytes) */ 909 struct wcn36xx_hal_mac_frame_ctl { 910 911 #ifndef ANI_LITTLE_BIT_ENDIAN 912 913 u8 subType:4; 914 u8 type:2; 915 u8 protVer:2; 916 917 u8 order:1; 918 u8 wep:1; 919 u8 moreData:1; 920 u8 powerMgmt:1; 921 u8 retry:1; 922 u8 moreFrag:1; 923 u8 fromDS:1; 924 u8 toDS:1; 925 926 #else 927 928 u8 protVer:2; 929 u8 type:2; 930 u8 subType:4; 931 932 u8 toDS:1; 933 u8 fromDS:1; 934 u8 moreFrag:1; 935 u8 retry:1; 936 u8 powerMgmt:1; 937 u8 moreData:1; 938 u8 wep:1; 939 u8 order:1; 940 941 #endif 942 943 }; 944 945 /* Sequence control field */ 946 struct wcn36xx_hal_mac_seq_ctl { 947 u8 fragNum:4; 948 u8 seqNumLo:4; 949 u8 seqNumHi:8; 950 }; 951 952 /* Management header format */ 953 struct wcn36xx_hal_mac_mgmt_hdr { 954 struct wcn36xx_hal_mac_frame_ctl fc; 955 u8 durationLo; 956 u8 durationHi; 957 u8 da[6]; 958 u8 sa[6]; 959 u8 bssId[6]; 960 struct wcn36xx_hal_mac_seq_ctl seqControl; 961 }; 962 963 /* FIXME: pronto v1 apparently has 4 */ 964 #define WCN36XX_HAL_NUM_BSSID 2 965 966 /* Scan Entry to hold active BSS idx's */ 967 struct wcn36xx_hal_scan_entry { 968 u8 bss_index[WCN36XX_HAL_NUM_BSSID]; 969 u8 active_bss_count; 970 }; 971 972 struct wcn36xx_hal_init_scan_req_msg { 973 struct wcn36xx_hal_msg_header header; 974 975 /* LEARN - AP Role 976 SCAN - STA Role */ 977 enum wcn36xx_hal_sys_mode mode; 978 979 /* BSSID of the BSS */ 980 u8 bssid[ETH_ALEN]; 981 982 /* Whether BSS needs to be notified */ 983 u8 notify; 984 985 /* Kind of frame to be used for notifying the BSS (Data Null, QoS 986 * Null, or CTS to Self). Must always be a valid frame type. */ 987 u8 frame_type; 988 989 /* UMAC has the option of passing the MAC frame to be used for 990 * notifying the BSS. If non-zero, HAL will use the MAC frame 991 * buffer pointed to by macMgmtHdr. If zero, HAL will generate the 992 * appropriate MAC frame based on frameType. */ 993 u8 frame_len; 994 995 /* Following the framelength there is a MAC frame buffer if 996 * frameLength is non-zero. */ 997 struct wcn36xx_hal_mac_mgmt_hdr mac_mgmt_hdr; 998 999 /* Entry to hold number of active BSS idx's */ 1000 struct wcn36xx_hal_scan_entry scan_entry; 1001 }; 1002 1003 struct wcn36xx_hal_init_scan_con_req_msg { 1004 struct wcn36xx_hal_msg_header header; 1005 1006 /* LEARN - AP Role 1007 SCAN - STA Role */ 1008 enum wcn36xx_hal_sys_mode mode; 1009 1010 /* BSSID of the BSS */ 1011 u8 bssid[ETH_ALEN]; 1012 1013 /* Whether BSS needs to be notified */ 1014 u8 notify; 1015 1016 /* Kind of frame to be used for notifying the BSS (Data Null, QoS 1017 * Null, or CTS to Self). Must always be a valid frame type. */ 1018 u8 frame_type; 1019 1020 /* UMAC has the option of passing the MAC frame to be used for 1021 * notifying the BSS. If non-zero, HAL will use the MAC frame 1022 * buffer pointed to by macMgmtHdr. If zero, HAL will generate the 1023 * appropriate MAC frame based on frameType. */ 1024 u8 frame_length; 1025 1026 /* Following the framelength there is a MAC frame buffer if 1027 * frameLength is non-zero. */ 1028 struct wcn36xx_hal_mac_mgmt_hdr mac_mgmt_hdr; 1029 1030 /* Entry to hold number of active BSS idx's */ 1031 struct wcn36xx_hal_scan_entry scan_entry; 1032 1033 /* Single NoA usage in Scanning */ 1034 u8 use_noa; 1035 1036 /* Indicates the scan duration (in ms) */ 1037 u16 scan_duration; 1038 1039 }; 1040 1041 struct wcn36xx_hal_init_scan_rsp_msg { 1042 struct wcn36xx_hal_msg_header header; 1043 1044 /* success or failure */ 1045 u32 status; 1046 1047 } __packed; 1048 1049 struct wcn36xx_hal_start_scan_req_msg { 1050 struct wcn36xx_hal_msg_header header; 1051 1052 /* Indicates the channel to scan */ 1053 u8 scan_channel; 1054 } __packed; 1055 1056 struct wcn36xx_hal_start_rsp_msg { 1057 struct wcn36xx_hal_msg_header header; 1058 1059 /* success or failure */ 1060 u32 status; 1061 1062 u32 start_tsf[2]; 1063 u8 tx_mgmt_power; 1064 1065 } __packed; 1066 1067 struct wcn36xx_hal_end_scan_req_msg { 1068 struct wcn36xx_hal_msg_header header; 1069 1070 /* Indicates the channel to stop scanning. Not used really. But 1071 * retained for symmetry with "start Scan" message. It can also 1072 * help in error check if needed. */ 1073 u8 scan_channel; 1074 } __packed; 1075 1076 struct wcn36xx_hal_end_scan_rsp_msg { 1077 struct wcn36xx_hal_msg_header header; 1078 1079 /* success or failure */ 1080 u32 status; 1081 } __packed; 1082 1083 struct wcn36xx_hal_finish_scan_req_msg { 1084 struct wcn36xx_hal_msg_header header; 1085 1086 /* Identifies the operational state of the AP/STA 1087 * LEARN - AP Role SCAN - STA Role */ 1088 enum wcn36xx_hal_sys_mode mode; 1089 1090 /* Operating channel to tune to. */ 1091 u8 oper_channel; 1092 1093 /* Channel Bonding state If 20/40 MHz is operational, this will 1094 * indicate the 40 MHz extension channel in combination with the 1095 * control channel */ 1096 enum phy_chan_bond_state cb_state; 1097 1098 /* BSSID of the BSS */ 1099 u8 bssid[ETH_ALEN]; 1100 1101 /* Whether BSS needs to be notified */ 1102 u8 notify; 1103 1104 /* Kind of frame to be used for notifying the BSS (Data Null, QoS 1105 * Null, or CTS to Self). Must always be a valid frame type. */ 1106 u8 frame_type; 1107 1108 /* UMAC has the option of passing the MAC frame to be used for 1109 * notifying the BSS. If non-zero, HAL will use the MAC frame 1110 * buffer pointed to by macMgmtHdr. If zero, HAL will generate the 1111 * appropriate MAC frame based on frameType. */ 1112 u8 frame_length; 1113 1114 /* Following the framelength there is a MAC frame buffer if 1115 * frameLength is non-zero. */ 1116 struct wcn36xx_hal_mac_mgmt_hdr mac_mgmt_hdr; 1117 1118 /* Entry to hold number of active BSS idx's */ 1119 struct wcn36xx_hal_scan_entry scan_entry; 1120 1121 } __packed; 1122 1123 struct wcn36xx_hal_finish_scan_rsp_msg { 1124 struct wcn36xx_hal_msg_header header; 1125 1126 /* success or failure */ 1127 u32 status; 1128 1129 } __packed; 1130 1131 enum wcn36xx_hal_scan_type { 1132 WCN36XX_HAL_SCAN_TYPE_PASSIVE = 0x00, 1133 WCN36XX_HAL_SCAN_TYPE_ACTIVE = WCN36XX_HAL_MAX_ENUM_SIZE 1134 }; 1135 1136 struct wcn36xx_hal_mac_ssid { 1137 u8 length; 1138 u8 ssid[32]; 1139 } __packed; 1140 1141 struct wcn36xx_hal_start_scan_offload_req_msg { 1142 struct wcn36xx_hal_msg_header header; 1143 1144 /* BSSIDs hot list */ 1145 u8 num_bssid; 1146 u8 bssids[4][ETH_ALEN]; 1147 1148 /* Directed probe-requests will be sent for listed SSIDs (max 10)*/ 1149 u8 num_ssid; 1150 struct wcn36xx_hal_mac_ssid ssids[10]; 1151 1152 /* Report AP with hidden ssid */ 1153 u8 scan_hidden; 1154 1155 /* Self MAC address */ 1156 u8 mac[ETH_ALEN]; 1157 1158 /* BSS type */ 1159 enum wcn36xx_hal_bss_type bss_type; 1160 1161 /* Scan type */ 1162 enum wcn36xx_hal_scan_type scan_type; 1163 1164 /* Minimum scanning time on each channel (ms) */ 1165 u32 min_ch_time; 1166 1167 /* Maximum scanning time on each channel */ 1168 u32 max_ch_time; 1169 1170 /* Is a p2p search */ 1171 u8 p2p_search; 1172 1173 /* Channels to scan */ 1174 u8 num_channel; 1175 u8 channels[80]; 1176 1177 /* IE field */ 1178 u16 ie_len; 1179 u8 ie[WCN36XX_MAX_SCAN_IE_LEN]; 1180 } __packed; 1181 1182 struct wcn36xx_hal_start_scan_offload_rsp_msg { 1183 struct wcn36xx_hal_msg_header header; 1184 1185 /* success or failure */ 1186 u32 status; 1187 } __packed; 1188 1189 enum wcn36xx_hal_scan_offload_ind_type { 1190 /* Scan has been started */ 1191 WCN36XX_HAL_SCAN_IND_STARTED = 0x01, 1192 /* Scan has been completed */ 1193 WCN36XX_HAL_SCAN_IND_COMPLETED = 0x02, 1194 /* Moved to foreign channel */ 1195 WCN36XX_HAL_SCAN_IND_FOREIGN_CHANNEL = 0x08, 1196 /* scan request has been dequeued */ 1197 WCN36XX_HAL_SCAN_IND_DEQUEUED = 0x10, 1198 /* preempted by other high priority scan */ 1199 WCN36XX_HAL_SCAN_IND_PREEMPTED = 0x20, 1200 /* scan start failed */ 1201 WCN36XX_HAL_SCAN_IND_FAILED = 0x40, 1202 /*scan restarted */ 1203 WCN36XX_HAL_SCAN_IND_RESTARTED = 0x80, 1204 WCN36XX_HAL_SCAN_IND_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 1205 }; 1206 1207 struct wcn36xx_hal_scan_offload_ind { 1208 struct wcn36xx_hal_msg_header header; 1209 1210 u32 type; 1211 u32 channel_mhz; 1212 u32 scan_id; 1213 } __packed; 1214 1215 struct wcn36xx_hal_stop_scan_offload_req_msg { 1216 struct wcn36xx_hal_msg_header header; 1217 } __packed; 1218 1219 struct wcn36xx_hal_stop_scan_offload_rsp_msg { 1220 struct wcn36xx_hal_msg_header header; 1221 1222 /* success or failure */ 1223 u32 status; 1224 } __packed; 1225 1226 enum wcn36xx_hal_rate_index { 1227 HW_RATE_INDEX_1MBPS = 0x82, 1228 HW_RATE_INDEX_2MBPS = 0x84, 1229 HW_RATE_INDEX_5_5MBPS = 0x8B, 1230 HW_RATE_INDEX_6MBPS = 0x0C, 1231 HW_RATE_INDEX_9MBPS = 0x12, 1232 HW_RATE_INDEX_11MBPS = 0x96, 1233 HW_RATE_INDEX_12MBPS = 0x18, 1234 HW_RATE_INDEX_18MBPS = 0x24, 1235 HW_RATE_INDEX_24MBPS = 0x30, 1236 HW_RATE_INDEX_36MBPS = 0x48, 1237 HW_RATE_INDEX_48MBPS = 0x60, 1238 HW_RATE_INDEX_54MBPS = 0x6C 1239 }; 1240 1241 struct wcn36xx_hal_supported_rates { 1242 /* 1243 * For Self STA Entry: this represents Self Mode. 1244 * For Peer Stations, this represents the mode of the peer. 1245 * On Station: 1246 * 1247 * --this mode is updated when PE adds the Self Entry. 1248 * 1249 * -- OR when PE sends 'ADD_BSS' message and station context in BSS 1250 * is used to indicate the mode of the AP. 1251 * 1252 * ON AP: 1253 * 1254 * -- this mode is updated when PE sends 'ADD_BSS' and Sta entry 1255 * for that BSS is used to indicate the self mode of the AP. 1256 * 1257 * -- OR when a station is associated, PE sends 'ADD_STA' message 1258 * with this mode updated. 1259 */ 1260 1261 enum sta_rate_mode op_rate_mode; 1262 1263 /* 11b, 11a and aniLegacyRates are IE rates which gives rate in 1264 * unit of 500Kbps */ 1265 u16 dsss_rates[WCN36XX_HAL_NUM_DSSS_RATES]; 1266 u16 ofdm_rates[WCN36XX_HAL_NUM_OFDM_RATES]; 1267 u16 legacy_rates[WCN36XX_HAL_NUM_POLARIS_RATES]; 1268 u16 reserved; 1269 1270 /* Taurus only supports 26 Titan Rates(no ESF/concat Rates will be 1271 * supported) First 26 bits are reserved for those Titan rates and 1272 * the last 4 bits(bit28-31) for Taurus, 2(bit26-27) bits are 1273 * reserved. */ 1274 /* Titan and Taurus Rates */ 1275 u32 enhanced_rate_bitmap; 1276 1277 /* 1278 * 0-76 bits used, remaining reserved 1279 * bits 0-15 and 32 should be set. 1280 */ 1281 u8 supported_mcs_set[WCN36XX_HAL_MAC_MAX_SUPPORTED_MCS_SET]; 1282 1283 /* 1284 * RX Highest Supported Data Rate defines the highest data 1285 * rate that the STA is able to receive, in unites of 1Mbps. 1286 * This value is derived from "Supported MCS Set field" inside 1287 * the HT capability element. 1288 */ 1289 u16 rx_highest_data_rate; 1290 1291 } __packed; 1292 1293 struct wcn36xx_hal_config_sta_params { 1294 /* BSSID of STA */ 1295 u8 bssid[ETH_ALEN]; 1296 1297 /* ASSOC ID, as assigned by UMAC */ 1298 u16 aid; 1299 1300 /* STA entry Type: 0 - Self, 1 - Other/Peer, 2 - BSSID, 3 - BCAST */ 1301 u8 type; 1302 1303 /* Short Preamble Supported. */ 1304 u8 short_preamble_supported; 1305 1306 /* MAC Address of STA */ 1307 u8 mac[ETH_ALEN]; 1308 1309 /* Listen interval of the STA */ 1310 u16 listen_interval; 1311 1312 /* Support for 11e/WMM */ 1313 u8 wmm_enabled; 1314 1315 /* 11n HT capable STA */ 1316 u8 ht_capable; 1317 1318 /* TX Width Set: 0 - 20 MHz only, 1 - 20/40 MHz */ 1319 u8 tx_channel_width_set; 1320 1321 /* RIFS mode 0 - NA, 1 - Allowed */ 1322 u8 rifs_mode; 1323 1324 /* L-SIG TXOP Protection mechanism 1325 0 - No Support, 1 - Supported 1326 SG - there is global field */ 1327 u8 lsig_txop_protection; 1328 1329 /* Max Ampdu Size supported by STA. TPE programming. 1330 0 : 8k , 1 : 16k, 2 : 32k, 3 : 64k */ 1331 u8 max_ampdu_size; 1332 1333 /* Max Ampdu density. Used by RA. 3 : 0~7 : 2^(11nAMPDUdensity -4) */ 1334 u8 max_ampdu_density; 1335 1336 /* Max AMSDU size 1 : 3839 bytes, 0 : 7935 bytes */ 1337 u8 max_amsdu_size; 1338 1339 /* Short GI support for 40Mhz packets */ 1340 u8 sgi_40mhz; 1341 1342 /* Short GI support for 20Mhz packets */ 1343 u8 sgi_20Mhz; 1344 1345 /* TODO move this parameter to the end for 3680 */ 1346 /* These rates are the intersection of peer and self capabilities. */ 1347 struct wcn36xx_hal_supported_rates supported_rates; 1348 1349 /* Robust Management Frame (RMF) enabled/disabled */ 1350 u8 rmf; 1351 1352 /* The unicast encryption type in the association */ 1353 u32 encrypt_type; 1354 1355 /* HAL should update the existing STA entry, if this flag is set. UMAC 1356 will set this flag in case of RE-ASSOC, where we want to reuse the 1357 old STA ID. 0 = Add, 1 = Update */ 1358 u8 action; 1359 1360 /* U-APSD Flags: 1b per AC. Encoded as follows: 1361 b7 b6 b5 b4 b3 b2 b1 b0 = 1362 X X X X BE BK VI VO */ 1363 u8 uapsd; 1364 1365 /* Max SP Length */ 1366 u8 max_sp_len; 1367 1368 /* 11n Green Field preamble support 1369 0 - Not supported, 1 - Supported */ 1370 u8 green_field_capable; 1371 1372 /* MIMO Power Save mode */ 1373 enum wcn36xx_hal_ht_mimo_state mimo_ps; 1374 1375 /* Delayed BA Support */ 1376 u8 delayed_ba_support; 1377 1378 /* Max AMPDU duration in 32us */ 1379 u8 max_ampdu_duration; 1380 1381 /* HT STA should set it to 1 if it is enabled in BSS. HT STA should 1382 * set it to 0 if AP does not support it. This indication is sent 1383 * to HAL and HAL uses this flag to pickup up appropriate 40Mhz 1384 * rates. */ 1385 u8 dsss_cck_mode_40mhz; 1386 1387 /* Valid STA Idx when action=Update. Set to 0xFF when invalid! 1388 * Retained for backward compalibity with existing HAL code */ 1389 u8 sta_index; 1390 1391 /* BSSID of BSS to which station is associated. Set to 0xFF when 1392 * invalid. Retained for backward compalibity with existing HAL 1393 * code */ 1394 u8 bssid_index; 1395 1396 u8 p2p; 1397 1398 /* TODO add this parameter for 3680. */ 1399 /* Reserved to align next field on a dword boundary */ 1400 /* u8 reserved; */ 1401 } __packed; 1402 1403 struct wcn36xx_hal_config_sta_req_msg { 1404 struct wcn36xx_hal_msg_header header; 1405 struct wcn36xx_hal_config_sta_params sta_params; 1406 } __packed; 1407 1408 struct wcn36xx_hal_config_sta_params_v1 { 1409 /* BSSID of STA */ 1410 u8 bssid[ETH_ALEN]; 1411 1412 /* ASSOC ID, as assigned by UMAC */ 1413 u16 aid; 1414 1415 /* STA entry Type: 0 - Self, 1 - Other/Peer, 2 - BSSID, 3 - BCAST */ 1416 u8 type; 1417 1418 /* Short Preamble Supported. */ 1419 u8 short_preamble_supported; 1420 1421 /* MAC Address of STA */ 1422 u8 mac[ETH_ALEN]; 1423 1424 /* Listen interval of the STA */ 1425 u16 listen_interval; 1426 1427 /* Support for 11e/WMM */ 1428 u8 wmm_enabled; 1429 1430 /* 11n HT capable STA */ 1431 u8 ht_capable; 1432 1433 /* TX Width Set: 0 - 20 MHz only, 1 - 20/40 MHz */ 1434 u8 tx_channel_width_set; 1435 1436 /* RIFS mode 0 - NA, 1 - Allowed */ 1437 u8 rifs_mode; 1438 1439 /* L-SIG TXOP Protection mechanism 1440 0 - No Support, 1 - Supported 1441 SG - there is global field */ 1442 u8 lsig_txop_protection; 1443 1444 /* Max Ampdu Size supported by STA. TPE programming. 1445 0 : 8k , 1 : 16k, 2 : 32k, 3 : 64k */ 1446 u8 max_ampdu_size; 1447 1448 /* Max Ampdu density. Used by RA. 3 : 0~7 : 2^(11nAMPDUdensity -4) */ 1449 u8 max_ampdu_density; 1450 1451 /* Max AMSDU size 1 : 3839 bytes, 0 : 7935 bytes */ 1452 u8 max_amsdu_size; 1453 1454 /* Short GI support for 40Mhz packets */ 1455 u8 sgi_40mhz; 1456 1457 /* Short GI support for 20Mhz packets */ 1458 u8 sgi_20Mhz; 1459 1460 /* Robust Management Frame (RMF) enabled/disabled */ 1461 u8 rmf; 1462 1463 /* The unicast encryption type in the association */ 1464 u32 encrypt_type; 1465 1466 /* HAL should update the existing STA entry, if this flag is set. UMAC 1467 will set this flag in case of RE-ASSOC, where we want to reuse the 1468 old STA ID. 0 = Add, 1 = Update */ 1469 u8 action; 1470 1471 /* U-APSD Flags: 1b per AC. Encoded as follows: 1472 b7 b6 b5 b4 b3 b2 b1 b0 = 1473 X X X X BE BK VI VO */ 1474 u8 uapsd; 1475 1476 /* Max SP Length */ 1477 u8 max_sp_len; 1478 1479 /* 11n Green Field preamble support 1480 0 - Not supported, 1 - Supported */ 1481 u8 green_field_capable; 1482 1483 /* MIMO Power Save mode */ 1484 enum wcn36xx_hal_ht_mimo_state mimo_ps; 1485 1486 /* Delayed BA Support */ 1487 u8 delayed_ba_support; 1488 1489 /* Max AMPDU duration in 32us */ 1490 u8 max_ampdu_duration; 1491 1492 /* HT STA should set it to 1 if it is enabled in BSS. HT STA should 1493 * set it to 0 if AP does not support it. This indication is sent 1494 * to HAL and HAL uses this flag to pickup up appropriate 40Mhz 1495 * rates. */ 1496 u8 dsss_cck_mode_40mhz; 1497 1498 /* Valid STA Idx when action=Update. Set to 0xFF when invalid! 1499 * Retained for backward compalibity with existing HAL code */ 1500 u8 sta_index; 1501 1502 /* BSSID of BSS to which station is associated. Set to 0xFF when 1503 * invalid. Retained for backward compalibity with existing HAL 1504 * code */ 1505 u8 bssid_index; 1506 1507 u8 p2p; 1508 1509 /* Reserved to align next field on a dword boundary */ 1510 u8 reserved; 1511 1512 /* These rates are the intersection of peer and self capabilities. */ 1513 struct wcn36xx_hal_supported_rates supported_rates; 1514 } __packed; 1515 1516 struct wcn36xx_hal_config_sta_req_msg_v1 { 1517 struct wcn36xx_hal_msg_header header; 1518 struct wcn36xx_hal_config_sta_params_v1 sta_params; 1519 } __packed; 1520 1521 struct config_sta_rsp_params { 1522 /* success or failure */ 1523 u32 status; 1524 1525 /* Station index; valid only when 'status' field value SUCCESS */ 1526 u8 sta_index; 1527 1528 /* BSSID Index of BSS to which the station is associated */ 1529 u8 bssid_index; 1530 1531 /* DPU Index for PTK */ 1532 u8 dpu_index; 1533 1534 /* DPU Index for GTK */ 1535 u8 bcast_dpu_index; 1536 1537 /* DPU Index for IGTK */ 1538 u8 bcast_mgmt_dpu_idx; 1539 1540 /* PTK DPU signature */ 1541 u8 uc_ucast_sig; 1542 1543 /* GTK DPU isignature */ 1544 u8 uc_bcast_sig; 1545 1546 /* IGTK DPU signature */ 1547 u8 uc_mgmt_sig; 1548 1549 u8 p2p; 1550 1551 } __packed; 1552 1553 struct wcn36xx_hal_config_sta_rsp_msg { 1554 struct wcn36xx_hal_msg_header header; 1555 1556 struct config_sta_rsp_params params; 1557 } __packed; 1558 1559 /* Delete STA Request message */ 1560 struct wcn36xx_hal_delete_sta_req_msg { 1561 struct wcn36xx_hal_msg_header header; 1562 1563 /* Index of STA to delete */ 1564 u8 sta_index; 1565 1566 } __packed; 1567 1568 /* Delete STA Response message */ 1569 struct wcn36xx_hal_delete_sta_rsp_msg { 1570 struct wcn36xx_hal_msg_header header; 1571 1572 /* success or failure */ 1573 u32 status; 1574 1575 /* Index of STA deleted */ 1576 u8 sta_id; 1577 } __packed; 1578 1579 /* 12 Bytes long because this structure can be used to represent rate and 1580 * extended rate set IEs. The parser assume this to be at least 12 */ 1581 struct wcn36xx_hal_rate_set { 1582 u8 num_rates; 1583 u8 rate[WCN36XX_HAL_MAC_RATESET_EID_MAX]; 1584 } __packed; 1585 1586 /* access category record */ 1587 struct wcn36xx_hal_aci_aifsn { 1588 #ifndef ANI_LITTLE_BIT_ENDIAN 1589 u8 rsvd:1; 1590 u8 aci:2; 1591 u8 acm:1; 1592 u8 aifsn:4; 1593 #else 1594 u8 aifsn:4; 1595 u8 acm:1; 1596 u8 aci:2; 1597 u8 rsvd:1; 1598 #endif 1599 } __packed; 1600 1601 /* contention window size */ 1602 struct wcn36xx_hal_mac_cw { 1603 #ifndef ANI_LITTLE_BIT_ENDIAN 1604 u8 max:4; 1605 u8 min:4; 1606 #else 1607 u8 min:4; 1608 u8 max:4; 1609 #endif 1610 } __packed; 1611 1612 struct wcn36xx_hal_edca_param_record { 1613 struct wcn36xx_hal_aci_aifsn aci; 1614 struct wcn36xx_hal_mac_cw cw; 1615 u16 txop_limit; 1616 } __packed; 1617 1618 /* Concurrency role. These are generic IDs that identify the various roles 1619 * in the software system. */ 1620 enum wcn36xx_hal_con_mode { 1621 WCN36XX_HAL_STA_MODE = 0, 1622 1623 /* to support softAp mode . This is misleading. 1624 It means AP MODE only. */ 1625 WCN36XX_HAL_STA_SAP_MODE = 1, 1626 1627 WCN36XX_HAL_P2P_CLIENT_MODE, 1628 WCN36XX_HAL_P2P_GO_MODE, 1629 WCN36XX_HAL_MONITOR_MODE, 1630 }; 1631 1632 /* This is a bit pattern to be set for each mode 1633 * bit 0 - sta mode 1634 * bit 1 - ap mode 1635 * bit 2 - p2p client mode 1636 * bit 3 - p2p go mode */ 1637 enum wcn36xx_hal_concurrency_mode { 1638 HAL_STA = 1, 1639 HAL_SAP = 2, 1640 1641 /* to support sta, softAp mode . This means STA+AP mode */ 1642 HAL_STA_SAP = 3, 1643 1644 HAL_P2P_CLIENT = 4, 1645 HAL_P2P_GO = 8, 1646 HAL_MAX_CONCURRENCY_PERSONA = 4 1647 }; 1648 1649 struct wcn36xx_hal_config_bss_params { 1650 /* BSSID */ 1651 u8 bssid[ETH_ALEN]; 1652 1653 /* Self Mac Address */ 1654 u8 self_mac_addr[ETH_ALEN]; 1655 1656 /* BSS type */ 1657 enum wcn36xx_hal_bss_type bss_type; 1658 1659 /* Operational Mode: AP =0, STA = 1 */ 1660 u8 oper_mode; 1661 1662 /* Network Type */ 1663 enum wcn36xx_hal_nw_type nw_type; 1664 1665 /* Used to classify PURE_11G/11G_MIXED to program MTU */ 1666 u8 short_slot_time_supported; 1667 1668 /* Co-exist with 11a STA */ 1669 u8 lla_coexist; 1670 1671 /* Co-exist with 11b STA */ 1672 u8 llb_coexist; 1673 1674 /* Co-exist with 11g STA */ 1675 u8 llg_coexist; 1676 1677 /* Coexistence with 11n STA */ 1678 u8 ht20_coexist; 1679 1680 /* Non GF coexist flag */ 1681 u8 lln_non_gf_coexist; 1682 1683 /* TXOP protection support */ 1684 u8 lsig_tx_op_protection_full_support; 1685 1686 /* RIFS mode */ 1687 u8 rifs_mode; 1688 1689 /* Beacon Interval in TU */ 1690 u16 beacon_interval; 1691 1692 /* DTIM period */ 1693 u8 dtim_period; 1694 1695 /* TX Width Set: 0 - 20 MHz only, 1 - 20/40 MHz */ 1696 u8 tx_channel_width_set; 1697 1698 /* Operating channel */ 1699 u8 oper_channel; 1700 1701 /* Extension channel for channel bonding */ 1702 u8 ext_channel; 1703 1704 /* Reserved to align next field on a dword boundary */ 1705 u8 reserved; 1706 1707 /* TODO move sta to the end for 3680 */ 1708 /* Context of the station being added in HW 1709 * Add a STA entry for "itself" - 1710 * 1711 * On AP - Add the AP itself in an "STA context" 1712 * 1713 * On STA - Add the AP to which this STA is joining in an 1714 * "STA context" 1715 */ 1716 struct wcn36xx_hal_config_sta_params sta; 1717 /* SSID of the BSS */ 1718 struct wcn36xx_hal_mac_ssid ssid; 1719 1720 /* HAL should update the existing BSS entry, if this flag is set. 1721 * UMAC will set this flag in case of reassoc, where we want to 1722 * resue the the old BSSID and still return success 0 = Add, 1 = 1723 * Update */ 1724 u8 action; 1725 1726 /* MAC Rate Set */ 1727 struct wcn36xx_hal_rate_set rateset; 1728 1729 /* Enable/Disable HT capabilities of the BSS */ 1730 u8 ht; 1731 1732 /* Enable/Disable OBSS protection */ 1733 u8 obss_prot_enabled; 1734 1735 /* RMF enabled/disabled */ 1736 u8 rmf; 1737 1738 /* HT Operating Mode operating mode of the 802.11n STA */ 1739 enum wcn36xx_hal_ht_operating_mode ht_oper_mode; 1740 1741 /* Dual CTS Protection: 0 - Unused, 1 - Used */ 1742 u8 dual_cts_protection; 1743 1744 /* Probe Response Max retries */ 1745 u8 max_probe_resp_retry_limit; 1746 1747 /* To Enable Hidden ssid */ 1748 u8 hidden_ssid; 1749 1750 /* To Enable Disable FW Proxy Probe Resp */ 1751 u8 proxy_probe_resp; 1752 1753 /* Boolean to indicate if EDCA params are valid. UMAC might not 1754 * have valid EDCA params or might not desire to apply EDCA params 1755 * during config BSS. 0 implies Not Valid ; Non-Zero implies 1756 * valid */ 1757 u8 edca_params_valid; 1758 1759 /* EDCA Parameters for Best Effort Access Category */ 1760 struct wcn36xx_hal_edca_param_record acbe; 1761 1762 /* EDCA Parameters forBackground Access Category */ 1763 struct wcn36xx_hal_edca_param_record acbk; 1764 1765 /* EDCA Parameters for Video Access Category */ 1766 struct wcn36xx_hal_edca_param_record acvi; 1767 1768 /* EDCA Parameters for Voice Access Category */ 1769 struct wcn36xx_hal_edca_param_record acvo; 1770 1771 /* Ext Bss Config Msg if set */ 1772 u8 ext_set_sta_key_param_valid; 1773 1774 /* SetStaKeyParams for ext bss msg */ 1775 struct wcn36xx_hal_set_sta_key_params ext_set_sta_key_param; 1776 1777 /* Persona for the BSS can be STA,AP,GO,CLIENT value same as enum 1778 * wcn36xx_hal_con_mode */ 1779 u8 wcn36xx_hal_persona; 1780 1781 u8 spectrum_mgt_enable; 1782 1783 /* HAL fills in the tx power used for mgmt frames in txMgmtPower */ 1784 s8 tx_mgmt_power; 1785 1786 /* maxTxPower has max power to be used after applying the power 1787 * constraint if any */ 1788 s8 max_tx_power; 1789 } __packed; 1790 1791 struct wcn36xx_hal_config_bss_req_msg { 1792 struct wcn36xx_hal_msg_header header; 1793 struct wcn36xx_hal_config_bss_params bss_params; 1794 } __packed; 1795 1796 struct wcn36xx_hal_config_bss_params_v1 { 1797 /* BSSID */ 1798 u8 bssid[ETH_ALEN]; 1799 1800 /* Self Mac Address */ 1801 u8 self_mac_addr[ETH_ALEN]; 1802 1803 /* BSS type */ 1804 enum wcn36xx_hal_bss_type bss_type; 1805 1806 /* Operational Mode: AP =0, STA = 1 */ 1807 u8 oper_mode; 1808 1809 /* Network Type */ 1810 enum wcn36xx_hal_nw_type nw_type; 1811 1812 /* Used to classify PURE_11G/11G_MIXED to program MTU */ 1813 u8 short_slot_time_supported; 1814 1815 /* Co-exist with 11a STA */ 1816 u8 lla_coexist; 1817 1818 /* Co-exist with 11b STA */ 1819 u8 llb_coexist; 1820 1821 /* Co-exist with 11g STA */ 1822 u8 llg_coexist; 1823 1824 /* Coexistence with 11n STA */ 1825 u8 ht20_coexist; 1826 1827 /* Non GF coexist flag */ 1828 u8 lln_non_gf_coexist; 1829 1830 /* TXOP protection support */ 1831 u8 lsig_tx_op_protection_full_support; 1832 1833 /* RIFS mode */ 1834 u8 rifs_mode; 1835 1836 /* Beacon Interval in TU */ 1837 u16 beacon_interval; 1838 1839 /* DTIM period */ 1840 u8 dtim_period; 1841 1842 /* TX Width Set: 0 - 20 MHz only, 1 - 20/40 MHz */ 1843 u8 tx_channel_width_set; 1844 1845 /* Operating channel */ 1846 u8 oper_channel; 1847 1848 /* Extension channel for channel bonding */ 1849 u8 ext_channel; 1850 1851 /* Reserved to align next field on a dword boundary */ 1852 u8 reserved; 1853 1854 /* SSID of the BSS */ 1855 struct wcn36xx_hal_mac_ssid ssid; 1856 1857 /* HAL should update the existing BSS entry, if this flag is set. 1858 * UMAC will set this flag in case of reassoc, where we want to 1859 * resue the the old BSSID and still return success 0 = Add, 1 = 1860 * Update */ 1861 u8 action; 1862 1863 /* MAC Rate Set */ 1864 struct wcn36xx_hal_rate_set rateset; 1865 1866 /* Enable/Disable HT capabilities of the BSS */ 1867 u8 ht; 1868 1869 /* Enable/Disable OBSS protection */ 1870 u8 obss_prot_enabled; 1871 1872 /* RMF enabled/disabled */ 1873 u8 rmf; 1874 1875 /* HT Operating Mode operating mode of the 802.11n STA */ 1876 enum wcn36xx_hal_ht_operating_mode ht_oper_mode; 1877 1878 /* Dual CTS Protection: 0 - Unused, 1 - Used */ 1879 u8 dual_cts_protection; 1880 1881 /* Probe Response Max retries */ 1882 u8 max_probe_resp_retry_limit; 1883 1884 /* To Enable Hidden ssid */ 1885 u8 hidden_ssid; 1886 1887 /* To Enable Disable FW Proxy Probe Resp */ 1888 u8 proxy_probe_resp; 1889 1890 /* Boolean to indicate if EDCA params are valid. UMAC might not 1891 * have valid EDCA params or might not desire to apply EDCA params 1892 * during config BSS. 0 implies Not Valid ; Non-Zero implies 1893 * valid */ 1894 u8 edca_params_valid; 1895 1896 /* EDCA Parameters for Best Effort Access Category */ 1897 struct wcn36xx_hal_edca_param_record acbe; 1898 1899 /* EDCA Parameters forBackground Access Category */ 1900 struct wcn36xx_hal_edca_param_record acbk; 1901 1902 /* EDCA Parameters for Video Access Category */ 1903 struct wcn36xx_hal_edca_param_record acvi; 1904 1905 /* EDCA Parameters for Voice Access Category */ 1906 struct wcn36xx_hal_edca_param_record acvo; 1907 1908 /* Ext Bss Config Msg if set */ 1909 u8 ext_set_sta_key_param_valid; 1910 1911 /* SetStaKeyParams for ext bss msg */ 1912 struct wcn36xx_hal_set_sta_key_params ext_set_sta_key_param; 1913 1914 /* Persona for the BSS can be STA,AP,GO,CLIENT value same as enum 1915 * wcn36xx_hal_con_mode */ 1916 u8 wcn36xx_hal_persona; 1917 1918 u8 spectrum_mgt_enable; 1919 1920 /* HAL fills in the tx power used for mgmt frames in txMgmtPower */ 1921 s8 tx_mgmt_power; 1922 1923 /* maxTxPower has max power to be used after applying the power 1924 * constraint if any */ 1925 s8 max_tx_power; 1926 1927 /* Context of the station being added in HW 1928 * Add a STA entry for "itself" - 1929 * 1930 * On AP - Add the AP itself in an "STA context" 1931 * 1932 * On STA - Add the AP to which this STA is joining in an 1933 * "STA context" 1934 */ 1935 struct wcn36xx_hal_config_sta_params_v1 sta; 1936 } __packed; 1937 1938 struct wcn36xx_hal_config_bss_req_msg_v1 { 1939 struct wcn36xx_hal_msg_header header; 1940 struct wcn36xx_hal_config_bss_params_v1 bss_params; 1941 } __packed; 1942 1943 struct wcn36xx_hal_config_bss_rsp_params { 1944 /* Success or Failure */ 1945 u32 status; 1946 1947 /* BSS index allocated by HAL */ 1948 u8 bss_index; 1949 1950 /* DPU descriptor index for PTK */ 1951 u8 dpu_desc_index; 1952 1953 /* PTK DPU signature */ 1954 u8 ucast_dpu_signature; 1955 1956 /* DPU descriptor index for GTK */ 1957 u8 bcast_dpu_desc_indx; 1958 1959 /* GTK DPU signature */ 1960 u8 bcast_dpu_signature; 1961 1962 /* DPU descriptor for IGTK */ 1963 u8 mgmt_dpu_desc_index; 1964 1965 /* IGTK DPU signature */ 1966 u8 mgmt_dpu_signature; 1967 1968 /* Station Index for BSS entry */ 1969 u8 bss_sta_index; 1970 1971 /* Self station index for this BSS */ 1972 u8 bss_self_sta_index; 1973 1974 /* Bcast station for buffering bcast frames in AP role */ 1975 u8 bss_bcast_sta_idx; 1976 1977 /* MAC Address of STA(PEER/SELF) in staContext of configBSSReq */ 1978 u8 mac[ETH_ALEN]; 1979 1980 /* HAL fills in the tx power used for mgmt frames in this field. */ 1981 s8 tx_mgmt_power; 1982 1983 } __packed; 1984 1985 struct wcn36xx_hal_config_bss_rsp_msg { 1986 struct wcn36xx_hal_msg_header header; 1987 struct wcn36xx_hal_config_bss_rsp_params bss_rsp_params; 1988 } __packed; 1989 1990 struct wcn36xx_hal_delete_bss_req_msg { 1991 struct wcn36xx_hal_msg_header header; 1992 1993 /* BSS index to be deleted */ 1994 u8 bss_index; 1995 1996 } __packed; 1997 1998 struct wcn36xx_hal_delete_bss_rsp_msg { 1999 struct wcn36xx_hal_msg_header header; 2000 2001 /* Success or Failure */ 2002 u32 status; 2003 2004 /* BSS index that has been deleted */ 2005 u8 bss_index; 2006 2007 } __packed; 2008 2009 struct wcn36xx_hal_join_req_msg { 2010 struct wcn36xx_hal_msg_header header; 2011 2012 /* Indicates the BSSID to which STA is going to associate */ 2013 u8 bssid[ETH_ALEN]; 2014 2015 /* Indicates the channel to switch to. */ 2016 u8 channel; 2017 2018 /* Self STA MAC */ 2019 u8 self_sta_mac_addr[ETH_ALEN]; 2020 2021 /* Local power constraint */ 2022 u8 local_power_constraint; 2023 2024 /* Secondary channel offset */ 2025 enum phy_chan_bond_state secondary_channel_offset; 2026 2027 /* link State */ 2028 enum wcn36xx_hal_link_state link_state; 2029 2030 /* Max TX power */ 2031 s8 max_tx_power; 2032 } __packed; 2033 2034 struct wcn36xx_hal_join_rsp_msg { 2035 struct wcn36xx_hal_msg_header header; 2036 2037 /* success or failure */ 2038 u32 status; 2039 2040 /* HAL fills in the tx power used for mgmt frames in this field */ 2041 u8 tx_mgmt_power; 2042 } __packed; 2043 2044 struct post_assoc_req_msg { 2045 struct wcn36xx_hal_msg_header header; 2046 2047 struct wcn36xx_hal_config_sta_params sta_params; 2048 struct wcn36xx_hal_config_bss_params bss_params; 2049 }; 2050 2051 struct post_assoc_rsp_msg { 2052 struct wcn36xx_hal_msg_header header; 2053 struct config_sta_rsp_params sta_rsp_params; 2054 struct wcn36xx_hal_config_bss_rsp_params bss_rsp_params; 2055 }; 2056 2057 /* This is used to create a set of WEP keys for a given BSS. */ 2058 struct wcn36xx_hal_set_bss_key_req_msg { 2059 struct wcn36xx_hal_msg_header header; 2060 2061 /* BSS Index of the BSS */ 2062 u8 bss_idx; 2063 2064 /* Encryption Type used with peer */ 2065 enum ani_ed_type enc_type; 2066 2067 /* Number of keys */ 2068 u8 num_keys; 2069 2070 /* Array of keys. */ 2071 struct wcn36xx_hal_keys keys[WCN36XX_HAL_MAC_MAX_NUM_OF_DEFAULT_KEYS]; 2072 2073 /* Control for Replay Count, 1= Single TID based replay count on Tx 2074 * 0 = Per TID based replay count on TX */ 2075 u8 single_tid_rc; 2076 } __packed; 2077 2078 /* tagged version of set bss key */ 2079 struct wcn36xx_hal_set_bss_key_req_msg_tagged { 2080 struct wcn36xx_hal_set_bss_key_req_msg Msg; 2081 u32 tag; 2082 } __packed; 2083 2084 struct wcn36xx_hal_set_bss_key_rsp_msg { 2085 struct wcn36xx_hal_msg_header header; 2086 2087 /* success or failure */ 2088 u32 status; 2089 } __packed; 2090 2091 /* 2092 * This is used configure the key information on a given station. 2093 * When the sec_type is WEP40 or WEP104, the def_wep_idx is used to locate 2094 * a preconfigured key from a BSS the station assoicated with; otherwise 2095 * a new key descriptor is created based on the key field. 2096 */ 2097 struct wcn36xx_hal_set_sta_key_req_msg { 2098 struct wcn36xx_hal_msg_header header; 2099 struct wcn36xx_hal_set_sta_key_params set_sta_key_params; 2100 } __packed; 2101 2102 struct wcn36xx_hal_set_sta_key_rsp_msg { 2103 struct wcn36xx_hal_msg_header header; 2104 2105 /* success or failure */ 2106 u32 status; 2107 } __packed; 2108 2109 struct wcn36xx_hal_remove_bss_key_req_msg { 2110 struct wcn36xx_hal_msg_header header; 2111 2112 /* BSS Index of the BSS */ 2113 u8 bss_idx; 2114 2115 /* Encryption Type used with peer */ 2116 enum ani_ed_type enc_type; 2117 2118 /* Key Id */ 2119 u8 key_id; 2120 2121 /* STATIC/DYNAMIC. Used in Nullifying in Key Descriptors for 2122 * Static/Dynamic keys */ 2123 enum ani_wep_type wep_type; 2124 } __packed; 2125 2126 struct wcn36xx_hal_remove_bss_key_rsp_msg { 2127 struct wcn36xx_hal_msg_header header; 2128 2129 /* success or failure */ 2130 u32 status; 2131 } __packed; 2132 2133 /* 2134 * This is used by PE to Remove the key information on a given station. 2135 */ 2136 struct wcn36xx_hal_remove_sta_key_req_msg { 2137 struct wcn36xx_hal_msg_header header; 2138 2139 /* STA Index */ 2140 u16 sta_idx; 2141 2142 /* Encryption Type used with peer */ 2143 enum ani_ed_type enc_type; 2144 2145 /* Key Id */ 2146 u8 key_id; 2147 2148 /* Whether to invalidate the Broadcast key or Unicast key. In case 2149 * of WEP, the same key is used for both broadcast and unicast. */ 2150 u8 unicast; 2151 2152 } __packed; 2153 2154 struct wcn36xx_hal_remove_sta_key_rsp_msg { 2155 struct wcn36xx_hal_msg_header header; 2156 2157 /*success or failure */ 2158 u32 status; 2159 2160 } __packed; 2161 2162 #ifdef FEATURE_OEM_DATA_SUPPORT 2163 2164 #ifndef OEM_DATA_REQ_SIZE 2165 #define OEM_DATA_REQ_SIZE 134 2166 #endif 2167 2168 #ifndef OEM_DATA_RSP_SIZE 2169 #define OEM_DATA_RSP_SIZE 1968 2170 #endif 2171 2172 struct start_oem_data_req_msg { 2173 struct wcn36xx_hal_msg_header header; 2174 2175 u32 status; 2176 tSirMacAddr self_mac_addr; 2177 u8 oem_data_req[OEM_DATA_REQ_SIZE]; 2178 2179 }; 2180 2181 struct start_oem_data_rsp_msg { 2182 struct wcn36xx_hal_msg_header header; 2183 2184 u8 oem_data_rsp[OEM_DATA_RSP_SIZE]; 2185 }; 2186 2187 #endif 2188 2189 struct wcn36xx_hal_switch_channel_req_msg { 2190 struct wcn36xx_hal_msg_header header; 2191 2192 /* Channel number */ 2193 u8 channel_number; 2194 2195 /* Local power constraint */ 2196 u8 local_power_constraint; 2197 2198 /* Secondary channel offset */ 2199 enum phy_chan_bond_state secondary_channel_offset; 2200 2201 /* HAL fills in the tx power used for mgmt frames in this field. */ 2202 u8 tx_mgmt_power; 2203 2204 /* Max TX power */ 2205 u8 max_tx_power; 2206 2207 /* Self STA MAC */ 2208 u8 self_sta_mac_addr[ETH_ALEN]; 2209 2210 /* VO WIFI comment: BSSID needed to identify session. As the 2211 * request has power constraints, this should be applied only to 2212 * that session Since MTU timing and EDCA are sessionized, this 2213 * struct needs to be sessionized and bssid needs to be out of the 2214 * VOWifi feature flag V IMP: Keep bssId field at the end of this 2215 * msg. It is used to mantain backward compatbility by way of 2216 * ignoring if using new host/old FW or old host/new FW since it is 2217 * at the end of this struct 2218 */ 2219 u8 bssid[ETH_ALEN]; 2220 } __packed; 2221 2222 struct wcn36xx_hal_switch_channel_rsp_msg { 2223 struct wcn36xx_hal_msg_header header; 2224 2225 /* Status */ 2226 u32 status; 2227 2228 /* Channel number - same as in request */ 2229 u8 channel_number; 2230 2231 /* HAL fills in the tx power used for mgmt frames in this field */ 2232 u8 tx_mgmt_power; 2233 2234 /* BSSID needed to identify session - same as in request */ 2235 u8 bssid[ETH_ALEN]; 2236 2237 } __packed; 2238 2239 struct update_edca_params_req_msg { 2240 struct wcn36xx_hal_msg_header header; 2241 2242 /*BSS Index */ 2243 u16 bss_index; 2244 2245 /* Best Effort */ 2246 struct wcn36xx_hal_edca_param_record acbe; 2247 2248 /* Background */ 2249 struct wcn36xx_hal_edca_param_record acbk; 2250 2251 /* Video */ 2252 struct wcn36xx_hal_edca_param_record acvi; 2253 2254 /* Voice */ 2255 struct wcn36xx_hal_edca_param_record acvo; 2256 }; 2257 2258 struct update_edca_params_rsp_msg { 2259 struct wcn36xx_hal_msg_header header; 2260 2261 /* success or failure */ 2262 u32 status; 2263 }; 2264 2265 struct dpu_stats_params { 2266 /* Index of STA to which the statistics */ 2267 u16 sta_index; 2268 2269 /* Encryption mode */ 2270 u8 enc_mode; 2271 2272 /* status */ 2273 u32 status; 2274 2275 /* Statistics */ 2276 u32 send_blocks; 2277 u32 recv_blocks; 2278 u32 replays; 2279 u8 mic_error_cnt; 2280 u32 prot_excl_cnt; 2281 u16 format_err_cnt; 2282 u16 un_decryptable_cnt; 2283 u32 decrypt_err_cnt; 2284 u32 decrypt_ok_cnt; 2285 }; 2286 2287 struct wcn36xx_hal_stats_req_msg { 2288 struct wcn36xx_hal_msg_header header; 2289 2290 /* Valid STA Idx for per STA stats request */ 2291 u32 sta_id; 2292 2293 /* Categories of stats requested as specified in eHalStatsMask */ 2294 u32 stats_mask; 2295 }; 2296 2297 struct ani_summary_stats_info { 2298 /* Total number of packets(per AC) that were successfully 2299 * transmitted with retries */ 2300 u32 retry_cnt[4]; 2301 2302 /* The number of MSDU packets and MMPDU frames per AC that the 2303 * 802.11 station successfully transmitted after more than one 2304 * retransmission attempt */ 2305 u32 multiple_retry_cnt[4]; 2306 2307 /* Total number of packets(per AC) that were successfully 2308 * transmitted (with and without retries, including multi-cast, 2309 * broadcast) */ 2310 u32 tx_frm_cnt[4]; 2311 2312 /* Total number of packets that were successfully received (after 2313 * appropriate filter rules including multi-cast, broadcast) */ 2314 u32 rx_frm_cnt; 2315 2316 /* Total number of duplicate frames received successfully */ 2317 u32 frm_dup_cnt; 2318 2319 /* Total number packets(per AC) failed to transmit */ 2320 u32 fail_cnt[4]; 2321 2322 /* Total number of RTS/CTS sequence failures for transmission of a 2323 * packet */ 2324 u32 rts_fail_cnt; 2325 2326 /* Total number packets failed transmit because of no ACK from the 2327 * remote entity */ 2328 u32 ack_fail_cnt; 2329 2330 /* Total number of RTS/CTS sequence success for transmission of a 2331 * packet */ 2332 u32 rts_succ_cnt; 2333 2334 /* The sum of the receive error count and dropped-receive-buffer 2335 * error count. HAL will provide this as a sum of (FCS error) + 2336 * (Fail get BD/PDU in HW) */ 2337 u32 rx_discard_cnt; 2338 2339 /* 2340 * The receive error count. HAL will provide the RxP FCS error 2341 * global counter. */ 2342 u32 rx_error_cnt; 2343 2344 /* The sum of the transmit-directed byte count, transmit-multicast 2345 * byte count and transmit-broadcast byte count. HAL will sum TPE 2346 * UC/MC/BCAST global counters to provide this. */ 2347 u32 tx_byte_cnt; 2348 }; 2349 2350 /* defines tx_rate_flags */ 2351 enum tx_rate_info { 2352 /* Legacy rates */ 2353 HAL_TX_RATE_LEGACY = 0x1, 2354 2355 /* HT20 rates */ 2356 HAL_TX_RATE_HT20 = 0x2, 2357 2358 /* HT40 rates */ 2359 HAL_TX_RATE_HT40 = 0x4, 2360 2361 /* Rate with Short guard interval */ 2362 HAL_TX_RATE_SGI = 0x8, 2363 2364 /* Rate with Long guard interval */ 2365 HAL_TX_RATE_LGI = 0x10 2366 }; 2367 2368 struct ani_global_class_a_stats_info { 2369 /* The number of MPDU frames received by the 802.11 station for 2370 * MSDU packets or MMPDU frames */ 2371 u32 rx_frag_cnt; 2372 2373 /* The number of MPDU frames received by the 802.11 station for 2374 * MSDU packets or MMPDU frames when a promiscuous packet filter 2375 * was enabled */ 2376 u32 promiscuous_rx_frag_cnt; 2377 2378 /* The receiver input sensitivity referenced to a FER of 8% at an 2379 * MPDU length of 1024 bytes at the antenna connector. Each element 2380 * of the array shall correspond to a supported rate and the order 2381 * shall be the same as the supporteRates parameter. */ 2382 u32 rx_input_sensitivity; 2383 2384 /* The maximum transmit power in dBm upto one decimal. for eg: if 2385 * it is 10.5dBm, the value would be 105 */ 2386 u32 max_pwr; 2387 2388 /* Number of times the receiver failed to synchronize with the 2389 * incoming signal after detecting the sync in the preamble of the 2390 * transmitted PLCP protocol data unit. */ 2391 u32 sync_fail_cnt; 2392 2393 /* Legacy transmit rate, in units of 500 kbit/sec, for the most 2394 * recently transmitted frame */ 2395 u32 tx_rate; 2396 2397 /* mcs index for HT20 and HT40 rates */ 2398 u32 mcs_index; 2399 2400 /* to differentiate between HT20 and HT40 rates; short and long 2401 * guard interval */ 2402 u32 tx_rate_flags; 2403 }; 2404 2405 struct ani_global_security_stats { 2406 /* The number of unencrypted received MPDU frames that the MAC 2407 * layer discarded when the IEEE 802.11 dot11ExcludeUnencrypted 2408 * management information base (MIB) object is enabled */ 2409 u32 rx_wep_unencrypted_frm_cnt; 2410 2411 /* The number of received MSDU packets that that the 802.11 station 2412 * discarded because of MIC failures */ 2413 u32 rx_mic_fail_cnt; 2414 2415 /* The number of encrypted MPDU frames that the 802.11 station 2416 * failed to decrypt because of a TKIP ICV error */ 2417 u32 tkip_icv_err; 2418 2419 /* The number of received MPDU frames that the 802.11 discarded 2420 * because of an invalid AES-CCMP format */ 2421 u32 aes_ccmp_format_err; 2422 2423 /* The number of received MPDU frames that the 802.11 station 2424 * discarded because of the AES-CCMP replay protection procedure */ 2425 u32 aes_ccmp_replay_cnt; 2426 2427 /* The number of received MPDU frames that the 802.11 station 2428 * discarded because of errors detected by the AES-CCMP decryption 2429 * algorithm */ 2430 u32 aes_ccmp_decrpt_err; 2431 2432 /* The number of encrypted MPDU frames received for which a WEP 2433 * decryption key was not available on the 802.11 station */ 2434 u32 wep_undecryptable_cnt; 2435 2436 /* The number of encrypted MPDU frames that the 802.11 station 2437 * failed to decrypt because of a WEP ICV error */ 2438 u32 wep_icv_err; 2439 2440 /* The number of received encrypted packets that the 802.11 station 2441 * successfully decrypted */ 2442 u32 rx_decrypt_succ_cnt; 2443 2444 /* The number of encrypted packets that the 802.11 station failed 2445 * to decrypt */ 2446 u32 rx_decrypt_fail_cnt; 2447 }; 2448 2449 struct ani_global_class_b_stats_info { 2450 struct ani_global_security_stats uc_stats; 2451 struct ani_global_security_stats mc_bc_stats; 2452 }; 2453 2454 struct ani_global_class_c_stats_info { 2455 /* This counter shall be incremented for a received A-MSDU frame 2456 * with the stations MAC address in the address 1 field or an 2457 * A-MSDU frame with a group address in the address 1 field */ 2458 u32 rx_amsdu_cnt; 2459 2460 /* This counter shall be incremented when the MAC receives an AMPDU 2461 * from the PHY */ 2462 u32 rx_ampdu_cnt; 2463 2464 /* This counter shall be incremented when a Frame is transmitted 2465 * only on the primary channel */ 2466 u32 tx_20_frm_cnt; 2467 2468 /* This counter shall be incremented when a Frame is received only 2469 * on the primary channel */ 2470 u32 rx_20_frm_cnt; 2471 2472 /* This counter shall be incremented by the number of MPDUs 2473 * received in the A-MPDU when an A-MPDU is received */ 2474 u32 rx_mpdu_in_ampdu_cnt; 2475 2476 /* This counter shall be incremented when an MPDU delimiter has a 2477 * CRC error when this is the first CRC error in the received AMPDU 2478 * or when the previous delimiter has been decoded correctly */ 2479 u32 ampdu_delimiter_crc_err; 2480 }; 2481 2482 struct ani_per_sta_stats_info { 2483 /* The number of MPDU frames that the 802.11 station transmitted 2484 * and acknowledged through a received 802.11 ACK frame */ 2485 u32 tx_frag_cnt[4]; 2486 2487 /* This counter shall be incremented when an A-MPDU is transmitted */ 2488 u32 tx_ampdu_cnt; 2489 2490 /* This counter shall increment by the number of MPDUs in the AMPDU 2491 * when an A-MPDU is transmitted */ 2492 u32 tx_mpdu_in_ampdu_cnt; 2493 }; 2494 2495 struct wcn36xx_hal_stats_rsp_msg { 2496 struct wcn36xx_hal_msg_header header; 2497 2498 /* Success or Failure */ 2499 u32 status; 2500 2501 /* STA Idx */ 2502 u32 sta_index; 2503 2504 /* Categories of STATS being returned as per eHalStatsMask */ 2505 u32 stats_mask; 2506 2507 /* message type is same as the request type */ 2508 u16 msg_type; 2509 2510 /* length of the entire request, includes the pStatsBuf length too */ 2511 u16 msg_len; 2512 }; 2513 2514 struct wcn36xx_hal_set_link_state_req_msg { 2515 struct wcn36xx_hal_msg_header header; 2516 2517 u8 bssid[ETH_ALEN]; 2518 enum wcn36xx_hal_link_state state; 2519 u8 self_mac_addr[ETH_ALEN]; 2520 2521 } __packed; 2522 2523 struct set_link_state_rsp_msg { 2524 struct wcn36xx_hal_msg_header header; 2525 2526 /* success or failure */ 2527 u32 status; 2528 }; 2529 2530 /* TSPEC Params */ 2531 struct wcn36xx_hal_ts_info_tfc { 2532 #ifndef ANI_LITTLE_BIT_ENDIAN 2533 u16 ackPolicy:2; 2534 u16 userPrio:3; 2535 u16 psb:1; 2536 u16 aggregation:1; 2537 u16 accessPolicy:2; 2538 u16 direction:2; 2539 u16 tsid:4; 2540 u16 trafficType:1; 2541 #else 2542 u16 trafficType:1; 2543 u16 tsid:4; 2544 u16 direction:2; 2545 u16 accessPolicy:2; 2546 u16 aggregation:1; 2547 u16 psb:1; 2548 u16 userPrio:3; 2549 u16 ackPolicy:2; 2550 #endif 2551 }; 2552 2553 /* Flag to schedule the traffic type */ 2554 struct wcn36xx_hal_ts_info_sch { 2555 #ifndef ANI_LITTLE_BIT_ENDIAN 2556 u8 rsvd:7; 2557 u8 schedule:1; 2558 #else 2559 u8 schedule:1; 2560 u8 rsvd:7; 2561 #endif 2562 }; 2563 2564 /* Traffic and scheduling info */ 2565 struct wcn36xx_hal_ts_info { 2566 struct wcn36xx_hal_ts_info_tfc traffic; 2567 struct wcn36xx_hal_ts_info_sch schedule; 2568 }; 2569 2570 /* Information elements */ 2571 struct wcn36xx_hal_tspec_ie { 2572 u8 type; 2573 u8 length; 2574 struct wcn36xx_hal_ts_info ts_info; 2575 u16 nom_msdu_size; 2576 u16 max_msdu_size; 2577 u32 min_svc_interval; 2578 u32 max_svc_interval; 2579 u32 inact_interval; 2580 u32 suspend_interval; 2581 u32 svc_start_time; 2582 u32 min_data_rate; 2583 u32 mean_data_rate; 2584 u32 peak_data_rate; 2585 u32 max_burst_sz; 2586 u32 delay_bound; 2587 u32 min_phy_rate; 2588 u16 surplus_bw; 2589 u16 medium_time; 2590 }; 2591 2592 struct add_ts_req_msg { 2593 struct wcn36xx_hal_msg_header header; 2594 2595 /* Station Index */ 2596 u16 sta_index; 2597 2598 /* TSPEC handler uniquely identifying a TSPEC for a STA in a BSS */ 2599 u16 tspec_index; 2600 2601 /* To program TPE with required parameters */ 2602 struct wcn36xx_hal_tspec_ie tspec; 2603 2604 /* U-APSD Flags: 1b per AC. Encoded as follows: 2605 b7 b6 b5 b4 b3 b2 b1 b0 = 2606 X X X X BE BK VI VO */ 2607 u8 uapsd; 2608 2609 /* These parameters are for all the access categories */ 2610 2611 /* Service Interval */ 2612 u32 service_interval[WCN36XX_HAL_MAX_AC]; 2613 2614 /* Suspend Interval */ 2615 u32 suspend_interval[WCN36XX_HAL_MAX_AC]; 2616 2617 /* Delay Interval */ 2618 u32 delay_interval[WCN36XX_HAL_MAX_AC]; 2619 }; 2620 2621 struct add_rs_rsp_msg { 2622 struct wcn36xx_hal_msg_header header; 2623 2624 /* success or failure */ 2625 u32 status; 2626 }; 2627 2628 struct del_ts_req_msg { 2629 struct wcn36xx_hal_msg_header header; 2630 2631 /* Station Index */ 2632 u16 sta_index; 2633 2634 /* TSPEC identifier uniquely identifying a TSPEC for a STA in a BSS */ 2635 u16 tspec_index; 2636 2637 /* To lookup station id using the mac address */ 2638 u8 bssid[ETH_ALEN]; 2639 }; 2640 2641 struct del_ts_rsp_msg { 2642 struct wcn36xx_hal_msg_header header; 2643 2644 /* success or failure */ 2645 u32 status; 2646 }; 2647 2648 /* End of TSpec Parameters */ 2649 2650 /* Start of BLOCK ACK related Parameters */ 2651 2652 struct wcn36xx_hal_add_ba_session_req_msg { 2653 struct wcn36xx_hal_msg_header header; 2654 2655 /* Station Index */ 2656 u16 sta_index; 2657 2658 /* Peer MAC Address */ 2659 u8 mac_addr[ETH_ALEN]; 2660 2661 /* ADDBA Action Frame dialog token 2662 HAL will not interpret this object */ 2663 u8 dialog_token; 2664 2665 /* TID for which the BA is being setup 2666 This identifies the TC or TS of interest */ 2667 u8 tid; 2668 2669 /* 0 - Delayed BA (Not supported) 2670 1 - Immediate BA */ 2671 u8 policy; 2672 2673 /* Indicates the number of buffers for this TID (baTID) 2674 NOTE - This is the requested buffer size. When this 2675 is processed by HAL and subsequently by HDD, it is 2676 possible that HDD may change this buffer size. Any 2677 change in the buffer size should be noted by PE and 2678 advertized appropriately in the ADDBA response */ 2679 u16 buffer_size; 2680 2681 /* BA timeout in TU's 0 means no timeout will occur */ 2682 u16 timeout; 2683 2684 /* b0..b3 - Fragment Number - Always set to 0 2685 b4..b15 - Starting Sequence Number of first MSDU 2686 for which this BA is setup */ 2687 u16 ssn; 2688 2689 /* ADDBA direction 2690 1 - Originator 2691 0 - Recipient */ 2692 u8 direction; 2693 } __packed; 2694 2695 struct wcn36xx_hal_add_ba_session_rsp_msg { 2696 struct wcn36xx_hal_msg_header header; 2697 2698 /* success or failure */ 2699 u32 status; 2700 2701 /* Dialog token */ 2702 u8 dialog_token; 2703 2704 /* TID for which the BA session has been setup */ 2705 u8 ba_tid; 2706 2707 /* BA Buffer Size allocated for the current BA session */ 2708 u8 ba_buffer_size; 2709 2710 u8 ba_session_id; 2711 2712 /* Reordering Window buffer */ 2713 u8 win_size; 2714 2715 /* Station Index to id the sta */ 2716 u8 sta_index; 2717 2718 /* Starting Sequence Number */ 2719 u16 ssn; 2720 } __packed; 2721 2722 struct wcn36xx_hal_add_ba_req_msg { 2723 struct wcn36xx_hal_msg_header header; 2724 2725 /* Session Id */ 2726 u8 session_id; 2727 2728 /* Reorder Window Size */ 2729 u8 win_size; 2730 /* Old FW 1.2.2.4 does not support this*/ 2731 #ifdef FEATURE_ON_CHIP_REORDERING 2732 u8 reordering_done_on_chip; 2733 #endif 2734 } __packed; 2735 2736 struct wcn36xx_hal_add_ba_rsp_msg { 2737 struct wcn36xx_hal_msg_header header; 2738 2739 /* success or failure */ 2740 u32 status; 2741 2742 /* Dialog token */ 2743 u8 dialog_token; 2744 } __packed; 2745 2746 struct add_ba_info { 2747 u16 ba_enable:1; 2748 u16 starting_seq_num:12; 2749 u16 reserved:3; 2750 }; 2751 2752 struct wcn36xx_hal_trigger_ba_rsp_candidate { 2753 u8 sta_addr[ETH_ALEN]; 2754 struct add_ba_info ba_info[STACFG_MAX_TC]; 2755 } __packed; 2756 2757 struct wcn36xx_hal_trigger_ba_req_candidate { 2758 u8 sta_index; 2759 u8 tid_bitmap; 2760 } __packed; 2761 2762 struct wcn36xx_hal_trigger_ba_req_msg { 2763 struct wcn36xx_hal_msg_header header; 2764 2765 /* Session Id */ 2766 u8 session_id; 2767 2768 /* baCandidateCnt is followed by trigger BA 2769 * Candidate List(tTriggerBaCandidate) 2770 */ 2771 u16 candidate_cnt; 2772 2773 } __packed; 2774 2775 struct wcn36xx_hal_trigger_ba_rsp_msg { 2776 struct wcn36xx_hal_msg_header header; 2777 2778 /* TO SUPPORT BT-AMP */ 2779 u8 bssid[ETH_ALEN]; 2780 2781 /* success or failure */ 2782 u32 status; 2783 2784 /* baCandidateCnt is followed by trigger BA 2785 * Rsp Candidate List(tTriggerRspBaCandidate) 2786 */ 2787 u16 candidate_cnt; 2788 } __packed; 2789 2790 struct wcn36xx_hal_del_ba_req_msg { 2791 struct wcn36xx_hal_msg_header header; 2792 2793 /* Station Index */ 2794 u16 sta_index; 2795 2796 /* TID for which the BA session is being deleted */ 2797 u8 tid; 2798 2799 /* DELBA direction 2800 1 - Originator 2801 0 - Recipient */ 2802 u8 direction; 2803 } __packed; 2804 2805 struct wcn36xx_hal_del_ba_rsp_msg { 2806 struct wcn36xx_hal_msg_header header; 2807 2808 /* success or failure */ 2809 u32 status; 2810 } __packed; 2811 2812 struct tsm_stats_req_msg { 2813 struct wcn36xx_hal_msg_header header; 2814 2815 /* Traffic Id */ 2816 u8 tid; 2817 2818 u8 bssid[ETH_ALEN]; 2819 }; 2820 2821 struct tsm_stats_rsp_msg { 2822 struct wcn36xx_hal_msg_header header; 2823 2824 /*success or failure */ 2825 u32 status; 2826 2827 /* Uplink Packet Queue delay */ 2828 u16 uplink_pkt_queue_delay; 2829 2830 /* Uplink Packet Queue delay histogram */ 2831 u16 uplink_pkt_queue_delay_hist[4]; 2832 2833 /* Uplink Packet Transmit delay */ 2834 u32 uplink_pkt_tx_delay; 2835 2836 /* Uplink Packet loss */ 2837 u16 uplink_pkt_loss; 2838 2839 /* Uplink Packet count */ 2840 u16 uplink_pkt_count; 2841 2842 /* Roaming count */ 2843 u8 roaming_count; 2844 2845 /* Roaming Delay */ 2846 u16 roaming_delay; 2847 }; 2848 2849 struct set_key_done_msg { 2850 struct wcn36xx_hal_msg_header header; 2851 2852 /*bssid of the keys */ 2853 u8 bssidx; 2854 u8 enc_type; 2855 }; 2856 2857 struct wcn36xx_hal_nv_img_download_req_msg { 2858 /* Note: The length specified in wcn36xx_hal_nv_img_download_req_msg 2859 * messages should be 2860 * header.len = sizeof(wcn36xx_hal_nv_img_download_req_msg) + 2861 * nv_img_buffer_size */ 2862 struct wcn36xx_hal_msg_header header; 2863 2864 /* Fragment sequence number of the NV Image. Note that NV Image 2865 * might not fit into one message due to size limitation of the SMD 2866 * channel FIFO. UMAC can hence choose to chop the NV blob into 2867 * multiple fragments starting with seqeunce number 0, 1, 2 etc. 2868 * The last fragment MUST be indicated by marking the 2869 * isLastFragment field to 1. Note that all the NV blobs would be 2870 * concatenated together by HAL without any padding bytes in 2871 * between.*/ 2872 u16 frag_number; 2873 2874 /* Is this the last fragment? When set to 1 it indicates that no 2875 * more fragments will be sent by UMAC and HAL can concatenate all 2876 * the NV blobs rcvd & proceed with the parsing. HAL would generate 2877 * a WCN36XX_HAL_DOWNLOAD_NV_RSP to the WCN36XX_HAL_DOWNLOAD_NV_REQ 2878 * after it receives each fragment */ 2879 u16 last_fragment; 2880 2881 /* NV Image size (number of bytes) */ 2882 u32 nv_img_buffer_size; 2883 2884 /* Following the 'nv_img_buffer_size', there should be 2885 * nv_img_buffer_size bytes of NV Image i.e. 2886 * u8[nv_img_buffer_size] */ 2887 } __packed; 2888 2889 struct wcn36xx_hal_nv_img_download_rsp_msg { 2890 struct wcn36xx_hal_msg_header header; 2891 2892 /* Success or Failure. HAL would generate a 2893 * WCN36XX_HAL_DOWNLOAD_NV_RSP after each fragment */ 2894 u32 status; 2895 } __packed; 2896 2897 struct wcn36xx_hal_nv_store_ind { 2898 /* Note: The length specified in tHalNvStoreInd messages should be 2899 * header.msgLen = sizeof(tHalNvStoreInd) + nvBlobSize */ 2900 struct wcn36xx_hal_msg_header header; 2901 2902 /* NV Item */ 2903 u32 table_id; 2904 2905 /* Size of NV Blob */ 2906 u32 nv_blob_size; 2907 2908 /* Following the 'nvBlobSize', there should be nvBlobSize bytes of 2909 * NV blob i.e. u8[nvBlobSize] */ 2910 }; 2911 2912 /* End of Block Ack Related Parameters */ 2913 2914 #define WCN36XX_HAL_CIPHER_SEQ_CTR_SIZE 6 2915 2916 /* Definition for MIC failure indication MAC reports this each time a MIC 2917 * failure occures on Rx TKIP packet 2918 */ 2919 struct mic_failure_ind_msg { 2920 struct wcn36xx_hal_msg_header header; 2921 2922 u8 bssid[ETH_ALEN]; 2923 2924 /* address used to compute MIC */ 2925 u8 src_addr[ETH_ALEN]; 2926 2927 /* transmitter address */ 2928 u8 ta_addr[ETH_ALEN]; 2929 2930 u8 dst_addr[ETH_ALEN]; 2931 2932 u8 multicast; 2933 2934 /* first byte of IV */ 2935 u8 iv1; 2936 2937 /* second byte of IV */ 2938 u8 key_id; 2939 2940 /* sequence number */ 2941 u8 tsc[WCN36XX_HAL_CIPHER_SEQ_CTR_SIZE]; 2942 2943 /* receive address */ 2944 u8 rx_addr[ETH_ALEN]; 2945 }; 2946 2947 struct update_vht_op_mode_req_msg { 2948 struct wcn36xx_hal_msg_header header; 2949 2950 u16 op_mode; 2951 u16 sta_id; 2952 }; 2953 2954 struct update_vht_op_mode_params_rsp_msg { 2955 struct wcn36xx_hal_msg_header header; 2956 2957 u32 status; 2958 }; 2959 2960 struct update_beacon_req_msg { 2961 struct wcn36xx_hal_msg_header header; 2962 2963 u8 bss_index; 2964 2965 /* shortPreamble mode. HAL should update all the STA rates when it 2966 * receives this message */ 2967 u8 short_preamble; 2968 2969 /* short Slot time. */ 2970 u8 short_slot_time; 2971 2972 /* Beacon Interval */ 2973 u16 beacon_interval; 2974 2975 /* Protection related */ 2976 u8 lla_coexist; 2977 u8 llb_coexist; 2978 u8 llg_coexist; 2979 u8 ht20_coexist; 2980 u8 lln_non_gf_coexist; 2981 u8 lsig_tx_op_protection_full_support; 2982 u8 rifs_mode; 2983 2984 u16 param_change_bitmap; 2985 }; 2986 2987 struct update_beacon_rsp_msg { 2988 struct wcn36xx_hal_msg_header header; 2989 u32 status; 2990 }; 2991 2992 struct wcn36xx_hal_send_beacon_req_msg { 2993 struct wcn36xx_hal_msg_header header; 2994 2995 /* length of the template + 6. Only qcom knows why */ 2996 u32 beacon_length6; 2997 2998 /* length of the template. */ 2999 u32 beacon_length; 3000 3001 /* Beacon data. */ 3002 u8 beacon[BEACON_TEMPLATE_SIZE - sizeof(u32)]; 3003 3004 u8 bssid[ETH_ALEN]; 3005 3006 /* TIM IE offset from the beginning of the template. */ 3007 u32 tim_ie_offset; 3008 3009 /* P2P IE offset from the begining of the template */ 3010 u16 p2p_ie_offset; 3011 } __packed; 3012 3013 struct send_beacon_rsp_msg { 3014 struct wcn36xx_hal_msg_header header; 3015 u32 status; 3016 } __packed; 3017 3018 struct enable_radar_req_msg { 3019 struct wcn36xx_hal_msg_header header; 3020 3021 u8 bssid[ETH_ALEN]; 3022 u8 channel; 3023 }; 3024 3025 struct enable_radar_rsp_msg { 3026 struct wcn36xx_hal_msg_header header; 3027 3028 /* Link Parameters */ 3029 u8 bssid[ETH_ALEN]; 3030 3031 /* success or failure */ 3032 u32 status; 3033 }; 3034 3035 struct radar_detect_intr_ind_msg { 3036 struct wcn36xx_hal_msg_header header; 3037 3038 u8 radar_det_channel; 3039 }; 3040 3041 struct radar_detect_ind_msg { 3042 struct wcn36xx_hal_msg_header header; 3043 3044 /* channel number in which the RADAR detected */ 3045 u8 channel_number; 3046 3047 /* RADAR pulse width in usecond */ 3048 u16 radar_pulse_width; 3049 3050 /* Number of RADAR pulses */ 3051 u16 num_radar_pulse; 3052 }; 3053 3054 struct wcn36xx_hal_get_tpc_report_req_msg { 3055 struct wcn36xx_hal_msg_header header; 3056 3057 u8 sta[ETH_ALEN]; 3058 u8 dialog_token; 3059 u8 txpower; 3060 }; 3061 3062 struct wcn36xx_hal_get_tpc_report_rsp_msg { 3063 struct wcn36xx_hal_msg_header header; 3064 3065 /* success or failure */ 3066 u32 status; 3067 }; 3068 3069 struct wcn36xx_hal_send_probe_resp_req_msg { 3070 struct wcn36xx_hal_msg_header header; 3071 3072 u8 probe_resp_template[BEACON_TEMPLATE_SIZE]; 3073 u32 probe_resp_template_len; 3074 u32 proxy_probe_req_valid_ie_bmap[8]; 3075 u8 bssid[ETH_ALEN]; 3076 }; 3077 3078 struct send_probe_resp_rsp_msg { 3079 struct wcn36xx_hal_msg_header header; 3080 3081 /* success or failure */ 3082 u32 status; 3083 }; 3084 3085 struct send_unknown_frame_rx_ind_msg { 3086 struct wcn36xx_hal_msg_header header; 3087 3088 /* success or failure */ 3089 u32 status; 3090 }; 3091 3092 struct wcn36xx_hal_delete_sta_context_ind_msg { 3093 struct wcn36xx_hal_msg_header header; 3094 3095 u16 aid; 3096 u16 sta_id; 3097 3098 /* TO SUPPORT BT-AMP */ 3099 u8 bssid[ETH_ALEN]; 3100 3101 /* HAL copies bssid from the sta table. */ 3102 u8 addr2[ETH_ALEN]; 3103 3104 /* To unify the keepalive / unknown A2 / tim-based disa */ 3105 u16 reason_code; 3106 } __packed; 3107 3108 struct indicate_del_sta { 3109 struct wcn36xx_hal_msg_header header; 3110 u8 aid; 3111 u8 sta_index; 3112 u8 bss_index; 3113 u8 reason_code; 3114 u32 status; 3115 }; 3116 3117 struct bt_amp_event_msg { 3118 struct wcn36xx_hal_msg_header header; 3119 3120 enum bt_amp_event_type btAmpEventType; 3121 }; 3122 3123 struct bt_amp_event_rsp { 3124 struct wcn36xx_hal_msg_header header; 3125 3126 /* success or failure */ 3127 u32 status; 3128 }; 3129 3130 struct tl_hal_flush_ac_req_msg { 3131 struct wcn36xx_hal_msg_header header; 3132 3133 /* Station Index. originates from HAL */ 3134 u8 sta_id; 3135 3136 /* TID for which the transmit queue is being flushed */ 3137 u8 tid; 3138 }; 3139 3140 struct tl_hal_flush_ac_rsp_msg { 3141 struct wcn36xx_hal_msg_header header; 3142 3143 /* Station Index. originates from HAL */ 3144 u8 sta_id; 3145 3146 /* TID for which the transmit queue is being flushed */ 3147 u8 tid; 3148 3149 /* success or failure */ 3150 u32 status; 3151 }; 3152 3153 struct wcn36xx_hal_enter_imps_req_msg { 3154 struct wcn36xx_hal_msg_header header; 3155 }; 3156 3157 struct wcn36xx_hal_exit_imps_req { 3158 struct wcn36xx_hal_msg_header header; 3159 }; 3160 3161 struct wcn36xx_hal_enter_bmps_req_msg { 3162 struct wcn36xx_hal_msg_header header; 3163 3164 u8 bss_index; 3165 3166 /* TBTT value derived from the last beacon */ 3167 #ifndef BUILD_QWPTTSTATIC 3168 u64 tbtt; 3169 #endif 3170 u8 dtim_count; 3171 3172 /* DTIM period given to HAL during association may not be valid, if 3173 * association is based on ProbeRsp instead of beacon. */ 3174 u8 dtim_period; 3175 3176 /* For CCX and 11R Roaming */ 3177 u32 rssi_filter_period; 3178 3179 u32 num_beacon_per_rssi_average; 3180 u8 rssi_filter_enable; 3181 } __packed; 3182 3183 struct wcn36xx_hal_exit_bmps_req_msg { 3184 struct wcn36xx_hal_msg_header header; 3185 3186 u8 send_data_null; 3187 u8 bss_index; 3188 } __packed; 3189 3190 struct wcn36xx_hal_missed_beacon_ind_msg { 3191 struct wcn36xx_hal_msg_header header; 3192 3193 u8 bss_index; 3194 } __packed; 3195 3196 /* Beacon Filtering data structures */ 3197 3198 /* The above structure would be followed by multiple of below mentioned 3199 * structure 3200 */ 3201 struct beacon_filter_ie { 3202 u8 element_id; 3203 u8 check_ie_presence; 3204 u8 offset; 3205 u8 value; 3206 u8 bitmask; 3207 u8 ref; 3208 }; 3209 3210 struct wcn36xx_hal_add_bcn_filter_req_msg { 3211 struct wcn36xx_hal_msg_header header; 3212 3213 u16 capability_info; 3214 u16 capability_mask; 3215 u16 beacon_interval; 3216 u16 ie_num; 3217 u8 bss_index; 3218 u8 reserved; 3219 }; 3220 3221 struct wcn36xx_hal_rem_bcn_filter_req { 3222 struct wcn36xx_hal_msg_header header; 3223 3224 u8 ie_Count; 3225 u8 rem_ie_id[1]; 3226 }; 3227 3228 #define WCN36XX_HAL_IPV4_ARP_REPLY_OFFLOAD 0 3229 #define WCN36XX_HAL_IPV6_NEIGHBOR_DISCOVERY_OFFLOAD 1 3230 #define WCN36XX_HAL_IPV6_NS_OFFLOAD 2 3231 #define WCN36XX_HAL_IPV6_ADDR_LEN 16 3232 #define WCN36XX_HAL_OFFLOAD_DISABLE 0 3233 #define WCN36XX_HAL_OFFLOAD_ENABLE 1 3234 #define WCN36XX_HAL_OFFLOAD_BCAST_FILTER_ENABLE 0x2 3235 #define WCN36XX_HAL_OFFLOAD_ARP_AND_BCAST_FILTER_ENABLE \ 3236 (HAL_OFFLOAD_ENABLE|HAL_OFFLOAD_BCAST_FILTER_ENABLE) 3237 3238 struct wcn36xx_hal_ns_offload_params { 3239 u8 src_ipv6_addr[WCN36XX_HAL_IPV6_ADDR_LEN]; 3240 u8 self_ipv6_addr[WCN36XX_HAL_IPV6_ADDR_LEN]; 3241 3242 /* Only support 2 possible Network Advertisement IPv6 address */ 3243 u8 target_ipv6_addr1[WCN36XX_HAL_IPV6_ADDR_LEN]; 3244 u8 target_ipv6_addr2[WCN36XX_HAL_IPV6_ADDR_LEN]; 3245 3246 u8 self_addr[ETH_ALEN]; 3247 u8 src_ipv6_addr_valid:1; 3248 u8 target_ipv6_addr1_valid:1; 3249 u8 target_ipv6_addr2_valid:1; 3250 u8 reserved1:5; 3251 3252 /* make it DWORD aligned */ 3253 u8 reserved2; 3254 3255 /* slot index for this offload */ 3256 u32 slot_index; 3257 u8 bss_index; 3258 }; 3259 3260 struct wcn36xx_hal_host_offload_req { 3261 u8 offload_Type; 3262 3263 /* enable or disable */ 3264 u8 enable; 3265 3266 union { 3267 u8 host_ipv4_addr[4]; 3268 u8 host_ipv6_addr[WCN36XX_HAL_IPV6_ADDR_LEN]; 3269 } u; 3270 }; 3271 3272 struct wcn36xx_hal_host_offload_req_msg { 3273 struct wcn36xx_hal_msg_header header; 3274 struct wcn36xx_hal_host_offload_req host_offload_params; 3275 struct wcn36xx_hal_ns_offload_params ns_offload_params; 3276 }; 3277 3278 /* Packet Types. */ 3279 #define WCN36XX_HAL_KEEP_ALIVE_NULL_PKT 1 3280 #define WCN36XX_HAL_KEEP_ALIVE_UNSOLICIT_ARP_RSP 2 3281 3282 /* Enable or disable keep alive */ 3283 #define WCN36XX_HAL_KEEP_ALIVE_DISABLE 0 3284 #define WCN36XX_HAL_KEEP_ALIVE_ENABLE 1 3285 #define WCN36XX_KEEP_ALIVE_TIME_PERIOD 30 /* unit: s */ 3286 3287 /* Keep Alive request. */ 3288 struct wcn36xx_hal_keep_alive_req_msg { 3289 struct wcn36xx_hal_msg_header header; 3290 3291 u8 packet_type; 3292 u32 time_period; 3293 u8 host_ipv4_addr[WCN36XX_HAL_IPV4_ADDR_LEN]; 3294 u8 dest_ipv4_addr[WCN36XX_HAL_IPV4_ADDR_LEN]; 3295 u8 dest_addr[ETH_ALEN]; 3296 u8 bss_index; 3297 } __packed; 3298 3299 struct wcn36xx_hal_rssi_threshold_req_msg { 3300 struct wcn36xx_hal_msg_header header; 3301 3302 s8 threshold1:8; 3303 s8 threshold2:8; 3304 s8 threshold3:8; 3305 u8 thres1_pos_notify:1; 3306 u8 thres1_neg_notify:1; 3307 u8 thres2_pos_notify:1; 3308 u8 thres2_neg_notify:1; 3309 u8 thres3_pos_notify:1; 3310 u8 thres3_neg_notify:1; 3311 u8 reserved10:2; 3312 }; 3313 3314 struct wcn36xx_hal_enter_uapsd_req_msg { 3315 struct wcn36xx_hal_msg_header header; 3316 3317 u8 bk_delivery:1; 3318 u8 be_delivery:1; 3319 u8 vi_delivery:1; 3320 u8 vo_delivery:1; 3321 u8 bk_trigger:1; 3322 u8 be_trigger:1; 3323 u8 vi_trigger:1; 3324 u8 vo_trigger:1; 3325 u8 bss_index; 3326 }; 3327 3328 struct wcn36xx_hal_exit_uapsd_req_msg { 3329 struct wcn36xx_hal_msg_header header; 3330 u8 bss_index; 3331 }; 3332 3333 #define WCN36XX_HAL_WOWL_BCAST_PATTERN_MAX_SIZE 128 3334 #define WCN36XX_HAL_WOWL_BCAST_MAX_NUM_PATTERNS 16 3335 3336 struct wcn36xx_hal_wowl_add_bcast_ptrn_req_msg { 3337 struct wcn36xx_hal_msg_header header; 3338 3339 /* Pattern ID */ 3340 u8 id; 3341 3342 /* Pattern byte offset from beginning of the 802.11 packet to start 3343 * of the wake-up pattern */ 3344 u8 byte_Offset; 3345 3346 /* Non-Zero Pattern size */ 3347 u8 size; 3348 3349 /* Pattern */ 3350 u8 pattern[WCN36XX_HAL_WOWL_BCAST_PATTERN_MAX_SIZE]; 3351 3352 /* Non-zero pattern mask size */ 3353 u8 mask_size; 3354 3355 /* Pattern mask */ 3356 u8 mask[WCN36XX_HAL_WOWL_BCAST_PATTERN_MAX_SIZE]; 3357 3358 /* Extra pattern */ 3359 u8 extra[WCN36XX_HAL_WOWL_BCAST_PATTERN_MAX_SIZE]; 3360 3361 /* Extra pattern mask */ 3362 u8 mask_extra[WCN36XX_HAL_WOWL_BCAST_PATTERN_MAX_SIZE]; 3363 3364 u8 bss_index; 3365 }; 3366 3367 struct wcn36xx_hal_wow_del_bcast_ptrn_req_msg { 3368 struct wcn36xx_hal_msg_header header; 3369 3370 /* Pattern ID of the wakeup pattern to be deleted */ 3371 u8 id; 3372 u8 bss_index; 3373 }; 3374 3375 struct wcn36xx_hal_wowl_enter_req_msg { 3376 struct wcn36xx_hal_msg_header header; 3377 3378 /* Enables/disables magic packet filtering */ 3379 u8 magic_packet_enable; 3380 3381 /* Magic pattern */ 3382 u8 magic_pattern[ETH_ALEN]; 3383 3384 /* Enables/disables packet pattern filtering in firmware. Enabling 3385 * this flag enables broadcast pattern matching in Firmware. If 3386 * unicast pattern matching is also desired, 3387 * ucUcastPatternFilteringEnable flag must be set tot true as well 3388 */ 3389 u8 pattern_filtering_enable; 3390 3391 /* Enables/disables unicast packet pattern filtering. This flag 3392 * specifies whether we want to do pattern match on unicast packets 3393 * as well and not just broadcast packets. This flag has no effect 3394 * if the ucPatternFilteringEnable (main controlling flag) is set 3395 * to false 3396 */ 3397 u8 ucast_pattern_filtering_enable; 3398 3399 /* This configuration is valid only when magicPktEnable=1. It 3400 * requests hardware to wake up when it receives the Channel Switch 3401 * Action Frame. 3402 */ 3403 u8 wow_channel_switch_receive; 3404 3405 /* This configuration is valid only when magicPktEnable=1. It 3406 * requests hardware to wake up when it receives the 3407 * Deauthentication Frame. 3408 */ 3409 u8 wow_deauth_receive; 3410 3411 /* This configuration is valid only when magicPktEnable=1. It 3412 * requests hardware to wake up when it receives the Disassociation 3413 * Frame. 3414 */ 3415 u8 wow_disassoc_receive; 3416 3417 /* This configuration is valid only when magicPktEnable=1. It 3418 * requests hardware to wake up when it has missed consecutive 3419 * beacons. This is a hardware register configuration (NOT a 3420 * firmware configuration). 3421 */ 3422 u8 wow_max_missed_beacons; 3423 3424 /* This configuration is valid only when magicPktEnable=1. This is 3425 * a timeout value in units of microsec. It requests hardware to 3426 * unconditionally wake up after it has stayed in WoWLAN mode for 3427 * some time. Set 0 to disable this feature. 3428 */ 3429 u8 wow_max_sleep; 3430 3431 /* This configuration directs the WoW packet filtering to look for 3432 * EAP-ID requests embedded in EAPOL frames and use this as a wake 3433 * source. 3434 */ 3435 u8 wow_eap_id_request_enable; 3436 3437 /* This configuration directs the WoW packet filtering to look for 3438 * EAPOL-4WAY requests and use this as a wake source. 3439 */ 3440 u8 wow_eapol_4way_enable; 3441 3442 /* This configuration allows a host wakeup on an network scan 3443 * offload match. 3444 */ 3445 u8 wow_net_scan_offload_match; 3446 3447 /* This configuration allows a host wakeup on any GTK rekeying 3448 * error. 3449 */ 3450 u8 wow_gtk_rekey_error; 3451 3452 /* This configuration allows a host wakeup on BSS connection loss. 3453 */ 3454 u8 wow_bss_connection_loss; 3455 3456 u8 bss_index; 3457 }; 3458 3459 struct wcn36xx_hal_wowl_exit_req_msg { 3460 struct wcn36xx_hal_msg_header header; 3461 3462 u8 bss_index; 3463 }; 3464 3465 struct wcn36xx_hal_get_rssi_req_msg { 3466 struct wcn36xx_hal_msg_header header; 3467 }; 3468 3469 struct wcn36xx_hal_get_roam_rssi_req_msg { 3470 struct wcn36xx_hal_msg_header header; 3471 3472 /* Valid STA Idx for per STA stats request */ 3473 u32 sta_id; 3474 }; 3475 3476 struct wcn36xx_hal_set_uapsd_ac_params_req_msg { 3477 struct wcn36xx_hal_msg_header header; 3478 3479 /* STA index */ 3480 u8 sta_idx; 3481 3482 /* Access Category */ 3483 u8 ac; 3484 3485 /* User Priority */ 3486 u8 up; 3487 3488 /* Service Interval */ 3489 u32 service_interval; 3490 3491 /* Suspend Interval */ 3492 u32 suspend_interval; 3493 3494 /* Delay Interval */ 3495 u32 delay_interval; 3496 }; 3497 3498 struct wcn36xx_hal_configure_rxp_filter_req_msg { 3499 struct wcn36xx_hal_msg_header header; 3500 3501 u8 set_mcst_bcst_filter_setting; 3502 u8 set_mcst_bcst_filter; 3503 }; 3504 3505 struct wcn36xx_hal_enter_imps_rsp_msg { 3506 struct wcn36xx_hal_msg_header header; 3507 3508 /* success or failure */ 3509 u32 status; 3510 }; 3511 3512 struct wcn36xx_hal_exit_imps_rsp_msg { 3513 struct wcn36xx_hal_msg_header header; 3514 3515 /* success or failure */ 3516 u32 status; 3517 }; 3518 3519 struct wcn36xx_hal_enter_bmps_rsp_msg { 3520 struct wcn36xx_hal_msg_header header; 3521 3522 /* success or failure */ 3523 u32 status; 3524 3525 u8 bss_index; 3526 } __packed; 3527 3528 struct wcn36xx_hal_exit_bmps_rsp_msg { 3529 struct wcn36xx_hal_msg_header header; 3530 3531 /* success or failure */ 3532 u32 status; 3533 3534 u8 bss_index; 3535 } __packed; 3536 3537 struct wcn36xx_hal_enter_uapsd_rsp_msg { 3538 struct wcn36xx_hal_msg_header header; 3539 3540 /* success or failure */ 3541 u32 status; 3542 3543 u8 bss_index; 3544 }; 3545 3546 struct wcn36xx_hal_exit_uapsd_rsp_msg { 3547 struct wcn36xx_hal_msg_header header; 3548 3549 /* success or failure */ 3550 u32 status; 3551 3552 u8 bss_index; 3553 }; 3554 3555 struct wcn36xx_hal_rssi_notification_ind_msg { 3556 struct wcn36xx_hal_msg_header header; 3557 3558 u32 rssi_thres1_pos_cross:1; 3559 u32 rssi_thres1_neg_cross:1; 3560 u32 rssi_thres2_pos_cross:1; 3561 u32 rssi_thres2_neg_cross:1; 3562 u32 rssi_thres3_pos_cross:1; 3563 u32 rssi_thres3_neg_cross:1; 3564 u32 avg_rssi:8; 3565 u32 reserved:18; 3566 3567 }; 3568 3569 struct wcn36xx_hal_get_rssio_rsp_msg { 3570 struct wcn36xx_hal_msg_header header; 3571 3572 /* success or failure */ 3573 u32 status; 3574 s8 rssi; 3575 3576 }; 3577 3578 struct wcn36xx_hal_get_roam_rssi_rsp_msg { 3579 struct wcn36xx_hal_msg_header header; 3580 3581 /* success or failure */ 3582 u32 status; 3583 3584 u8 sta_id; 3585 s8 rssi; 3586 }; 3587 3588 struct wcn36xx_hal_wowl_enter_rsp_msg { 3589 struct wcn36xx_hal_msg_header header; 3590 3591 /* success or failure */ 3592 u32 status; 3593 u8 bss_index; 3594 }; 3595 3596 struct wcn36xx_hal_wowl_exit_rsp_msg { 3597 struct wcn36xx_hal_msg_header header; 3598 3599 /* success or failure */ 3600 u32 status; 3601 u8 bss_index; 3602 }; 3603 3604 struct wcn36xx_hal_add_bcn_filter_rsp_msg { 3605 struct wcn36xx_hal_msg_header header; 3606 3607 /* success or failure */ 3608 u32 status; 3609 }; 3610 3611 struct wcn36xx_hal_rem_bcn_filter_rsp_msg { 3612 struct wcn36xx_hal_msg_header header; 3613 3614 /* success or failure */ 3615 u32 status; 3616 }; 3617 3618 struct wcn36xx_hal_add_wowl_bcast_ptrn_rsp_msg { 3619 struct wcn36xx_hal_msg_header header; 3620 3621 /* success or failure */ 3622 u32 status; 3623 u8 bss_index; 3624 }; 3625 3626 struct wcn36xx_hal_del_wowl_bcast_ptrn_rsp_msg { 3627 struct wcn36xx_hal_msg_header header; 3628 3629 /* success or failure */ 3630 u32 status; 3631 u8 bss_index; 3632 }; 3633 3634 struct wcn36xx_hal_host_offload_rsp_msg { 3635 struct wcn36xx_hal_msg_header header; 3636 3637 /* success or failure */ 3638 u32 status; 3639 }; 3640 3641 struct wcn36xx_hal_keep_alive_rsp_msg { 3642 struct wcn36xx_hal_msg_header header; 3643 3644 /* success or failure */ 3645 u32 status; 3646 }; 3647 3648 struct wcn36xx_hal_set_rssi_thresh_rsp_msg { 3649 struct wcn36xx_hal_msg_header header; 3650 3651 /* success or failure */ 3652 u32 status; 3653 }; 3654 3655 struct wcn36xx_hal_set_uapsd_ac_params_rsp_msg { 3656 struct wcn36xx_hal_msg_header header; 3657 3658 /* success or failure */ 3659 u32 status; 3660 }; 3661 3662 struct wcn36xx_hal_configure_rxp_filter_rsp_msg { 3663 struct wcn36xx_hal_msg_header header; 3664 3665 /* success or failure */ 3666 u32 status; 3667 }; 3668 3669 struct set_max_tx_pwr_req { 3670 struct wcn36xx_hal_msg_header header; 3671 3672 /* BSSID is needed to identify which session issued this request. 3673 * As the request has power constraints, this should be applied 3674 * only to that session */ 3675 u8 bssid[ETH_ALEN]; 3676 3677 u8 self_addr[ETH_ALEN]; 3678 3679 /* In request, power == MaxTx power to be used. */ 3680 u8 power; 3681 }; 3682 3683 struct set_max_tx_pwr_rsp_msg { 3684 struct wcn36xx_hal_msg_header header; 3685 3686 /* power == tx power used for management frames */ 3687 u8 power; 3688 3689 /* success or failure */ 3690 u32 status; 3691 }; 3692 3693 struct set_tx_pwr_req_msg { 3694 struct wcn36xx_hal_msg_header header; 3695 3696 /* TX Power in milli watts */ 3697 u32 tx_power; 3698 3699 u8 bss_index; 3700 }; 3701 3702 struct set_tx_pwr_rsp_msg { 3703 struct wcn36xx_hal_msg_header header; 3704 3705 /* success or failure */ 3706 u32 status; 3707 }; 3708 3709 struct get_tx_pwr_req_msg { 3710 struct wcn36xx_hal_msg_header header; 3711 3712 u8 sta_id; 3713 }; 3714 3715 struct get_tx_pwr_rsp_msg { 3716 struct wcn36xx_hal_msg_header header; 3717 3718 /* success or failure */ 3719 u32 status; 3720 3721 /* TX Power in milli watts */ 3722 u32 tx_power; 3723 }; 3724 3725 struct set_p2p_gonoa_req_msg { 3726 struct wcn36xx_hal_msg_header header; 3727 3728 u8 opp_ps; 3729 u32 ct_window; 3730 u8 count; 3731 u32 duration; 3732 u32 interval; 3733 u32 single_noa_duration; 3734 u8 ps_selection; 3735 }; 3736 3737 struct set_p2p_gonoa_rsp_msg { 3738 struct wcn36xx_hal_msg_header header; 3739 3740 /* success or failure */ 3741 u32 status; 3742 }; 3743 3744 struct wcn36xx_hal_add_sta_self_req { 3745 struct wcn36xx_hal_msg_header header; 3746 3747 u8 self_addr[ETH_ALEN]; 3748 u32 status; 3749 } __packed; 3750 3751 struct wcn36xx_hal_add_sta_self_rsp_msg { 3752 struct wcn36xx_hal_msg_header header; 3753 3754 /* success or failure */ 3755 u32 status; 3756 3757 /* Self STA Index */ 3758 u8 self_sta_index; 3759 3760 /* DPU Index (IGTK, PTK, GTK all same) */ 3761 u8 dpu_index; 3762 3763 /* DPU Signature */ 3764 u8 dpu_signature; 3765 } __packed; 3766 3767 struct wcn36xx_hal_del_sta_self_req_msg { 3768 struct wcn36xx_hal_msg_header header; 3769 3770 u8 self_addr[ETH_ALEN]; 3771 } __packed; 3772 3773 struct wcn36xx_hal_del_sta_self_rsp_msg { 3774 struct wcn36xx_hal_msg_header header; 3775 3776 /*success or failure */ 3777 u32 status; 3778 3779 u8 self_addr[ETH_ALEN]; 3780 } __packed; 3781 3782 struct aggr_add_ts_req { 3783 struct wcn36xx_hal_msg_header header; 3784 3785 /* Station Index */ 3786 u16 sta_idx; 3787 3788 /* TSPEC handler uniquely identifying a TSPEC for a STA in a BSS. 3789 * This will carry the bitmap with the bit positions representing 3790 * different AC.s */ 3791 u16 tspec_index; 3792 3793 /* Tspec info per AC To program TPE with required parameters */ 3794 struct wcn36xx_hal_tspec_ie tspec[WCN36XX_HAL_MAX_AC]; 3795 3796 /* U-APSD Flags: 1b per AC. Encoded as follows: 3797 b7 b6 b5 b4 b3 b2 b1 b0 = 3798 X X X X BE BK VI VO */ 3799 u8 uapsd; 3800 3801 /* These parameters are for all the access categories */ 3802 3803 /* Service Interval */ 3804 u32 service_interval[WCN36XX_HAL_MAX_AC]; 3805 3806 /* Suspend Interval */ 3807 u32 suspend_interval[WCN36XX_HAL_MAX_AC]; 3808 3809 /* Delay Interval */ 3810 u32 delay_interval[WCN36XX_HAL_MAX_AC]; 3811 }; 3812 3813 struct aggr_add_ts_rsp_msg { 3814 struct wcn36xx_hal_msg_header header; 3815 3816 /* success or failure */ 3817 u32 status0; 3818 3819 /* FIXME PRIMA for future use for 11R */ 3820 u32 status1; 3821 }; 3822 3823 struct wcn36xx_hal_configure_apps_cpu_wakeup_state_req_msg { 3824 struct wcn36xx_hal_msg_header header; 3825 3826 u8 is_apps_cpu_awake; 3827 }; 3828 3829 struct wcn36xx_hal_configure_apps_cpu_wakeup_state_rsp_msg { 3830 struct wcn36xx_hal_msg_header header; 3831 3832 /* success or failure */ 3833 u32 status; 3834 }; 3835 3836 struct wcn36xx_hal_dump_cmd_req_msg { 3837 struct wcn36xx_hal_msg_header header; 3838 3839 u32 arg1; 3840 u32 arg2; 3841 u32 arg3; 3842 u32 arg4; 3843 u32 arg5; 3844 } __packed; 3845 3846 struct wcn36xx_hal_dump_cmd_rsp_msg { 3847 struct wcn36xx_hal_msg_header header; 3848 3849 /* success or failure */ 3850 u32 status; 3851 3852 /* Length of the responce message */ 3853 u32 rsp_length; 3854 3855 /* FIXME: Currently considering the the responce will be less than 3856 * 100bytes */ 3857 u8 rsp_buffer[DUMPCMD_RSP_BUFFER]; 3858 } __packed; 3859 3860 #define WLAN_COEX_IND_DATA_SIZE (4) 3861 #define WLAN_COEX_IND_TYPE_DISABLE_HB_MONITOR (0) 3862 #define WLAN_COEX_IND_TYPE_ENABLE_HB_MONITOR (1) 3863 3864 struct coex_ind_msg { 3865 struct wcn36xx_hal_msg_header header; 3866 3867 /* Coex Indication Type */ 3868 u32 type; 3869 3870 /* Coex Indication Data */ 3871 u32 data[WLAN_COEX_IND_DATA_SIZE]; 3872 }; 3873 3874 struct wcn36xx_hal_tx_compl_ind_msg { 3875 struct wcn36xx_hal_msg_header header; 3876 3877 /* Tx Complete Indication Success or Failure */ 3878 u32 status; 3879 }; 3880 3881 struct wcn36xx_hal_wlan_host_suspend_ind_msg { 3882 struct wcn36xx_hal_msg_header header; 3883 3884 u32 configured_mcst_bcst_filter_setting; 3885 u32 active_session_count; 3886 }; 3887 3888 struct wcn36xx_hal_wlan_exclude_unencrpted_ind_msg { 3889 struct wcn36xx_hal_msg_header header; 3890 3891 u8 dot11_exclude_unencrypted; 3892 u8 bssid[ETH_ALEN]; 3893 }; 3894 3895 struct noa_attr_ind_msg { 3896 struct wcn36xx_hal_msg_header header; 3897 3898 u8 index; 3899 u8 opp_ps_flag; 3900 u16 ctwin; 3901 3902 u16 noa1_interval_count; 3903 u16 bss_index; 3904 u32 noa1_duration; 3905 u32 noa1_interval; 3906 u32 noa1_starttime; 3907 3908 u16 noa2_interval_count; 3909 u16 reserved2; 3910 u32 noa2_duration; 3911 u32 noa2_interval; 3912 u32 noa2_start_time; 3913 3914 u32 status; 3915 }; 3916 3917 struct noa_start_ind_msg { 3918 struct wcn36xx_hal_msg_header header; 3919 3920 u32 status; 3921 u32 bss_index; 3922 }; 3923 3924 struct wcn36xx_hal_wlan_host_resume_req_msg { 3925 struct wcn36xx_hal_msg_header header; 3926 3927 u8 configured_mcst_bcst_filter_setting; 3928 }; 3929 3930 struct wcn36xx_hal_host_resume_rsp_msg { 3931 struct wcn36xx_hal_msg_header header; 3932 3933 /* success or failure */ 3934 u32 status; 3935 }; 3936 3937 struct wcn36xx_hal_del_ba_ind_msg { 3938 struct wcn36xx_hal_msg_header header; 3939 3940 u16 sta_idx; 3941 3942 /* Peer MAC Address, whose BA session has timed out */ 3943 u8 peer_addr[ETH_ALEN]; 3944 3945 /* TID for which a BA session timeout is being triggered */ 3946 u8 ba_tid; 3947 3948 /* DELBA direction 3949 * 1 - Originator 3950 * 0 - Recipient 3951 */ 3952 u8 direction; 3953 3954 u32 reason_code; 3955 3956 /* TO SUPPORT BT-AMP */ 3957 u8 bssid[ETH_ALEN]; 3958 }; 3959 3960 /* PNO Messages */ 3961 3962 /* Max number of channels that a network can be found on */ 3963 #define WCN36XX_HAL_PNO_MAX_NETW_CHANNELS 26 3964 3965 /* Max number of channels that a network can be found on */ 3966 #define WCN36XX_HAL_PNO_MAX_NETW_CHANNELS_EX 60 3967 3968 /* Maximum numbers of networks supported by PNO */ 3969 #define WCN36XX_HAL_PNO_MAX_SUPP_NETWORKS 16 3970 3971 /* The number of scan time intervals that can be programmed into PNO */ 3972 #define WCN36XX_HAL_PNO_MAX_SCAN_TIMERS 10 3973 3974 /* Maximum size of the probe template */ 3975 #define WCN36XX_HAL_PNO_MAX_PROBE_SIZE 450 3976 3977 /* Type of PNO enabling: 3978 * 3979 * Immediate - scanning will start immediately and PNO procedure will be 3980 * repeated based on timer 3981 * 3982 * Suspend - scanning will start at suspend 3983 * 3984 * Resume - scanning will start on system resume 3985 */ 3986 enum pno_mode { 3987 PNO_MODE_IMMEDIATE, 3988 PNO_MODE_ON_SUSPEND, 3989 PNO_MODE_ON_RESUME, 3990 PNO_MODE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 3991 }; 3992 3993 /* Authentication type */ 3994 enum auth_type { 3995 AUTH_TYPE_ANY = 0, 3996 AUTH_TYPE_OPEN_SYSTEM = 1, 3997 3998 /* Upper layer authentication types */ 3999 AUTH_TYPE_WPA = 2, 4000 AUTH_TYPE_WPA_PSK = 3, 4001 4002 AUTH_TYPE_RSN = 4, 4003 AUTH_TYPE_RSN_PSK = 5, 4004 AUTH_TYPE_FT_RSN = 6, 4005 AUTH_TYPE_FT_RSN_PSK = 7, 4006 AUTH_TYPE_WAPI_WAI_CERTIFICATE = 8, 4007 AUTH_TYPE_WAPI_WAI_PSK = 9, 4008 4009 AUTH_TYPE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 4010 }; 4011 4012 /* Encryption type */ 4013 enum ed_type { 4014 ED_ANY = 0, 4015 ED_NONE = 1, 4016 ED_WEP = 2, 4017 ED_TKIP = 3, 4018 ED_CCMP = 4, 4019 ED_WPI = 5, 4020 4021 ED_TYPE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 4022 }; 4023 4024 /* SSID broadcast type */ 4025 enum ssid_bcast_type { 4026 BCAST_UNKNOWN = 0, 4027 BCAST_NORMAL = 1, 4028 BCAST_HIDDEN = 2, 4029 4030 BCAST_TYPE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE 4031 }; 4032 4033 /* The network description for which PNO will have to look for */ 4034 struct network_type { 4035 /* SSID of the BSS */ 4036 struct wcn36xx_hal_mac_ssid ssid; 4037 4038 /* Authentication type for the network */ 4039 enum auth_type authentication; 4040 4041 /* Encryption type for the network */ 4042 enum ed_type encryption; 4043 4044 /* Indicate the channel on which the Network can be found 0 - if 4045 * all channels */ 4046 u8 channel_count; 4047 u8 channels[WCN36XX_HAL_PNO_MAX_NETW_CHANNELS]; 4048 4049 /* Indicates the RSSI threshold for the network to be considered */ 4050 u8 rssi_threshold; 4051 }; 4052 4053 struct scan_timer { 4054 /* How much it should wait */ 4055 u32 value; 4056 4057 /* How many times it should repeat that wait value 0 - keep using 4058 * this timer until PNO is disabled */ 4059 u32 repeat; 4060 4061 /* e.g: 2 3 4 0 - it will wait 2s between consecutive scans for 3 4062 * times - after that it will wait 4s between consecutive scans 4063 * until disabled */ 4064 }; 4065 4066 /* The network parameters to be sent to the PNO algorithm */ 4067 struct scan_timers_type { 4068 /* set to 0 if you wish for PNO to use its default telescopic timer */ 4069 u8 count; 4070 4071 /* A set value represents the amount of time that PNO will wait 4072 * between two consecutive scan procedures If the desired is for a 4073 * uniform timer that fires always at the exact same interval - one 4074 * single value is to be set If there is a desire for a more 4075 * complex - telescopic like timer multiple values can be set - 4076 * once PNO reaches the end of the array it will continue scanning 4077 * at intervals presented by the last value */ 4078 struct scan_timer values[WCN36XX_HAL_PNO_MAX_SCAN_TIMERS]; 4079 }; 4080 4081 /* Preferred network list request */ 4082 struct set_pref_netw_list_req { 4083 struct wcn36xx_hal_msg_header header; 4084 4085 /* Enable PNO */ 4086 u32 enable; 4087 4088 /* Immediate, On Suspend, On Resume */ 4089 enum pno_mode mode; 4090 4091 /* Number of networks sent for PNO */ 4092 u32 networks_count; 4093 4094 /* The networks that PNO needs to look for */ 4095 struct network_type networks[WCN36XX_HAL_PNO_MAX_SUPP_NETWORKS]; 4096 4097 /* The scan timers required for PNO */ 4098 struct scan_timers_type scan_timers; 4099 4100 /* Probe template for 2.4GHz band */ 4101 u16 band_24g_probe_size; 4102 u8 band_24g_probe_template[WCN36XX_HAL_PNO_MAX_PROBE_SIZE]; 4103 4104 /* Probe template for 5GHz band */ 4105 u16 band_5g_probe_size; 4106 u8 band_5g_probe_template[WCN36XX_HAL_PNO_MAX_PROBE_SIZE]; 4107 }; 4108 4109 /* The network description for which PNO will have to look for */ 4110 struct network_type_new { 4111 /* SSID of the BSS */ 4112 struct wcn36xx_hal_mac_ssid ssid; 4113 4114 /* Authentication type for the network */ 4115 enum auth_type authentication; 4116 4117 /* Encryption type for the network */ 4118 enum ed_type encryption; 4119 4120 /* SSID broadcast type, normal, hidden or unknown */ 4121 enum ssid_bcast_type bcast_network_type; 4122 4123 /* Indicate the channel on which the Network can be found 0 - if 4124 * all channels */ 4125 u8 channel_count; 4126 u8 channels[WCN36XX_HAL_PNO_MAX_NETW_CHANNELS]; 4127 4128 /* Indicates the RSSI threshold for the network to be considered */ 4129 u8 rssi_threshold; 4130 }; 4131 4132 /* Preferred network list request new */ 4133 struct set_pref_netw_list_req_new { 4134 struct wcn36xx_hal_msg_header header; 4135 4136 /* Enable PNO */ 4137 u32 enable; 4138 4139 /* Immediate, On Suspend, On Resume */ 4140 enum pno_mode mode; 4141 4142 /* Number of networks sent for PNO */ 4143 u32 networks_count; 4144 4145 /* The networks that PNO needs to look for */ 4146 struct network_type_new networks[WCN36XX_HAL_PNO_MAX_SUPP_NETWORKS]; 4147 4148 /* The scan timers required for PNO */ 4149 struct scan_timers_type scan_timers; 4150 4151 /* Probe template for 2.4GHz band */ 4152 u16 band_24g_probe_size; 4153 u8 band_24g_probe_template[WCN36XX_HAL_PNO_MAX_PROBE_SIZE]; 4154 4155 /* Probe template for 5GHz band */ 4156 u16 band_5g_probe_size; 4157 u8 band_5g_probe_template[WCN36XX_HAL_PNO_MAX_PROBE_SIZE]; 4158 }; 4159 4160 /* Preferred network list response */ 4161 struct set_pref_netw_list_resp { 4162 struct wcn36xx_hal_msg_header header; 4163 4164 /* status of the request - just to indicate that PNO has 4165 * acknowledged the request and will start scanning */ 4166 u32 status; 4167 }; 4168 4169 /* Preferred network found indication */ 4170 struct pref_netw_found_ind { 4171 4172 struct wcn36xx_hal_msg_header header; 4173 4174 /* Network that was found with the highest RSSI */ 4175 struct wcn36xx_hal_mac_ssid ssid; 4176 4177 /* Indicates the RSSI */ 4178 u8 rssi; 4179 }; 4180 4181 /* RSSI Filter request */ 4182 struct set_rssi_filter_req { 4183 struct wcn36xx_hal_msg_header header; 4184 4185 /* RSSI Threshold */ 4186 u8 rssi_threshold; 4187 }; 4188 4189 /* Set RSSI filter resp */ 4190 struct set_rssi_filter_resp { 4191 struct wcn36xx_hal_msg_header header; 4192 4193 /* status of the request */ 4194 u32 status; 4195 }; 4196 4197 /* Update scan params - sent from host to PNO to be used during PNO 4198 * scanningx */ 4199 struct wcn36xx_hal_update_scan_params_req { 4200 4201 struct wcn36xx_hal_msg_header header; 4202 4203 /* Host setting for 11d */ 4204 u8 dot11d_enabled; 4205 4206 /* Lets PNO know that host has determined the regulatory domain */ 4207 u8 dot11d_resolved; 4208 4209 /* Channels on which PNO is allowed to scan */ 4210 u8 channel_count; 4211 u8 channels[WCN36XX_HAL_PNO_MAX_NETW_CHANNELS]; 4212 4213 /* Minimum channel time */ 4214 u16 active_min_ch_time; 4215 4216 /* Maximum channel time */ 4217 u16 active_max_ch_time; 4218 4219 /* Minimum channel time */ 4220 u16 passive_min_ch_time; 4221 4222 /* Maximum channel time */ 4223 u16 passive_max_ch_time; 4224 4225 /* Cb State */ 4226 enum phy_chan_bond_state state; 4227 } __packed; 4228 4229 /* Update scan params - sent from host to PNO to be used during PNO 4230 * scanningx */ 4231 struct wcn36xx_hal_update_scan_params_req_ex { 4232 4233 struct wcn36xx_hal_msg_header header; 4234 4235 /* Host setting for 11d */ 4236 u8 dot11d_enabled; 4237 4238 /* Lets PNO know that host has determined the regulatory domain */ 4239 u8 dot11d_resolved; 4240 4241 /* Channels on which PNO is allowed to scan */ 4242 u8 channel_count; 4243 u8 channels[WCN36XX_HAL_PNO_MAX_NETW_CHANNELS_EX]; 4244 4245 /* Minimum channel time */ 4246 u16 active_min_ch_time; 4247 4248 /* Maximum channel time */ 4249 u16 active_max_ch_time; 4250 4251 /* Minimum channel time */ 4252 u16 passive_min_ch_time; 4253 4254 /* Maximum channel time */ 4255 u16 passive_max_ch_time; 4256 4257 /* Cb State */ 4258 enum phy_chan_bond_state state; 4259 } __packed; 4260 4261 /* Update scan params - sent from host to PNO to be used during PNO 4262 * scanningx */ 4263 struct wcn36xx_hal_update_scan_params_resp { 4264 4265 struct wcn36xx_hal_msg_header header; 4266 4267 /* status of the request */ 4268 u32 status; 4269 } __packed; 4270 4271 struct wcn36xx_hal_set_tx_per_tracking_req_msg { 4272 struct wcn36xx_hal_msg_header header; 4273 4274 /* 0: disable, 1:enable */ 4275 u8 tx_per_tracking_enable; 4276 4277 /* Check period, unit is sec. */ 4278 u8 tx_per_tracking_period; 4279 4280 /* (Fail TX packet)/(Total TX packet) ratio, the unit is 10%. */ 4281 u8 tx_per_tracking_ratio; 4282 4283 /* A watermark of check number, once the tx packet exceed this 4284 * number, we do the check, default is 5 */ 4285 u32 tx_per_tracking_watermark; 4286 }; 4287 4288 struct wcn36xx_hal_set_tx_per_tracking_rsp_msg { 4289 struct wcn36xx_hal_msg_header header; 4290 4291 /* success or failure */ 4292 u32 status; 4293 4294 }; 4295 4296 struct tx_per_hit_ind_msg { 4297 struct wcn36xx_hal_msg_header header; 4298 }; 4299 4300 /* Packet Filtering Definitions Begin */ 4301 #define WCN36XX_HAL_PROTOCOL_DATA_LEN 8 4302 #define WCN36XX_HAL_MAX_NUM_MULTICAST_ADDRESS 240 4303 #define WCN36XX_HAL_MAX_NUM_FILTERS 20 4304 #define WCN36XX_HAL_MAX_CMP_PER_FILTER 10 4305 4306 enum wcn36xx_hal_receive_packet_filter_type { 4307 HAL_RCV_FILTER_TYPE_INVALID, 4308 HAL_RCV_FILTER_TYPE_FILTER_PKT, 4309 HAL_RCV_FILTER_TYPE_BUFFER_PKT, 4310 HAL_RCV_FILTER_TYPE_MAX_ENUM_SIZE 4311 }; 4312 4313 enum wcn36xx_hal_rcv_pkt_flt_protocol_type { 4314 HAL_FILTER_PROTO_TYPE_INVALID, 4315 HAL_FILTER_PROTO_TYPE_MAC, 4316 HAL_FILTER_PROTO_TYPE_ARP, 4317 HAL_FILTER_PROTO_TYPE_IPV4, 4318 HAL_FILTER_PROTO_TYPE_IPV6, 4319 HAL_FILTER_PROTO_TYPE_UDP, 4320 HAL_FILTER_PROTO_TYPE_MAX 4321 }; 4322 4323 enum wcn36xx_hal_rcv_pkt_flt_cmp_flag_type { 4324 HAL_FILTER_CMP_TYPE_INVALID, 4325 HAL_FILTER_CMP_TYPE_EQUAL, 4326 HAL_FILTER_CMP_TYPE_MASK_EQUAL, 4327 HAL_FILTER_CMP_TYPE_NOT_EQUAL, 4328 HAL_FILTER_CMP_TYPE_MAX 4329 }; 4330 4331 struct wcn36xx_hal_rcv_pkt_filter_params { 4332 u8 protocol_layer; 4333 u8 cmp_flag; 4334 4335 /* Length of the data to compare */ 4336 u16 data_length; 4337 4338 /* from start of the respective frame header */ 4339 u8 data_offset; 4340 4341 /* Reserved field */ 4342 u8 reserved; 4343 4344 /* Data to compare */ 4345 u8 compare_data[WCN36XX_HAL_PROTOCOL_DATA_LEN]; 4346 4347 /* Mask to be applied on the received packet data before compare */ 4348 u8 data_mask[WCN36XX_HAL_PROTOCOL_DATA_LEN]; 4349 }; 4350 4351 struct wcn36xx_hal_sessionized_rcv_pkt_filter_cfg_type { 4352 u8 id; 4353 u8 type; 4354 u8 params_count; 4355 u32 coleasce_time; 4356 u8 bss_index; 4357 struct wcn36xx_hal_rcv_pkt_filter_params params[1]; 4358 }; 4359 4360 struct wcn36xx_hal_set_rcv_pkt_filter_req_msg { 4361 struct wcn36xx_hal_msg_header header; 4362 4363 u8 id; 4364 u8 type; 4365 u8 params_count; 4366 u32 coalesce_time; 4367 struct wcn36xx_hal_rcv_pkt_filter_params params[1]; 4368 }; 4369 4370 struct wcn36xx_hal_rcv_flt_mc_addr_list_type { 4371 /* from start of the respective frame header */ 4372 u8 data_offset; 4373 4374 u32 mc_addr_count; 4375 u8 mc_addr[WCN36XX_HAL_MAX_NUM_MULTICAST_ADDRESS][ETH_ALEN]; 4376 u8 bss_index; 4377 } __packed; 4378 4379 struct wcn36xx_hal_set_pkt_filter_rsp_msg { 4380 struct wcn36xx_hal_msg_header header; 4381 4382 /* success or failure */ 4383 u32 status; 4384 4385 u8 bss_index; 4386 }; 4387 4388 struct wcn36xx_hal_rcv_flt_pkt_match_cnt_req_msg { 4389 struct wcn36xx_hal_msg_header header; 4390 4391 u8 bss_index; 4392 }; 4393 4394 struct wcn36xx_hal_rcv_flt_pkt_match_cnt { 4395 u8 id; 4396 u32 match_cnt; 4397 }; 4398 4399 struct wcn36xx_hal_rcv_flt_pkt_match_cnt_rsp_msg { 4400 struct wcn36xx_hal_msg_header header; 4401 4402 /* Success or Failure */ 4403 u32 status; 4404 4405 u32 match_count; 4406 struct wcn36xx_hal_rcv_flt_pkt_match_cnt 4407 matches[WCN36XX_HAL_MAX_NUM_FILTERS]; 4408 u8 bss_index; 4409 }; 4410 4411 struct wcn36xx_hal_rcv_flt_pkt_clear_param { 4412 /* only valid for response message */ 4413 u32 status; 4414 u8 id; 4415 u8 bss_index; 4416 }; 4417 4418 struct wcn36xx_hal_rcv_flt_pkt_clear_req_msg { 4419 struct wcn36xx_hal_msg_header header; 4420 struct wcn36xx_hal_rcv_flt_pkt_clear_param param; 4421 }; 4422 4423 struct wcn36xx_hal_rcv_flt_pkt_clear_rsp_msg { 4424 struct wcn36xx_hal_msg_header header; 4425 struct wcn36xx_hal_rcv_flt_pkt_clear_param param; 4426 }; 4427 4428 struct wcn36xx_hal_rcv_flt_pkt_set_mc_list_req_msg { 4429 struct wcn36xx_hal_msg_header header; 4430 struct wcn36xx_hal_rcv_flt_mc_addr_list_type mc_addr_list; 4431 } __packed; 4432 4433 struct wcn36xx_hal_rcv_flt_pkt_set_mc_list_rsp_msg { 4434 struct wcn36xx_hal_msg_header header; 4435 u32 status; 4436 u8 bss_index; 4437 }; 4438 4439 /* Packet Filtering Definitions End */ 4440 4441 struct wcn36xx_hal_set_power_params_req_msg { 4442 struct wcn36xx_hal_msg_header header; 4443 4444 /* Ignore DTIM */ 4445 u32 ignore_dtim; 4446 4447 /* DTIM Period */ 4448 u32 dtim_period; 4449 4450 /* Listen Interval */ 4451 u32 listen_interval; 4452 4453 /* Broadcast Multicast Filter */ 4454 u32 bcast_mcast_filter; 4455 4456 /* Beacon Early Termination */ 4457 u32 enable_bet; 4458 4459 /* Beacon Early Termination Interval */ 4460 u32 bet_interval; 4461 } __packed; 4462 4463 struct wcn36xx_hal_set_power_params_resp { 4464 4465 struct wcn36xx_hal_msg_header header; 4466 4467 /* status of the request */ 4468 u32 status; 4469 } __packed; 4470 4471 /* Capability bitmap exchange definitions and macros starts */ 4472 4473 enum place_holder_in_cap_bitmap { 4474 MCC = 0, 4475 P2P = 1, 4476 DOT11AC = 2, 4477 SLM_SESSIONIZATION = 3, 4478 DOT11AC_OPMODE = 4, 4479 SAP32STA = 5, 4480 TDLS = 6, 4481 P2P_GO_NOA_DECOUPLE_INIT_SCAN = 7, 4482 WLANACTIVE_OFFLOAD = 8, 4483 BEACON_OFFLOAD = 9, 4484 SCAN_OFFLOAD = 10, 4485 ROAM_OFFLOAD = 11, 4486 BCN_MISS_OFFLOAD = 12, 4487 STA_POWERSAVE = 13, 4488 STA_ADVANCED_PWRSAVE = 14, 4489 AP_UAPSD = 15, 4490 AP_DFS = 16, 4491 BLOCKACK = 17, 4492 PHY_ERR = 18, 4493 BCN_FILTER = 19, 4494 RTT = 20, 4495 RATECTRL = 21, 4496 WOW = 22, 4497 WLAN_ROAM_SCAN_OFFLOAD = 23, 4498 SPECULATIVE_PS_POLL = 24, 4499 SCAN_SCH = 25, 4500 IBSS_HEARTBEAT_OFFLOAD = 26, 4501 WLAN_SCAN_OFFLOAD = 27, 4502 WLAN_PERIODIC_TX_PTRN = 28, 4503 ADVANCE_TDLS = 29, 4504 BATCH_SCAN = 30, 4505 FW_IN_TX_PATH = 31, 4506 EXTENDED_NSOFFLOAD_SLOT = 32, 4507 CH_SWITCH_V1 = 33, 4508 HT40_OBSS_SCAN = 34, 4509 UPDATE_CHANNEL_LIST = 35, 4510 WLAN_MCADDR_FLT = 36, 4511 WLAN_CH144 = 37, 4512 NAN = 38, 4513 TDLS_SCAN_COEXISTENCE = 39, 4514 LINK_LAYER_STATS_MEAS = 40, 4515 MU_MIMO = 41, 4516 EXTENDED_SCAN = 42, 4517 DYNAMIC_WMM_PS = 43, 4518 MAC_SPOOFED_SCAN = 44, 4519 BMU_ERROR_GENERIC_RECOVERY = 45, 4520 DISA = 46, 4521 FW_STATS = 47, 4522 WPS_PRBRSP_TMPL = 48, 4523 BCN_IE_FLT_DELTA = 49, 4524 TDLS_OFF_CHANNEL = 51, 4525 RTT3 = 52, 4526 MGMT_FRAME_LOGGING = 53, 4527 ENHANCED_TXBD_COMPLETION = 54, 4528 LOGGING_ENHANCEMENT = 55, 4529 EXT_SCAN_ENHANCED = 56, 4530 MEMORY_DUMP_SUPPORTED = 57, 4531 PER_PKT_STATS_SUPPORTED = 58, 4532 EXT_LL_STAT = 60, 4533 WIFI_CONFIG = 61, 4534 ANTENNA_DIVERSITY_SELECTION = 62, 4535 4536 MAX_FEATURE_SUPPORTED = 128, 4537 }; 4538 4539 #define WCN36XX_HAL_CAPS_SIZE 4 4540 4541 struct wcn36xx_hal_feat_caps_msg { 4542 4543 struct wcn36xx_hal_msg_header header; 4544 4545 u32 feat_caps[WCN36XX_HAL_CAPS_SIZE]; 4546 } __packed; 4547 4548 /* status codes to help debug rekey failures */ 4549 enum gtk_rekey_status { 4550 WCN36XX_HAL_GTK_REKEY_STATUS_SUCCESS = 0, 4551 4552 /* rekey detected, but not handled */ 4553 WCN36XX_HAL_GTK_REKEY_STATUS_NOT_HANDLED = 1, 4554 4555 /* MIC check error on M1 */ 4556 WCN36XX_HAL_GTK_REKEY_STATUS_MIC_ERROR = 2, 4557 4558 /* decryption error on M1 */ 4559 WCN36XX_HAL_GTK_REKEY_STATUS_DECRYPT_ERROR = 3, 4560 4561 /* M1 replay detected */ 4562 WCN36XX_HAL_GTK_REKEY_STATUS_REPLAY_ERROR = 4, 4563 4564 /* missing GTK key descriptor in M1 */ 4565 WCN36XX_HAL_GTK_REKEY_STATUS_MISSING_KDE = 5, 4566 4567 /* missing iGTK key descriptor in M1 */ 4568 WCN36XX_HAL_GTK_REKEY_STATUS_MISSING_IGTK_KDE = 6, 4569 4570 /* key installation error */ 4571 WCN36XX_HAL_GTK_REKEY_STATUS_INSTALL_ERROR = 7, 4572 4573 /* iGTK key installation error */ 4574 WCN36XX_HAL_GTK_REKEY_STATUS_IGTK_INSTALL_ERROR = 8, 4575 4576 /* GTK rekey M2 response TX error */ 4577 WCN36XX_HAL_GTK_REKEY_STATUS_RESP_TX_ERROR = 9, 4578 4579 /* non-specific general error */ 4580 WCN36XX_HAL_GTK_REKEY_STATUS_GEN_ERROR = 255 4581 }; 4582 4583 /* wake reason types */ 4584 enum wake_reason_type { 4585 WCN36XX_HAL_WAKE_REASON_NONE = 0, 4586 4587 /* magic packet match */ 4588 WCN36XX_HAL_WAKE_REASON_MAGIC_PACKET = 1, 4589 4590 /* host defined pattern match */ 4591 WCN36XX_HAL_WAKE_REASON_PATTERN_MATCH = 2, 4592 4593 /* EAP-ID frame detected */ 4594 WCN36XX_HAL_WAKE_REASON_EAPID_PACKET = 3, 4595 4596 /* start of EAPOL 4-way handshake detected */ 4597 WCN36XX_HAL_WAKE_REASON_EAPOL4WAY_PACKET = 4, 4598 4599 /* network scan offload match */ 4600 WCN36XX_HAL_WAKE_REASON_NETSCAN_OFFL_MATCH = 5, 4601 4602 /* GTK rekey status wakeup (see status) */ 4603 WCN36XX_HAL_WAKE_REASON_GTK_REKEY_STATUS = 6, 4604 4605 /* BSS connection lost */ 4606 WCN36XX_HAL_WAKE_REASON_BSS_CONN_LOST = 7, 4607 }; 4608 4609 /* 4610 Wake Packet which is saved at tWakeReasonParams.DataStart 4611 This data is sent for any wake reasons that involve a packet-based wakeup : 4612 4613 WCN36XX_HAL_WAKE_REASON_TYPE_MAGIC_PACKET 4614 WCN36XX_HAL_WAKE_REASON_TYPE_PATTERN_MATCH 4615 WCN36XX_HAL_WAKE_REASON_TYPE_EAPID_PACKET 4616 WCN36XX_HAL_WAKE_REASON_TYPE_EAPOL4WAY_PACKET 4617 WCN36XX_HAL_WAKE_REASON_TYPE_GTK_REKEY_STATUS 4618 4619 The information is provided to the host for auditing and debug purposes 4620 4621 */ 4622 4623 /* Wake reason indication */ 4624 struct wcn36xx_hal_wake_reason_ind { 4625 struct wcn36xx_hal_msg_header header; 4626 4627 /* see tWakeReasonType */ 4628 u32 reason; 4629 4630 /* argument specific to the reason type */ 4631 u32 reason_arg; 4632 4633 /* length of optional data stored in this message, in case HAL 4634 * truncates the data (i.e. data packets) this length will be less 4635 * than the actual length */ 4636 u32 stored_data_len; 4637 4638 /* actual length of data */ 4639 u32 actual_data_len; 4640 4641 /* variable length start of data (length == storedDataLen) see 4642 * specific wake type */ 4643 u8 data_start[1]; 4644 4645 u32 bss_index:8; 4646 u32 reserved:24; 4647 }; 4648 4649 #define WCN36XX_HAL_GTK_KEK_BYTES 16 4650 #define WCN36XX_HAL_GTK_KCK_BYTES 16 4651 4652 #define WCN36XX_HAL_GTK_OFFLOAD_FLAGS_DISABLE (1 << 0) 4653 4654 #define GTK_SET_BSS_KEY_TAG 0x1234AA55 4655 4656 struct wcn36xx_hal_gtk_offload_req_msg { 4657 struct wcn36xx_hal_msg_header header; 4658 4659 /* optional flags */ 4660 u32 flags; 4661 4662 /* Key confirmation key */ 4663 u8 kck[WCN36XX_HAL_GTK_KCK_BYTES]; 4664 4665 /* key encryption key */ 4666 u8 kek[WCN36XX_HAL_GTK_KEK_BYTES]; 4667 4668 /* replay counter */ 4669 u64 key_replay_counter; 4670 4671 u8 bss_index; 4672 }; 4673 4674 struct wcn36xx_hal_gtk_offload_rsp_msg { 4675 struct wcn36xx_hal_msg_header header; 4676 4677 /* success or failure */ 4678 u32 status; 4679 4680 u8 bss_index; 4681 }; 4682 4683 struct wcn36xx_hal_gtk_offload_get_info_req_msg { 4684 struct wcn36xx_hal_msg_header header; 4685 u8 bss_index; 4686 }; 4687 4688 struct wcn36xx_hal_gtk_offload_get_info_rsp_msg { 4689 struct wcn36xx_hal_msg_header header; 4690 4691 /* success or failure */ 4692 u32 status; 4693 4694 /* last rekey status when the rekey was offloaded */ 4695 u32 last_rekey_status; 4696 4697 /* current replay counter value */ 4698 u64 key_replay_counter; 4699 4700 /* total rekey attempts */ 4701 u32 total_rekey_count; 4702 4703 /* successful GTK rekeys */ 4704 u32 gtk_rekey_count; 4705 4706 /* successful iGTK rekeys */ 4707 u32 igtk_rekey_count; 4708 4709 u8 bss_index; 4710 }; 4711 4712 struct dhcp_info { 4713 /* Indicates the device mode which indicates about the DHCP activity */ 4714 u8 device_mode; 4715 4716 u8 addr[ETH_ALEN]; 4717 }; 4718 4719 struct dhcp_ind_status { 4720 struct wcn36xx_hal_msg_header header; 4721 4722 /* success or failure */ 4723 u32 status; 4724 }; 4725 4726 /* 4727 * Thermal Mitigation mode of operation. 4728 * 4729 * WCN36XX_HAL_THERMAL_MITIGATION_MODE_0 - Based on AMPDU disabling aggregation 4730 * 4731 * WCN36XX_HAL_THERMAL_MITIGATION_MODE_1 - Based on AMPDU disabling aggregation 4732 * and reducing transmit power 4733 * 4734 * WCN36XX_HAL_THERMAL_MITIGATION_MODE_2 - Not supported */ 4735 enum wcn36xx_hal_thermal_mitigation_mode_type { 4736 HAL_THERMAL_MITIGATION_MODE_INVALID = -1, 4737 HAL_THERMAL_MITIGATION_MODE_0, 4738 HAL_THERMAL_MITIGATION_MODE_1, 4739 HAL_THERMAL_MITIGATION_MODE_2, 4740 HAL_THERMAL_MITIGATION_MODE_MAX = WCN36XX_HAL_MAX_ENUM_SIZE, 4741 }; 4742 4743 4744 /* 4745 * Thermal Mitigation level. 4746 * Note the levels are incremental i.e WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_2 = 4747 * WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_0 + 4748 * WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_1 4749 * 4750 * WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_0 - lowest level of thermal mitigation. 4751 * This level indicates normal mode of operation 4752 * 4753 * WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_1 - 1st level of thermal mitigation 4754 * 4755 * WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_2 - 2nd level of thermal mitigation 4756 * 4757 * WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_3 - 3rd level of thermal mitigation 4758 * 4759 * WCN36XX_HAL_THERMAL_MITIGATION_LEVEL_4 - 4th level of thermal mitigation 4760 */ 4761 enum wcn36xx_hal_thermal_mitigation_level_type { 4762 HAL_THERMAL_MITIGATION_LEVEL_INVALID = -1, 4763 HAL_THERMAL_MITIGATION_LEVEL_0, 4764 HAL_THERMAL_MITIGATION_LEVEL_1, 4765 HAL_THERMAL_MITIGATION_LEVEL_2, 4766 HAL_THERMAL_MITIGATION_LEVEL_3, 4767 HAL_THERMAL_MITIGATION_LEVEL_4, 4768 HAL_THERMAL_MITIGATION_LEVEL_MAX = WCN36XX_HAL_MAX_ENUM_SIZE, 4769 }; 4770 4771 4772 /* WCN36XX_HAL_SET_THERMAL_MITIGATION_REQ */ 4773 struct set_thermal_mitigation_req_msg { 4774 struct wcn36xx_hal_msg_header header; 4775 4776 /* Thermal Mitigation Operation Mode */ 4777 enum wcn36xx_hal_thermal_mitigation_mode_type mode; 4778 4779 /* Thermal Mitigation Level */ 4780 enum wcn36xx_hal_thermal_mitigation_level_type level; 4781 }; 4782 4783 struct set_thermal_mitigation_resp { 4784 4785 struct wcn36xx_hal_msg_header header; 4786 4787 /* status of the request */ 4788 u32 status; 4789 }; 4790 4791 /* Per STA Class B Statistics. Class B statistics are STA TX/RX stats 4792 * provided to FW from Host via periodic messages */ 4793 struct stats_class_b_ind { 4794 struct wcn36xx_hal_msg_header header; 4795 4796 /* Duration over which this stats was collected */ 4797 u32 duration; 4798 4799 /* Per STA Stats */ 4800 4801 /* TX stats */ 4802 u32 tx_bytes_pushed; 4803 u32 tx_packets_pushed; 4804 4805 /* RX stats */ 4806 u32 rx_bytes_rcvd; 4807 u32 rx_packets_rcvd; 4808 u32 rx_time_total; 4809 }; 4810 4811 /* WCN36XX_HAL_PRINT_REG_INFO_IND */ 4812 struct wcn36xx_hal_print_reg_info_ind { 4813 struct wcn36xx_hal_msg_header header; 4814 4815 u32 count; 4816 u32 scenario; 4817 u32 reason; 4818 4819 struct { 4820 u32 addr; 4821 u32 value; 4822 } regs[]; 4823 } __packed; 4824 4825 #endif /* _HAL_H_ */ 4826