blob: edd14557df9de7da89c5625d6d18753c75c915f1 [file] [log] [blame]
/*
* Copyright (c) 2011-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all
* copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/*
* This file was originally distributed by Qualcomm Atheros, Inc.
* under proprietary terms before Copyright ownership was assigned
* to the Linux Foundation.
*/
/*
* This file sirMacProtDef.h contains the MAC/PHY protocol
* definitions used across various projects.
* Author: Chandra Modumudi
* Date: 02/27/02
* History:-
* Date Modified by Modification Information
* --------------------------------------------------------------------
*
*/
#ifndef __MAC_PROT_DEFS_H
#define __MAC_PROT_DEFS_H
#include "palTypes.h"
#include "sirTypes.h"
#include "wni_cfg.h"
#ifdef WLAN_FEATURE_FILS_SK
#include <lim_fils_defs.h>
#endif
///Capability information related
#define CAPABILITY_INFO_DELAYED_BA_BIT 14
#define CAPABILITY_INFO_IMMEDIATE_BA_BIT 15
/// 11h MAC defaults
#define SIR_11A_CHANNEL_BEGIN 34
#define SIR_11A_CHANNEL_END 165
#define SIR_11B_CHANNEL_BEGIN 1
#define SIR_11B_CHANNEL_END 14
#define SIR_11A_FREQUENCY_OFFSET 4
#define SIR_11B_FREQUENCY_OFFSET 1
#define SIR_11P_CHANNEL_BEGIN 170
#define SIR_11P_CHANNEL_END 184
/// Current version of 802.11
#define SIR_MAC_PROTOCOL_VERSION 0
// Frame Type definitions
#define SIR_MAC_MGMT_FRAME 0x0
#define SIR_MAC_CTRL_FRAME 0x1
#define SIR_MAC_DATA_FRAME 0x2
#define SIR_MAC_FRAME_TYPE_START 0x0
#define SIR_MAC_FRAME_TYPE_END 0x3
// Control frame subtype definitions
#define SIR_MAC_CTRL_RR 4
#define SIR_MAC_CTRL_BAR 8
#define SIR_MAC_CTRL_BA 9
#define SIR_MAC_CTRL_PS_POLL 10
#define SIR_MAC_CTRL_RTS 11
#define SIR_MAC_CTRL_CTS 12
#define SIR_MAC_CTRL_ACK 13
#define SIR_MAC_CTRL_CF_END 14
#define SIR_MAC_CTRL_CF_END_ACK 15
#define SIR_MAC_MAX_DURATION_MICRO_SECONDS 32767
// Data frame subtype definitions
#define SIR_MAC_DATA_DATA 0
#define SIR_MAC_DATA_DATA_ACK 1
#define SIR_MAC_DATA_DATA_POLL 2
#define SIR_MAC_DATA_DATA_ACK_POLL 3
#define SIR_MAC_DATA_NULL 4
#define SIR_MAC_DATA_NULL_ACK 5
#define SIR_MAC_DATA_NULL_POLL 6
#define SIR_MAC_DATA_NULL_ACK_POLL 7
#define SIR_MAC_DATA_QOS_DATA 8
#define SIR_MAC_DATA_QOS_DATA_ACK 9
#define SIR_MAC_DATA_QOS_DATA_POLL 10
#define SIR_MAC_DATA_QOS_DATA_ACK_POLL 11
#define SIR_MAC_DATA_QOS_NULL 12
#define SIR_MAC_DATA_QOS_NULL_ACK 13
#define SIR_MAC_DATA_QOS_NULL_POLL 14
#define SIR_MAC_DATA_QOS_NULL_ACK_POLL 15
#define SIR_MAC_FRAME_SUBTYPE_START 0
#define SIR_MAC_FRAME_SUBTYPE_END 16
#define SIR_MAC_DATA_QOS_MASK 8
#define SIR_MAC_DATA_NULL_MASK 4
#define SIR_MAC_DATA_POLL_MASK 2
#define SIR_MAC_DATA_ACK_MASK 1
// Management frame subtype definitions
#define SIR_MAC_MGMT_ASSOC_REQ 0x0
#define SIR_MAC_MGMT_ASSOC_RSP 0x1
#define SIR_MAC_MGMT_REASSOC_REQ 0x2
#define SIR_MAC_MGMT_REASSOC_RSP 0x3
#define SIR_MAC_MGMT_PROBE_REQ 0x4
#define SIR_MAC_MGMT_PROBE_RSP 0x5
#define SIR_MAC_MGMT_TIME_ADVERT 0x6
#define SIR_MAC_MGMT_BEACON 0x8
#define SIR_MAC_MGMT_ATIM 0x9
#define SIR_MAC_MGMT_DISASSOC 0xA
#define SIR_MAC_MGMT_AUTH 0xB
#define SIR_MAC_MGMT_DEAUTH 0xC
#define SIR_MAC_MGMT_ACTION 0xD
#define SIR_MAC_MGMT_RESERVED15 0xF
// Action frame categories
#define SIR_MAC_ACTION_SPECTRUM_MGMT 0
#define SIR_MAC_ACTION_QOS_MGMT 1
#define SIR_MAC_ACTION_DLP 2
#define SIR_MAC_ACTION_BLKACK 3
#define SIR_MAC_ACTION_PUBLIC_USAGE 4
#define SIR_MAC_ACTION_RRM 5
#define SIR_MAC_ACTION_FAST_BSS_TRNST 6
#define SIR_MAC_ACTION_HT 7
#define SIR_MAC_ACTION_SA_QUERY 8
#define SIR_MAC_ACTION_PROT_DUAL_PUB 9
#define SIR_MAC_ACTION_WNM 10
#define SIR_MAC_ACTION_UNPROT_WNM 11
#define SIR_MAC_ACTION_TDLS 12
#define SIR_MAC_ACITON_MESH 13
#define SIR_MAC_ACTION_MHF 14
#define SIR_MAC_SELF_PROTECTED 15
#define SIR_MAC_ACTION_WME 17
#define SIR_MAC_ACTION_FST 18
#define SIR_MAC_ACTION_VHT 21
#define SIR_MAC_ACTION_MAX 256
#define SIR_MAC_ACTION_TX 1
#define SIR_MAC_ACTION_RX 2
// QoS management action codes
#define SIR_MAC_QOS_ADD_TS_REQ 0
#define SIR_MAC_QOS_ADD_TS_RSP 1
#define SIR_MAC_QOS_DEL_TS_REQ 2
#define SIR_MAC_QOS_SCHEDULE 3
#define SIR_MAC_QOS_MAP_CONFIGURE 4
// and these are proprietary
#define SIR_MAC_QOS_DEF_BA_REQ 4
#define SIR_MAC_QOS_DEF_BA_RSP 5
#define SIR_MAC_QOS_DEL_BA_REQ 6
#define SIR_MAC_QOS_DEL_BA_RSP 7
#define SIR_MAC_ACTION_MEASURE_REQUEST_ID 0
#define SIR_MAC_ACTION_MEASURE_REPORT_ID 1
#define SIR_MAC_ACTION_TPC_REQUEST_ID 2
#define SIR_MAC_ACTION_TPC_REPORT_ID 3
#define SIR_MAC_ACTION_CHANNEL_SWITCH_ID 4
//RRM related.
//Refer IEEE Std 802.11k-2008, Section 7.3.2.21, table 7.29
#if defined WLAN_FEATURE_VOWIFI
#define SIR_MAC_RRM_CHANNEL_LOAD_TYPE 3
#define SIR_MAC_RRM_NOISE_HISTOGRAM_BEACON 4
#define SIR_MAC_RRM_BEACON_TYPE 5
#define SIR_MAC_RRM_FRAME_TYPE 6
#define SIR_MAC_RRM_STA_STATISTICS_TYPE 7
#define SIR_MAC_RRM_LCI_TYPE 8
#define SIR_MAC_RRM_TSM_TYPE 9
#define SIR_MAC_RRM_LOCATION_CIVIC_TYPE 11
#define SIR_MAC_RRM_FINE_TIME_MEAS_TYPE 16
//RRM action codes
#define SIR_MAC_RRM_RADIO_MEASURE_REQ 0
#define SIR_MAC_RRM_RADIO_MEASURE_RPT 1
#define SIR_MAC_RRM_LINK_MEASUREMENT_REQ 2
#define SIR_MAC_RRM_LINK_MEASUREMENT_RPT 3
#define SIR_MAC_RRM_NEIGHBOR_REQ 4
#define SIR_MAC_RRM_NEIGHBOR_RPT 5
#endif
//VHT Action Field
#ifdef WLAN_FEATURE_11AC
#define SIR_MAC_VHT_GID_NOTIFICATION 1
#define SIR_MAC_VHT_OPMODE_NOTIFICATION 2
#endif
// HT Action Field Codes
#define SIR_MAC_SM_POWER_SAVE 1
// DLP action frame types
#define SIR_MAC_DLP_REQ 0
#define SIR_MAC_DLP_RSP 1
#define SIR_MAC_DLP_TEARDOWN 2
// block acknowledgement action frame types
#define SIR_MAC_BLKACK_ADD_REQ 0
#define SIR_MAC_BLKACK_ADD_RSP 1
#define SIR_MAC_BLKACK_DEL 2
#define SIR_MAC_ACTION_VENDOR_SPECIFIC 9
#define SIR_MAC_ACTION_VENDOR_SPECIFIC_CATEGORY 0x7F
#define SIR_MAC_ACTION_P2P_SUBTYPE_PRESENCE_RSP 2
// Public Action for 20/40 BSS Coexistence
#define SIR_MAC_ACTION_2040_BSS_COEXISTENCE 0
#define SIR_MAC_ACTION_EXT_CHANNEL_SWITCH_ID 4
#ifdef WLAN_FEATURE_11W
//11w SA query request/response action frame category code
#define SIR_MAC_SA_QUERY_REQ 0
#define SIR_MAC_SA_QUERY_RSP 1
#endif
#ifdef FEATURE_WLAN_TDLS
#define SIR_MAC_TDLS_SETUP_REQ 0
#define SIR_MAC_TDLS_SETUP_RSP 1
#define SIR_MAC_TDLS_SETUP_CNF 2
#define SIR_MAC_TDLS_TEARDOWN 3
#define SIR_MAC_TDLS_PEER_TRAFFIC_IND 4
#define SIR_MAC_TDLS_CH_SWITCH_REQ 5
#define SIR_MAC_TDLS_CH_SWITCH_RSP 6
#define SIR_MAC_TDLS_PEER_TRAFFIC_RSP 9
#define SIR_MAC_TDLS_DIS_REQ 10
#define SIR_MAC_TDLS_DIS_RSP 14
#endif
/* WNM Action field values; IEEE Std 802.11-2012, 8.5.14.1, Table 8-250 */
#define SIR_MAC_WNM_BSS_TM_QUERY 6
#define SIR_MAC_WNM_BSS_TM_REQUEST 7
#define SIR_MAC_WNM_BSS_TM_RESPONSE 8
#define SIR_MAC_WNM_NOTIF_REQUEST 26
#define SIR_MAC_WNM_NOTIF_RESPONSE 27
#define SIR_MAC_MAX_RANDOM_LENGTH 2306
//-----------------------------------------------------------------------------
// EID (Element ID) definitions
// and their min/max lengths
//-----------------------------------------------------------------------------
#define SIR_MAC_SSID_EID 0
#define SIR_MAC_SSID_EID_MIN 0
#define SIR_MAC_SSID_EID_MAX 32
#define SIR_MAC_RATESET_EID 1
#define SIR_MAC_RATESET_EID_MIN 1
#define SIR_MAC_RATESET_EID_MAX 12
#define SIR_MAC_FH_PARAM_SET_EID 2
#define SIR_MAC_FH_PARAM_SET_EID_MIN 5
#define SIR_MAC_FH_PARAM_SET_EID_MAX 5
#define SIR_MAC_DS_PARAM_SET_EID 3
#define SIR_MAC_DS_PARAM_SET_EID_MIN 1
#define SIR_MAC_DS_PARAM_SET_EID_MAX 1
#define SIR_MAC_CF_PARAM_SET_EID 4
#define SIR_MAC_CF_PARAM_SET_EID_MIN 6
#define SIR_MAC_CF_PARAM_SET_EID_MAX 6
#define SIR_MAC_TIM_EID 5
#define SIR_MAC_TIM_EID_MIN 3
#define SIR_MAC_TIM_EID_MAX 254
#define SIR_MAC_IBSS_PARAM_SET_EID 6
#define SIR_MAC_IBSS_PARAM_SET_EID_MIN 2
#define SIR_MAC_IBSS_PARAM_SET_EID_MAX 2
#define SIR_MAC_COUNTRY_EID 7
#define SIR_MAC_COUNTRY_EID_MIN 6
#define SIR_MAC_COUNTRY_EID_MAX 254
#define SIR_MAC_FH_PARAMS_EID 8
#define SIR_MAC_FH_PARAMS_EID_MIN 4
#define SIR_MAC_FH_PARAMS_EID_MAX 4
#define SIR_MAC_FH_PATTERN_EID 9
#define SIR_MAC_FH_PATTERN_EID_MIN 4
#define SIR_MAC_FH_PATTERN_EID_MAX 254
#define SIR_MAC_REQUEST_EID 10
#define SIR_MAC_REQUEST_EID_MIN 1
#define SIR_MAC_REQUEST_EID_MAX 255
#define SIR_MAC_QBSS_LOAD_EID 11
#define SIR_MAC_QBSS_LOAD_EID_MIN 5
#define SIR_MAC_QBSS_LOAD_EID_MAX 5
#define SIR_MAC_EDCA_PARAM_SET_EID 12 // EDCA parameter set
#define SIR_MAC_EDCA_PARAM_SET_EID_MIN 18
#define SIR_MAC_EDCA_PARAM_SET_EID_MAX 20
#define SIR_MAC_TSPEC_EID 13
#define SIR_MAC_TSPEC_EID_MIN 55
#define SIR_MAC_TSPEC_EID_MAX 55
#define SIR_MAC_TCLAS_EID 14
#define SIR_MAC_TCLAS_EID_MIN 4
#define SIR_MAC_TCLAS_EID_MAX 255
#define SIR_MAC_QOS_SCHEDULE_EID 15
#define SIR_MAC_QOS_SCHEDULE_EID_MIN 14
#define SIR_MAC_QOS_SCHEDULE_EID_MAX 14
#define SIR_MAC_CHALLENGE_TEXT_EID 16
#define SIR_MAC_CHALLENGE_TEXT_EID_MIN 1
#define SIR_MAC_CHALLENGE_TEXT_EID_MAX 253
// reserved 17-31
#define SIR_MAC_PWR_CONSTRAINT_EID 32
#define SIR_MAC_PWR_CONSTRAINT_EID_MIN 1
#define SIR_MAC_PWR_CONSTRAINT_EID_MAX 1
#define SIR_MAC_PWR_CAPABILITY_EID 33
#define SIR_MAC_PWR_CAPABILITY_EID_MIN 2
#define SIR_MAC_PWR_CAPABILITY_EID_MAX 2
#define SIR_MAC_TPC_REQ_EID 34
#define SIR_MAC_TPC_REQ_EID_MIN 0
#define SIR_MAC_TPC_REQ_EID_MAX 255
// SIR_MAC_EXTENDED_CAP_EID 35
#define SIR_MAC_TPC_RPT_EID 35
#define SIR_MAC_TPC_RPT_EID_MIN 2
#define SIR_MAC_TPC_RPT_EID_MAX 2
#define SIR_MAC_SPRTD_CHNLS_EID 36
#define SIR_MAC_SPRTD_CHNLS_EID_MIN 2
#define SIR_MAC_SPRTD_CHNLS_EID_MAX 254
#define SIR_MAC_CHNL_SWITCH_ANN_EID 37
#define SIR_MAC_CHNL_SWITCH_ANN_EID_MIN 3
#define SIR_MAC_CHNL_SWITCH_ANN_EID_MAX 3
#define SIR_MAC_MEAS_REQ_EID 38
#define SIR_MAC_MEAS_REQ_EID_MIN 3
#define SIR_MAC_MEAS_REQ_EID_MAX 255
#define SIR_MAC_MEAS_RPT_EID 39
#define SIR_MAC_MEAS_RPT_EID_MIN 3
#define SIR_MAC_MEAS_RPT_EID_MAX 255
#define SIR_MAC_QUIET_EID 40
#define SIR_MAC_QUIET_EID_MIN 6
#define SIR_MAC_QUIET_EID_MAX 6
#define SIR_MAC_IBSS_DFS_EID 41
#define SIR_MAC_IBSS_DFS_EID_MIN 7
#define SIR_MAC_IBSS_DFS_EID_MAX 255
#define SIR_MAC_ERP_INFO_EID 42
#define SIR_MAC_ERP_INFO_EID_MIN 0
#define SIR_MAC_ERP_INFO_EID_MAX 255
#define SIR_MAC_TS_DELAY_EID 43
#define SIR_MAC_TS_DELAY_EID_MIN 4
#define SIR_MAC_TS_DELAY_EID_MAX 4
#define SIR_MAC_TCLAS_PROC_EID 44
#define SIR_MAC_TCLAS_PROC_EID_MIN 1
#define SIR_MAC_TCLAS_PROC_EID_MAX 1
#define SIR_MAC_QOS_CAPABILITY_EID 46
#define SIR_MAC_QOS_CAPABILITY_EID_MIN 1
#define SIR_MAC_QOS_CAPABILITY_EID_MAX 1
#define SIR_MAC_RSN_EID 48
#define SIR_MAC_RSN_EID_MIN 4
#define SIR_MAC_RSN_EID_MAX 254
//using reserved EID for Qos Action IE for now,
//need to check 11e spec for the actual EID
#define SIR_MAC_QOS_ACTION_EID 49
#define SIR_MAC_QOS_ACTION_EID_MIN 4
#define SIR_MAC_QOS_ACTION_EID_MAX 255
#define SIR_MAC_EXTENDED_RATE_EID 50
#define SIR_MAC_EXTENDED_RATE_EID_MIN 0
#define SIR_MAC_EXTENDED_RATE_EID_MAX 255
#define SIR_MAC_OPERATING_CLASS_EID 59
#define SIR_MAC_OPERATING_CLASS_EID_MIN 2
#define SIR_MAC_OPERATING_CLASS_EID_MAX 253
#define SIR_MAC_CHNL_EXTENDED_SWITCH_ANN_EID 60
#define SIR_MAC_CHNL_EXTENDED_SWITCH_ANN_EID_MIN 0
#define SIR_MAC_CHNL_EXTENDED_SWITCH_ANN_EID_MAX 255
// reserved 51-69
#define SIR_MAC_RM_ENABLED_CAPABILITY_EID 70
#define SIR_MAC_RM_ENABLED_CAPABILITY_EID_MIN 5
#define SIR_MAC_RM_ENABLED_CAPABILITY_EID_MAX 5
// reserved 71-220
#define SIR_MAC_WPA_EID 221
#define SIR_MAC_WPA_EID_MIN 0
#define SIR_MAC_WPA_EID_MAX 255
#define SIR_MAC_EID_VENDOR 221
#define SIR_MAC_WAPI_EID 68
// reserved 222-254
#define SIR_MAC_HT_CAPABILITIES_EID 45
#define SIR_MAC_HT_CAPABILITIES_EID_MIN 0
#define SIR_MAC_HT_CAPABILITIES_EID_MAX 255
#define SIR_MAC_HT_INFO_EID 61
#define SIR_MAC_HT_INFO_EID_MIN 0
#define SIR_MAC_HT_INFO_EID_MAX 255
#ifdef WLAN_FEATURE_11AC
#define SIR_MAC_VHT_CAPABILITIES_EID 191
#define SIR_MAC_VHT_OPERATION_EID 192
#define SIR_MAC_VHT_EXT_BSS_LOAD_EID 193
#define SIR_MAC_VHT_OPMODE_EID 199
#endif
#define SIR_MAC_MAX_SUPPORTED_MCS_SET 16
#define VHT_RX_HIGHEST_SUPPORTED_DATA_RATE_1_1 390
#define VHT_TX_HIGHEST_SUPPORTED_DATA_RATE_1_1 390
#define VHT_RX_HIGHEST_SUPPORTED_DATA_RATE_2_2 780
#define VHT_TX_HIGHEST_SUPPORTED_DATA_RATE_2_2 780
#define VHT_MCS_1x1 0xFFFC
#define VHT_MCS_2x2 0xFFF3
#define NSS_1x1_MODE 1
#define NSS_2x2_MODE 2
#define SIR_MAC_QCOM_VENDOR_EID 200
#define SIR_MAC_QCOM_VENDOR_OUI "\x00\xA0\xC6"
#define SIR_MAC_QCOM_VENDOR_SIZE 3
/// Workaround IE to change beacon length when it is 4*n+1
#define SIR_MAC_ANI_WORKAROUND_EID 255
#define SIR_MAC_ANI_WORKAROUND_EID_MIN 0
#define SIR_MAC_ANI_WORKAROUND_EID_MAX 255
#define SIR_MAC_MAX_ADD_IE_LENGTH 500
/// Maximum length of each IE
#define SIR_MAC_MAX_IE_LENGTH 255
/// Maximum length of each IE
#define SIR_MAC_RSN_IE_MAX_LENGTH 255
#define SIR_MAC_WPA_IE_MAX_LENGTH 255
/// Minimum length of each IE
#define SIR_MAC_RSN_IE_MIN_LENGTH 2
#define SIR_MAC_WPA_IE_MIN_LENGTH 6
#ifdef FEATURE_WLAN_ESE
#define ESE_VERSION_4 4
#define ESE_VERSION_SUPPORTED ESE_VERSION_4
// When station sends Radio Management Cap.
// State should be normal=1
// Mbssid Mask should be 0
#define RM_STATE_NORMAL 1
#endif
#define SIR_MAC_OUI_VERSION_1 1
// OUI and type definition for WPA IE in network byte order
#define SIR_MAC_WPA_OUI 0x01F25000
#define SIR_MAC_WME_OUI 0x02F25000
#define SIR_MAC_WSM_OUI SIR_MAC_WME_OUI
#define SIR_MAC_WSC_OUI "\x00\x50\xf2\x04"
#define SIR_MAC_WSC_OUI_SIZE 4
#define SIR_MAC_P2P_OUI "\x50\x6f\x9a\x09"
#define SIR_MAC_P2P_OUI_SIZE 4
#define SIR_P2P_NOA_ATTR 12
#define SIR_MAX_NOA_ATTR_LEN 31
#define SIR_MAX_NOA_DESCR 2
#define SIR_P2P_IE_HEADER_LEN 6
#define SIR_MAC_CISCO_OUI "\x00\x40\x96"
#define SIR_MAC_CISCO_OUI_SIZE 3
/* WFA vendor specific TPC OUI */
#define SIR_MAC_WFA_TPC_OUI "\x00\x50\xF2\x08\x00"
#define SIR_MAC_WFA_TPC_OUI_SIZE 5
// min size of wme oui header: oui(3) + type + subtype + version
#define SIR_MAC_OUI_WME_HDR_MIN 6
// OUI subtype and their lengths
#define SIR_MAC_OUI_SUBTYPE_WME_INFO 0
#define SIR_MAC_OUI_WME_INFO_MIN 7
#define SIR_MAC_OUI_WME_INFO_MAX 7
#define SIR_MAC_OUI_SUBTYPE_WME_PARAM 1
#define SIR_MAC_OUI_WME_PARAM_MIN 24
#define SIR_MAC_OUI_WME_PARAM_MAX 24
#define SIR_MAC_OUI_SUBTYPE_WME_TSPEC 2
#define SIR_MAC_OUI_WME_TSPEC_MIN 61
#define SIR_MAC_OUI_WME_TSPEC_MAX 61
#define SIR_MAC_OUI_SUBTYPE_WSM_TSPEC 2 // same as WME TSPEC
#define SIR_MAC_OUI_WSM_TSPEC_MIN 61
#define SIR_MAC_OUI_WSM_TSPEC_MAX 61
// reserved subtypes 3-4
// WSM capability
#define SIR_MAC_OUI_SUBTYPE_WSM_CAPABLE 5
#define SIR_MAC_OUI_WSM_CAPABLE_MIN 7
#define SIR_MAC_OUI_WSM_CAPABLE_MAX 7
// WSM classifier
#define SIR_MAC_OUI_SUBTYPE_WSM_TCLAS 6
#define SIR_MAC_OUI_WSM_TCLAS_MIN 10
#define SIR_MAC_OUI_WSM_TCLAS_MAX 255
// classifier processing element
#define SIR_MAC_OUI_SUBTYPE_WSM_TCLASPROC 7
#define SIR_MAC_OUI_WSM_TCLASPROC_MIN 7
#define SIR_MAC_OUI_WSM_TCLASPROC_MAX 7
// tspec delay element
#define SIR_MAC_OUI_SUBTYPE_WSM_TSDELAY 8
#define SIR_MAC_OUI_WSM_TSDELAY_MIN 10
#define SIR_MAC_OUI_WSM_TSDELAY_MAX 10
// schedule element
#define SIR_MAC_OUI_SUBTYPE_WSM_SCHEDULE 9
#define SIR_MAC_OUI_WSM_SCHEDULE_MIN 20
#define SIR_MAC_OUI_WSM_SCHEDULE_MAX 20
#ifdef WLAN_NS_OFFLOAD
#define SIR_MAC_NS_OFFLOAD_SIZE 1 //support only one IPv6 offload
/* Number of target IP V6 addresses for NS offload */
#define SIR_MAC_NUM_TARGET_IPV6_NS_OFFLOAD_NA 16
#define SIR_MAC_IPV6_ADDR_LEN 16
#define SIR_IPV6_ADDR_VALID 1
#define SIR_IPV6_ADDR_UC_TYPE 0
#define SIR_IPV6_ADDR_AC_TYPE 1
#endif //WLAN_NS_OFFLOAD
#define SIR_MAC_ARP_OFFLOAD_SIZE 1
// total length of an Info element including T/L fields
#define EID_LEN(eid) (2 + (eid))
// support for radar Detect, Channel Switch
#define CHANNEL_SWITCH_MAX_FRAME_SIZE 256
// Length of Channel Switch related message
#define SIR_SME_CHANNEL_SWITCH_SIZE (sizeof(tANI_U8) + 2 *sizeof(tANI_U16) + sizeof(tANI_U32) + sizeof(ePhyChanBondState))
#define SIR_CHANNEL_SWITCH_IE_SIZE EID_LEN(SIR_MAC_CHNL_SWITCH_ANN_EID_MIN)
//Measurement Request/Report messages
#define SIR_MEAS_REQ_FIELD_SIZE 11
#define SIR_MEAS_REQ_IE_SIZE (5 + SIR_MEAS_REQ_FIELD_SIZE)
#define SIR_MEAS_REQ_ACTION_FRAME_SIZE (3 + SIR_MEAS_REQ_IE_SIZE)
#define SIR_MEAS_MAX_FRAME_SIZE 256
#define SIR_MEAS_REPORT_MIN_FRAME_SIZE (3 + EID_LEN(SIR_MAC_MEAS_RPT_EID_MIN))
#define SIR_MAC_SET_MEAS_REQ_ENABLE(x) (((tANI_U8) x) | 2)
#define SIR_MAC_SET_MEAS_REQ_REQUEST(x) (((tANI_U8) x) | 4)
#define SIR_MAC_SET_MEAS_REQ_REPORT(x) (((tANI_U8) x) | 8)
#define SIR_MAC_SET_MEAS_REPORT_LATE(x) (((tANI_U8) x) | 1)
#define SIR_MAC_SET_MEAS_REPORT_INCAPABLE(x) (((tANI_U8) x) | 2)
#define SIR_MAC_SET_MEAS_REPORT_REFUSE(x) (((tANI_U8) x) | 4)
// Length of TPC Request Action Frame
#define SIR_TPC_REQ_ACTION_FRAME_SIZE (3 + EID_LEN(SIR_MAC_TPC_REQ_EID_MIN))
#define SIR_TPC_REPORT_ACTION_FRAME_SIZE (3 + EID_LEN(SIR_MAC_TPC_RPT_EID_MIN))
#define SIR_TPC_MAX_FRAME_SIZE 256
//-----------------------------------------------------------------------------
// OFFSET definitions for fixed fields in Management frames
// Beacon/Probe Response offsets
#define SIR_MAC_TS_OFFSET 0
#define SIR_MAC_BEACON_INT_OFFSET 8 // Beacon Interval offset
#define SIR_MAC_B_PR_CAPAB_OFFSET 10
#define SIR_MAC_B_PR_SSID_OFFSET 12
// Association/Reassociation offsets
#define SIR_MAC_ASSOC_CAPAB_OFFSET 0
#define SIR_MAC_LISTEN_INT_OFFSET 2 // Listen Interval offset
#define SIR_MAC_ASSOC_SSID_OFFSET 4
#define SIR_MAC_CURRENT_AP_OFFSET 4
#define SIR_MAC_REASSOC_SSID_OFFSET 10
#define SIR_MAC_ASSOC_STATUS_CODE_OFFSET 2
#define SIR_MAC_ASSOC_AID_OFFSET 4
#define SIR_MAC_ASSOC_RSP_RATE_OFFSET 6
// Disassociation/Deauthentication offsets
#define SIR_MAC_REASON_CODE_OFFSET 0
// Probe Request offset
#define SIR_MAC_PROBE_REQ_SSID_OFFSET 0
// Authentication offsets
#define SIR_MAC_AUTH_ALGO_OFFSET 0
#define SIR_MAC_AUTH_XACT_SEQNUM_OFFSET 2
#define SIR_MAC_AUTH_STATUS_CODE_OFFSET 4
#define SIR_MAC_AUTH_CHALLENGE_OFFSET 6
/// Transaction sequence number definitions (used in Authentication frames)
#define SIR_MAC_AUTH_FRAME_1 1
#define SIR_MAC_AUTH_FRAME_2 2
#define SIR_MAC_AUTH_FRAME_3 3
#define SIR_MAC_AUTH_FRAME_4 4
/// Protocol defined MAX definitions
#define SIR_MAC_ADDR_LENGTH 6
#define SIR_MAC_MAX_SSID_LENGTH 32
#define SIR_MAC_MAX_NUMBER_OF_RATES 12
#define SIR_MAC_MAX_NUM_OF_DEFAULT_KEYS 4
#define SIR_MAC_KEY_LENGTH 13 // WEP Maximum key length size
#define SIR_MAC_AUTH_CHALLENGE_LENGTH 253
#define SIR_MAC_SAP_AUTH_CHALLENGE_LENGTH 128
#define SIR_MAC_WEP_IV_LENGTH 4
#define SIR_MAC_WEP_ICV_LENGTH 4
#define SIR_MAC_CHALLENGE_ID_LEN 2
/* 2 bytes each for auth algo number, transaction number and status code */
#define SIR_MAC_AUTH_FRAME_INFO_LEN 6
/// MAX key length when ULA is used
#define SIR_MAC_MAX_KEY_LENGTH 32
#define SIR_MAC_MAX_KEY_RSC_LEN 16
/// Macro definitions for get/set on FC fields
#define SIR_MAC_GET_PROT_VERSION(x) ((((tANI_U16) x) & 0x0300) >> 8)
#define SIR_MAC_GET_FRAME_TYPE(x) ((((tANI_U16) x) & 0x0C00) >> 8)
#define SIR_MAC_GET_FRAME_SUB_TYPE(x) ((((tANI_U16) x) & 0xF000) >> 12)
#define SIR_MAC_GET_WEP_BIT_IN_FC(x) (((tANI_U16) x) & 0x0040)
#define SIR_MAC_SET_PROT_VERSION(x) ((tANI_U16) x)
#define SIR_MAC_SET_FRAME_TYPE(x) (((tANI_U16) x) << 2)
#define SIR_MAC_SET_FRAME_SUB_TYPE(x) (((tANI_U16) x) << 4)
#define SIR_MAC_SET_WEP_BIT_IN_FC(x) (((tANI_U16) x) << 14)
/// Macro definitions for get/set on capabilityInfo bits
#define SIR_MAC_GET_ESS(x) (((tANI_U16) x) & 0x0001)
#define SIR_MAC_GET_IBSS(x) ((((tANI_U16) x) & 0x0002) >> 1)
#define SIR_MAC_GET_CF_POLLABLE(x) ((((tANI_U16) x) & 0x0004) >> 2)
#define SIR_MAC_GET_CF_POLL_REQ(x) ((((tANI_U16) x) & 0x0008) >> 3)
#define SIR_MAC_GET_PRIVACY(x) ((((tANI_U16) x) & 0x0010) >> 4)
#define SIR_MAC_GET_SHORT_PREAMBLE(x) ((((tANI_U16) x) & 0x0020) >> 5)
#define SIR_MAC_GET_SPECTRUM_MGMT(x) ((((tANI_U16) x) & 0x0100) >> 8)
#define SIR_MAC_GET_QOS(x) ((((tANI_U16) x) & 0x0200) >> 9)
#define SIR_MAC_GET_SHORT_SLOT_TIME(x) ((((tANI_U16) x) & 0x0400) >> 10)
#define SIR_MAC_GET_APSD(x) ((((tANI_U16) x) & 0x0800) >> 11)
#if defined WLAN_FEATURE_VOWIFI
#define SIR_MAC_GET_RRM(x) ((((tANI_U16) x) & 0x1000) >> 12)
#endif
#define SIR_MAC_GET_BLOCK_ACK(x) ((((tANI_U16) x) & 0xc000) >> CAPABILITY_INFO_DELAYED_BA_BIT)
#define SIR_MAC_SET_ESS(x) (((tANI_U16) x) | 0x0001)
#define SIR_MAC_SET_IBSS(x) (((tANI_U16) x) | 0x0002)
#define SIR_MAC_SET_CF_POLLABLE(x) (((tANI_U16) x) | 0x0004)
#define SIR_MAC_SET_CF_POLL_REQ(x) (((tANI_U16) x) | 0x0008)
#define SIR_MAC_SET_PRIVACY(x) (((tANI_U16) x) | 0x0010)
#define SIR_MAC_SET_SHORT_PREAMBLE(x) (((tANI_U16) x) | 0x0020)
#define SIR_MAC_SET_SPECTRUM_MGMT(x) (((tANI_U16) x) | 0x0100)
#define SIR_MAC_SET_QOS(x) (((tANI_U16) x) | 0x0200)
#define SIR_MAC_SET_SHORT_SLOT_TIME(x) (((tANI_U16) x) | 0x0400)
#define SIR_MAC_SET_APSD(x) (((tANI_U16) x) | 0x0800)
#if defined WLAN_FEATURE_VOWIFI
#define SIR_MAC_SET_RRM(x) (((tANI_U16) x) | 0x1000)
#endif
#define SIR_MAC_SET_GROUP_ACK(x) (((tANI_U16) x) | 0x4000)
#ifdef WLAN_FEATURE_11AC
#define SIR_MAC_GET_VHT_MAX_AMPDU_EXPO(x) ((((tANI_U32) x) & 0x03800000) >> 23)
#endif
// bitname must be one of the above, eg ESS, CF_POLLABLE, etc.
#define SIR_MAC_CLEAR_CAPABILITY(u16value, bitname) \
((u16value) &= (~(SIR_MAC_SET_##bitname(0))))
#define IS_WES_MODE_ENABLED(x) \
((x)->roam.configParam.isWESModeEnabled)
/// Status Code (present in Management response frames) enum
typedef enum eSirMacStatusCodes
{
eSIR_MAC_SUCCESS_STATUS = 0, //Reserved
eSIR_MAC_UNSPEC_FAILURE_STATUS = 1, //Unspecified reason
// 802.11 reserved 2-9
/*
WMM status codes(standard 1.1 table 9)
Table 9 ADDTS Response Status Codes
Value Operation
0 Admission accepted
1 Invalid parameters
2 Reserved
3 Refused
4-255 Reserved
*/
eSIR_MAC_WME_INVALID_PARAMS_STATUS = 1, // ??
eSIR_MAC_WME_REFUSED_STATUS = 3, // ??
eSIR_MAC_CAPABILITIES_NOT_SUPPORTED_STATUS = 10, //Cannot support all requested capabilities in the Capability Information field
eSIR_MAC_INABLITY_TO_CONFIRM_ASSOC_STATUS = 11, //Reassociation denied due to inability to confirm that association exists
eSIR_MAC_OUTSIDE_SCOPE_OF_SPEC_STATUS = 12, //Association denied due to reason outside the scope of this standard
eSIR_MAC_AUTH_ALGO_NOT_SUPPORTED_STATUS = 13, //Responding station does not support the specified authentication algorithm
eSIR_MAC_AUTH_FRAME_OUT_OF_SEQ_STATUS = 14, //Received an Authentication frame with authentication transaction sequence number
//out of expected sequence
eSIR_MAC_CHALLENGE_FAILURE_STATUS = 15, //Authentication rejected because of challenge failure
eSIR_MAC_AUTH_RSP_TIMEOUT_STATUS = 16, //Authentication rejected due to timeout waiting for next frame in sequence
eSIR_MAC_MAX_ASSOC_STA_REACHED_STATUS = 17, //Association denied because AP is unable to handle additional associated stations
eSIR_MAC_BASIC_RATES_NOT_SUPPORTED_STATUS = 18, //Association denied due to requesting station not supporting all of the data rates in the
//BSSBasicRateSet parameter
eSIR_MAC_SHORT_PREAMBLE_NOT_SUPPORTED_STATUS = 19, //Association denied due to requesting station not supporting the short preamble
//option
eSIR_MAC_PBCC_NOT_SUPPORTED_STATUS = 20, //Association denied due to requesting station not supporting the PBCC modulation
//option
eSIR_MAC_CHANNEL_AGILITY_NOT_SUPPORTED_STATUS = 21, //Association denied due to requesting station not supporting the Channel Agility
//option
eSIR_MAC_SPECTRUM_MGMT_REQD_STATUS = 22, //Association request rejected because Spectrum Management capability is required
eSIR_MAC_PWR_CAPABILITY_BAD_STATUS = 23, //Association request rejected because the information in the Power Capability
//element is unacceptable
eSIR_MAC_SPRTD_CHANNELS_BAD_STATUS = 24, //Association request rejected because the information in the Supported Channels
//element is unacceptable
eSIR_MAC_SHORT_SLOT_NOT_SUPORTED_STATUS = 25, //Association denied due to requesting station not supporting the Short Slot Time
//option
eSIR_MAC_DSSS_OFDM_NOT_SUPPORTED_STATUS = 26, //Association denied due to requesting station not supporting the DSSS-OFDM option
// reserved 27-29
eSIR_MAC_TRY_AGAIN_LATER = 30, //Association request rejected temporarily, try again later
// reserved 31
eSIR_MAC_QOS_UNSPECIFIED_FAILURE_STATUS = 32, //Unspecified, QoS-related failure
eSIR_MAC_QAP_NO_BANDWIDTH_STATUS = 33, //Association denied because QoS AP has insufficient bandwidth to handle another
//QoS STA
eSIR_MAC_XS_FRAME_LOSS_STATUS = 34, //Association denied due to excessive frame loss rates and/or poor conditions on cur-
//rent operating channel
eSIR_MAC_STA_QOS_NOT_SUPPORTED_STATUS = 35, //Association (with QoS BSS) denied because the requesting STA does not support the
//QoS facility
eSIR_MAC_STA_BLK_ACK_NOT_SUPPORTED_STATUS = 36, //Reserved
eSIR_MAC_REQ_DECLINED_STATUS = 37, //The request has been declined
eSIR_MAC_INVALID_PARAM_STATUS = 38, //The request has not been successful as one or more parameters have invalid values
eSIR_MAC_TS_NOT_HONOURED_STATUS = 39, //The TS has not been created because the request cannot be honored; however, a suggested
//TSPEC is provided so that the initiating STA may attempt to set another TS
//with the suggested changes to the TSPEC
eSIR_MAC_INVALID_INFORMATION_ELEMENT_STATUS = 40, //Invalid information element, i.e., an information element defined in this standard for
//which the content does not meet the specifications in Clause 7
eSIR_MAC_INVALID_GROUP_CIPHER_STATUS = 41, //Invalid group cipher
eSIR_MAC_INVALID_PAIRWISE_CIPHER_STATUS = 42, //Invalid pairwise cipher
eSIR_MAC_INVALID_AKMP_STATUS = 43, //Invalid AKMP
eSIR_MAC_UNSUPPORTED_RSN_IE_VERSION_STATUS = 44, //Unsupported RSN information element version
eSIR_MAC_INVALID_RSN_IE_CAPABILITIES_STATUS = 45, //Invalid RSN information element capabilities
eSIR_MAC_CIPHER_SUITE_REJECTED_STATUS = 46, //Cipher suite rejected because of security policy
/*
* The TS has not been created; however, the HC may be capable of creating
* a TS, in response to a request, after the time indicated in the TS Delay
* element
*/
eSIR_MAC_TS_NOT_CREATED_STATUS = 47,
eSIR_MAC_DL_NOT_ALLOWED_STATUS = 48, //Direct link is not allowed in the BSS by policy
eSIR_MAC_DEST_STA_NOT_KNOWN_STATUS = 49, //The Destination STA is not present within this BSS
eSIR_MAC_DEST_STA_NOT_QSTA_STATUS = 50, //The Destination STA is not a QoS STA
eSIR_MAC_INVALID_LISTEN_INTERVAL_STATUS = 51, //Association denied because the ListenInterval is too large
eSIR_MAC_DSSS_CCK_RATE_MUST_SUPPORT_STATUS = 52, //FIXME:
eSIR_MAC_DSSS_CCK_RATE_NOT_SUPPORT_STATUS = 53,
eSIR_MAC_PSMP_CONTROLLED_ACCESS_ONLY_STATUS = 54,
#ifdef FEATURE_WLAN_ESE
eSIR_MAC_ESE_UNSPECIFIED_QOS_FAILURE_STATUS = 200, //ESE-Unspecified, QoS related failure in (Re)Assoc response frames
eSIR_MAC_ESE_TSPEC_REQ_REFUSED_STATUS = 201, //ESE-TSPEC request refused due to AP's policy configuration in AddTs Rsp, (Re)Assoc Rsp.
eSIR_MAC_ESE_ASSOC_DENIED_INSUFF_BW_STATUS = 202, //ESE-Assoc denied due to insufficient bandwidth to handle new TS in (Re)Assoc Rsp.
eSIR_MAC_ESE_INVALID_PARAMETERS_STATUS = 203, //ESE-Invalid parameters. (Re)Assoc request had one or more TSPEC parameters with
//invalid values.
#endif
} tSirMacStatusCodes;
/**
* Reason Code (present in Deauthentication/Disassociation
* Management frames) enum
*/
typedef enum eSirMacReasonCodes
{
eSIR_MAC_UNSPEC_FAILURE_REASON = 1, //Unspecified reason
eSIR_MAC_PREV_AUTH_NOT_VALID_REASON = 2, //Previous authentication no longer valid
eSIR_MAC_DEAUTH_LEAVING_BSS_REASON = 3, //Deauthenticated because sending station is leaving (or has left) IBSS or ESS
eSIR_MAC_DISASSOC_DUE_TO_INACTIVITY_REASON = 4, //Disassociated due to inactivity
eSIR_MAC_DISASSOC_DUE_TO_DISABILITY_REASON = 5, //Disassociated because AP is unable to handle all currently associated stations
/* Class 2 frame received from non-authenticated station */
eSIR_MAC_CLASS2_FRAME_FROM_NON_AUTH_STA_REASON = 6,
/* Class 3 frame received from non-associated station */
eSIR_MAC_CLASS3_FRAME_FROM_NON_ASSOC_STA_REASON = 7,
eSIR_MAC_DISASSOC_LEAVING_BSS_REASON = 8, //Disassociated because sending station is leaving (or has left) BSS
eSIR_MAC_STA_NOT_PRE_AUTHENTICATED_REASON = 9, //Station requesting (re)association is not authenticated with responding station
eSIR_MAC_PWR_CAPABILITY_BAD_REASON = 10, //Disassociated because the information in the Power Capability element is unacceptable
eSIR_MAC_SPRTD_CHANNELS_BAD_REASON = 11, //Disassociated because the information in the Supported Channels element is unacceptable
// reserved 12
eSIR_MAC_INVALID_IE_REASON = 13, //Invalid information element, i.e., an information element defined in this standard for
//which the content does not meet the specifications in Clause 7
eSIR_MAC_MIC_FAILURE_REASON = 14, //Message integrity code (MIC) failure
eSIR_MAC_4WAY_HANDSHAKE_TIMEOUT_REASON = 15, //4-Way Handshake timeout
eSIR_MAC_GR_KEY_UPDATE_TIMEOUT_REASON = 16, //Group Key Handshake timeout
eSIR_MAC_RSN_IE_MISMATCH_REASON = 17, //Information element in 4-Way Handshake different from (Re)Association Request/Probe
//Response/Beacon frame
eSIR_MAC_INVALID_MC_CIPHER_REASON = 18, //Invalid group cipher
eSIR_MAC_INVALID_UC_CIPHER_REASON = 19, //Invalid pairwise cipher
eSIR_MAC_INVALID_AKMP_REASON = 20, //Invalid AKMP
eSIR_MAC_UNSUPPORTED_RSN_IE_VER_REASON = 21, //Unsupported RSN information element version
eSIR_MAC_INVALID_RSN_CAPABILITIES_REASON = 22, //Invalid RSN information element capabilities
eSIR_MAC_1X_AUTH_FAILURE_REASON = 23, //IEEE 802.1X authentication failed
eSIR_MAC_CIPHER_SUITE_REJECTED_REASON = 24, //Cipher suite rejected because of the security policy
#ifdef FEATURE_WLAN_TDLS
/* TDLS direct link tear down due to TDLS peer STA unreachable
via the TDLS direct link */
eSIR_MAC_TDLS_TEARDOWN_PEER_UNREACHABLE = 25,
/* TDLS direct link tear down for unspecified reason */
eSIR_MAC_TDLS_TEARDOWN_UNSPEC_REASON = 26,
#endif
// reserved 27 - 30
#ifdef WLAN_FEATURE_11W
eSIR_MAC_ROBUST_MGMT_FRAMES_POLICY_VIOLATION = 31, //Robust management frames policy violation
#endif
eSIR_MAC_QOS_UNSPECIFIED_REASON = 32, //Disassociated for unspecified, QoS-related reason
eSIR_MAC_QAP_NO_BANDWIDTH_REASON = 33, //Disassociated because QoS AP lacks sufficient bandwidth for this QoS STA
eSIR_MAC_XS_UNACKED_FRAMES_REASON = 34, //Disassociated because excessive number of frames need to be acknowledged, but are not
//acknowledged due to AP transmissions and/or poor channel conditions
eSIR_MAC_BAD_TXOP_USE_REASON = 35, //Disassociated because STA is transmitting outside the limits of its TXOPs
eSIR_MAC_PEER_STA_REQ_LEAVING_BSS_REASON = 36, //Requested from peer STA as the STA is leaving the BSS (or resetting)
eSIR_MAC_PEER_REJECT_MECHANISIM_REASON = 37, //Requested from peer STA as it does not want to use the mechanism
eSIR_MAC_MECHANISM_NOT_SETUP_REASON = 38, //Requested from peer STA as the STA received frames using the mechanism for which a
//setup is required
eSIR_MAC_PEER_TIMEDOUT_REASON = 39, //Requested from peer STA due to timeout
eSIR_MAC_CIPHER_NOT_SUPPORTED_REASON = 45, //Peer STA does not support the requested cipher suite
eSIR_MAC_DISASSOC_DUE_TO_FTHANDOFF_REASON = 46, //FT reason
//reserved 47 - 65535.
eSIR_BEACON_MISSED = 65534, //We invented this to tell beacon missed case
} tSirMacReasonCodes;
/// Frame control field format (2 bytes)
typedef __ani_attr_pre_packed struct sSirMacFrameCtl
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 subType :4;
tANI_U8 type :2;
tANI_U8 protVer :2;
tANI_U8 order :1;
tANI_U8 wep :1;
tANI_U8 moreData :1;
tANI_U8 powerMgmt :1;
tANI_U8 retry :1;
tANI_U8 moreFrag :1;
tANI_U8 fromDS :1;
tANI_U8 toDS :1;
#else
tANI_U8 protVer :2;
tANI_U8 type :2;
tANI_U8 subType :4;
tANI_U8 toDS :1;
tANI_U8 fromDS :1;
tANI_U8 moreFrag :1;
tANI_U8 retry :1;
tANI_U8 powerMgmt :1;
tANI_U8 moreData :1;
tANI_U8 wep :1;
tANI_U8 order :1;
#endif
} __ani_attr_packed tSirMacFrameCtl, *tpSirMacFrameCtl;
/// Sequence control field
typedef __ani_attr_pre_packed struct sSirMacSeqCtl
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 seqNumLo : 4;
tANI_U8 fragNum : 4;
tANI_U8 seqNumHi : 8;
#else
tANI_U8 fragNum : 4;
tANI_U8 seqNumLo : 4;
tANI_U8 seqNumHi : 8;
#endif
} __ani_attr_packed tSirMacSeqCtl, *tpSirMacSeqCtl;
/// QoS control field
typedef __ani_attr_pre_packed struct sSirMacQosCtl
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 rsvd : 1;
tANI_U8 ackPolicy : 2;
tANI_U8 esop_txopUnit : 1;
tANI_U8 tid : 4;
tANI_U8 txop : 8;
#else
tANI_U8 tid : 4;
tANI_U8 esop_txopUnit : 1;
tANI_U8 ackPolicy : 2;
tANI_U8 rsvd : 1;
tANI_U8 txop : 8;
#endif
} __ani_attr_packed tSirMacQosCtl, *tpSirMacQosCtl;
/// Length (in bytes) of MAC header in 3 address format
#define SIR_MAC_HDR_LEN_3A 24
/// 3 address MAC data header format (24/26 bytes)
typedef __ani_attr_pre_packed struct sSirMacDot3Hdr
{
tANI_U8 da[6];
tANI_U8 sa[6];
tANI_U16 length;
} __ani_attr_packed tSirMacDot3Hdr, *tpSirMacDot3Hdr;
/// 3 address MAC data header format (24/26 bytes)
typedef __ani_attr_pre_packed struct sSirMacDataHdr3a
{
tSirMacFrameCtl fc;
tANI_U8 durationLo;
tANI_U8 durationHi;
tANI_U8 addr1[6];
tANI_U8 addr2[6];
tANI_U8 addr3[6];
tSirMacSeqCtl seqControl;
tSirMacQosCtl qosControl;
} __ani_attr_packed tSirMacDataHdr3a, *tpSirMacDataHdr3a;
/// Management header format
typedef __ani_attr_pre_packed struct sSirMacMgmtHdr
{
tSirMacFrameCtl fc;
tANI_U8 durationLo;
tANI_U8 durationHi;
tANI_U8 da[6];
tANI_U8 sa[6];
tANI_U8 bssId[6];
tSirMacSeqCtl seqControl;
} __ani_attr_packed tSirMacMgmtHdr, *tpSirMacMgmtHdr;
/// ERP information field
typedef __ani_attr_pre_packed struct sSirMacErpInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 reserved:5;
tANI_U8 barkerPreambleMode:1;
tANI_U8 useProtection:1;
tANI_U8 nonErpPresent:1;
#else
tANI_U8 nonErpPresent:1;
tANI_U8 useProtection:1;
tANI_U8 barkerPreambleMode:1;
tANI_U8 reserved:5;
#endif
} __ani_attr_packed tSirMacErpInfo, *tpSirMacErpInfo;
/// Capability information field
typedef __ani_attr_pre_packed struct sSirMacCapabilityInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 immediateBA:1;
tANI_U16 delayedBA:1;
tANI_U16 dsssOfdm:1;
tANI_U16 rrm:1;
tANI_U16 apsd:1;
tANI_U16 shortSlotTime:1;
tANI_U16 qos:1;
tANI_U16 spectrumMgt:1;
tANI_U16 channelAgility:1;
tANI_U16 pbcc:1;
tANI_U16 shortPreamble:1;
tANI_U16 privacy:1;
tANI_U16 cfPollReq:1;
tANI_U16 cfPollable:1;
tANI_U16 ibss:1;
tANI_U16 ess:1;
#else
tANI_U16 ess:1;
tANI_U16 ibss:1;
tANI_U16 cfPollable:1;
tANI_U16 cfPollReq:1;
tANI_U16 privacy:1;
tANI_U16 shortPreamble:1;
tANI_U16 pbcc:1;
tANI_U16 channelAgility:1;
tANI_U16 spectrumMgt:1;
tANI_U16 qos:1;
tANI_U16 shortSlotTime:1;
tANI_U16 apsd:1;
tANI_U16 rrm:1;
tANI_U16 dsssOfdm:1;
tANI_U16 delayedBA:1;
tANI_U16 immediateBA:1;
#endif
} __ani_attr_packed tSirMacCapabilityInfo, *tpSirMacCapabilityInfo;
typedef __ani_attr_pre_packed struct sSirMacCfParamSet
{
tANI_U8 cfpCount;
tANI_U8 cfpPeriod;
tANI_U16 cfpMaxDuration;
tANI_U16 cfpDurRemaining;
} __ani_attr_packed tSirMacCfParamSet;
typedef __ani_attr_pre_packed struct sSirMacTim
{
tANI_U8 dtimCount;
tANI_U8 dtimPeriod;
tANI_U8 bitmapControl;
tANI_U8 bitmapLength;
tANI_U8 bitmap[251];
} __ani_attr_packed tSirMacTim;
//12 Bytes long because this structure can be used to represent rate
//and extended rate set IEs
//The parser assume this to be at least 12
typedef __ani_attr_pre_packed struct sSirMacRateSet
{
tANI_U8 numRates;
tANI_U8 rate[SIR_MAC_RATESET_EID_MAX];
} __ani_attr_packed tSirMacRateSet;
/** struct merged_mac_rate_set - merged mac rate set
* @num_rates: num of rates
* @rate: rate list
*/
struct merged_mac_rate_set {
uint8_t num_rates;
uint8_t rate[2 * SIR_MAC_RATESET_EID_MAX];
};
typedef __ani_attr_pre_packed struct sSirMacSSid
{
tANI_U8 length;
tANI_U8 ssId[SIR_MAC_MAX_SSID_LENGTH];
} __ani_attr_packed tSirMacSSid;
typedef __ani_attr_pre_packed struct sSirMacWpaInfo
{
tANI_U8 length;
tANI_U8 info[SIR_MAC_MAX_IE_LENGTH];
} __ani_attr_packed tSirMacWpaInfo, *tpSirMacWpaInfo,
tSirMacRsnInfo, *tpSirMacRsnInfo;
typedef __ani_attr_pre_packed struct sSirMacWapiInfo
{
tANI_U8 length;
tANI_U8 info[SIR_MAC_MAX_IE_LENGTH];
} __ani_attr_packed tSirMacWapiInfo, *tpSirMacWapiInfo,
tSirMacWapiInfo, *tpSirMacWapiInfo;
typedef __ani_attr_pre_packed struct sSirMacFHParamSet
{
tANI_U16 dwellTime;
tANI_U8 hopSet;
tANI_U8 hopPattern;
tANI_U8 hopIndex;
} tSirMacFHParamSet, *tpSirMacFHParamSet;
typedef __ani_attr_pre_packed struct sSirMacIBSSParams
{
tANI_U16 atim;
} tSirMacIBSSParams, *tpSirMacIBSSParams;
typedef __ani_attr_pre_packed struct sSirMacRRMEnabledCap
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 reserved: 6;
tANI_U8 AntennaInformation: 1;
tANI_U8 BSSAvailAdmission: 1;
tANI_U8 BssAvgAccessDelay: 1;
tANI_U8 RSNIMeasurement: 1;
tANI_U8 RCPIMeasurement: 1;
tANI_U8 NeighborTSFOffset: 1;
tANI_U8 MeasurementPilotEnabled: 1;
tANI_U8 MeasurementPilot: 3;
tANI_U8 nonOperatinChanMax: 3;
tANI_U8 operatingChanMax: 3;
tANI_U8 RRMMIBEnabled: 1;
tANI_U8 APChanReport: 1;
tANI_U8 triggeredTCM: 1;
tANI_U8 TCMCapability: 1;
tANI_U8 LCIAzimuth: 1;
tANI_U8 LCIMeasurement: 1;
tANI_U8 statistics: 1;
tANI_U8 NoiseHistogram: 1;
tANI_U8 ChannelLoad: 1;
tANI_U8 FrameMeasurement: 1;
tANI_U8 BeaconRepCond: 1;
tANI_U8 BeaconTable: 1;
tANI_U8 BeaconActive: 1;
tANI_U8 BeaconPassive: 1;
tANI_U8 repeated: 1;
tANI_U8 parallel: 1;
tANI_U8 NeighborRpt: 1;
tANI_U8 LinkMeasurement: 1;
tANI_U8 present;
#else
tANI_U8 present;
tANI_U8 LinkMeasurement: 1;
tANI_U8 NeighborRpt: 1;
tANI_U8 parallel: 1;
tANI_U8 repeated: 1;
tANI_U8 BeaconPassive: 1;
tANI_U8 BeaconActive: 1;
tANI_U8 BeaconTable: 1;
tANI_U8 BeaconRepCond: 1;
tANI_U8 FrameMeasurement: 1;
tANI_U8 ChannelLoad: 1;
tANI_U8 NoiseHistogram: 1;
tANI_U8 statistics: 1;
tANI_U8 LCIMeasurement: 1;
tANI_U8 LCIAzimuth: 1;
tANI_U8 TCMCapability: 1;
tANI_U8 triggeredTCM: 1;
tANI_U8 APChanReport: 1;
tANI_U8 RRMMIBEnabled: 1;
tANI_U8 operatingChanMax: 3;
tANI_U8 nonOperatinChanMax: 3;
tANI_U8 MeasurementPilot: 3;
tANI_U8 MeasurementPilotEnabled: 1;
tANI_U8 NeighborTSFOffset: 1;
tANI_U8 RCPIMeasurement: 1;
tANI_U8 RSNIMeasurement: 1;
tANI_U8 BssAvgAccessDelay: 1;
tANI_U8 BSSAvailAdmission: 1;
tANI_U8 AntennaInformation: 1;
tANI_U8 reserved: 6;
#endif
} tSirMacRRMEnabledCap, *tpSirMacRRMEnabledCap;
/* ----------------
* EDCA Profiles
* ---------------
*/
#define EDCA_AC_BE 0
#define EDCA_AC_BK 1
#define EDCA_AC_VI 2
#define EDCA_AC_VO 3
#define AC_MGMT_LO 4
#define AC_MGMT_HI 5
#define MAX_NUM_AC 4
// access categories
#define SIR_MAC_EDCAACI_BESTEFFORT (EDCA_AC_BE)
#define SIR_MAC_EDCAACI_BACKGROUND (EDCA_AC_BK)
#define SIR_MAC_EDCAACI_VIDEO (EDCA_AC_VI)
#define SIR_MAC_EDCAACI_VOICE (EDCA_AC_VO)
// access category record
typedef __ani_attr_pre_packed struct sSirMacAciAifsn
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 rsvd : 1;
tANI_U8 aci : 2;
tANI_U8 acm : 1;
tANI_U8 aifsn : 4;
#else
tANI_U8 aifsn : 4;
tANI_U8 acm : 1;
tANI_U8 aci : 2;
tANI_U8 rsvd : 1;
#endif
} __ani_attr_packed tSirMacAciAifsn;
// contention window size
typedef __ani_attr_pre_packed struct sSirMacCW
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 max : 4;
tANI_U8 min : 4;
#else
tANI_U8 min : 4;
tANI_U8 max : 4;
#endif
} __ani_attr_packed tSirMacCW;
typedef __ani_attr_pre_packed struct sSirMacEdcaParamRecord
{
tSirMacAciAifsn aci;
tSirMacCW cw;
tANI_U16 txoplimit;
} __ani_attr_packed tSirMacEdcaParamRecord;
typedef __ani_attr_pre_packed struct sSirMacQosInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 uapsd : 1;
tANI_U8 txopreq : 1;
tANI_U8 qreq : 1;
tANI_U8 qack : 1;
tANI_U8 count : 4;
#else
tANI_U8 count : 4;
tANI_U8 qack : 1;
tANI_U8 qreq : 1;
tANI_U8 txopreq : 1;
tANI_U8 uapsd : 1;
#endif
} __ani_attr_packed tSirMacQosInfo;
typedef __ani_attr_pre_packed struct sSirMacQosInfoStation
{
#ifdef ANI_LITTLE_BIT_ENDIAN
tANI_U8 acvo_uapsd:1;
tANI_U8 acvi_uapsd:1;
tANI_U8 acbk_uapsd:1;
tANI_U8 acbe_uapsd:1;
tANI_U8 qack:1;
tANI_U8 maxSpLen:2;
tANI_U8 moreDataAck:1;
#else
tANI_U8 moreDataAck:1;
tANI_U8 maxSpLen:2;
tANI_U8 qack:1;
tANI_U8 acbe_uapsd:1;
tANI_U8 acbk_uapsd:1;
tANI_U8 acvi_uapsd:1;
tANI_U8 acvo_uapsd:1;
#endif
} __ani_attr_packed tSirMacQosInfoStation, *tpSirMacQosInfoStation;
typedef __ani_attr_pre_packed struct sSirMacEdcaParamSetIE
{
tANI_U8 type;
tANI_U8 length;
tSirMacQosInfo qosInfo;
tANI_U8 rsvd;
tSirMacEdcaParamRecord acbe; // best effort
tSirMacEdcaParamRecord acbk; // background
tSirMacEdcaParamRecord acvi; // video
tSirMacEdcaParamRecord acvo; // voice
} __ani_attr_packed tSirMacEdcaParamSetIE;
typedef __ani_attr_pre_packed struct sSirMacQoSParams
{
tANI_U8 count;
tANI_U16 limit;
tANI_U8 CWmin[8];
tANI_U8 AIFS[8];
} __ani_attr_packed tSirMacQoSParams;
// ts info direction field can take any of these values
#define SIR_MAC_DIRECTION_UPLINK 0
#define SIR_MAC_DIRECTION_DNLINK 1
#define SIR_MAC_DIRECTION_DIRECT 2
#define SIR_MAC_DIRECTION_BIDIR 3
// access policy
// reserved 0
#define SIR_MAC_ACCESSPOLICY_EDCA 1
#define SIR_MAC_ACCESSPOLICY_HCCA 2
#define SIR_MAC_ACCESSPOLICY_BOTH 3
typedef __ani_attr_pre_packed struct sSirMacTSInfoTfc
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 burstSizeDefn : 1;
tANI_U8 reserved :7;
#else
tANI_U8 reserved :7;
tANI_U8 burstSizeDefn : 1;
#endif
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 ackPolicy : 2;
tANI_U16 userPrio : 3;
tANI_U16 psb : 1;
tANI_U16 aggregation : 1;
tANI_U16 accessPolicy : 2;
tANI_U16 direction : 2;
tANI_U16 tsid : 4;
tANI_U16 trafficType : 1;
#else
tANI_U16 trafficType : 1;
tANI_U16 tsid : 4;
tANI_U16 direction : 2;
tANI_U16 accessPolicy : 2;
tANI_U16 aggregation : 1;
tANI_U16 psb : 1;
tANI_U16 userPrio : 3;
tANI_U16 ackPolicy : 2;
#endif
} __ani_attr_packed tSirMacTSInfoTfc;
typedef __ani_attr_pre_packed struct sSirMacTSInfoSch
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 rsvd : 7;
tANI_U8 schedule : 1;
#else
tANI_U8 schedule : 1;
tANI_U8 rsvd : 7;
#endif
} __ani_attr_packed tSirMacTSInfoSch;
typedef __ani_attr_pre_packed struct sSirMacTSInfo
{
tSirMacTSInfoTfc traffic;
tSirMacTSInfoSch schedule;
} __ani_attr_packed tSirMacTSInfo;
typedef __ani_attr_pre_packed struct sSirMacTspecIE
{
tANI_U8 type;
tANI_U8 length;
tSirMacTSInfo tsinfo;
tANI_U16 nomMsduSz;
tANI_U16 maxMsduSz;
tANI_U32 minSvcInterval;
tANI_U32 maxSvcInterval;
tANI_U32 inactInterval;
tANI_U32 suspendInterval;
tANI_U32 svcStartTime;
tANI_U32 minDataRate;
tANI_U32 meanDataRate;
tANI_U32 peakDataRate;
tANI_U32 maxBurstSz;
tANI_U32 delayBound;
tANI_U32 minPhyRate;
tANI_U16 surplusBw;
tANI_U16 mediumTime;
}
__ani_attr_packed tSirMacTspecIE;
// frame classifier types
#define SIR_MAC_TCLASTYPE_ETHERNET 0
#define SIR_MAC_TCLASTYPE_TCPUDPIP 1
#define SIR_MAC_TCLASTYPE_8021DQ 2
// reserved 3-255
typedef __ani_attr_pre_packed struct sSirMacTclasParamEthernet
{
tANI_U8 srcAddr[6];
tANI_U8 dstAddr[6];
tANI_U16 type;
}__ani_attr_packed tSirMacTclasParamEthernet;
typedef __ani_attr_pre_packed struct sSirMacTclasParamIPv4
{
tANI_U8 version;
tANI_U8 srcIpAddr[4];
tANI_U8 dstIpAddr[4];
tANI_U16 srcPort;
tANI_U16 dstPort;
tANI_U8 dscp;
tANI_U8 protocol;
tANI_U8 rsvd;
} __ani_attr_packed tSirMacTclasParamIPv4;
#define SIR_MAC_TCLAS_IPV4 4
#define SIR_MAC_TCLAS_IPV6 6
typedef __ani_attr_pre_packed struct sSirMacTclasParamIPv6
{
tANI_U8 version;
tANI_U8 srcIpAddr[16];
tANI_U8 dstIpAddr[16];
tANI_U16 srcPort;
tANI_U16 dstPort;
tANI_U8 flowLabel[3];
} __ani_attr_packed tSirMacTclasParamIPv6;
typedef __ani_attr_pre_packed struct sSirMacTclasParam8021dq
{
tANI_U16 tag;
} __ani_attr_packed tSirMacTclasParam8021dq;
typedef __ani_attr_pre_packed struct sSirMacTclasIE
{
tANI_U8 type;
tANI_U8 length;
tANI_U8 userPrio;
tANI_U8 classifierType;
tANI_U8 classifierMask;
} __ani_attr_packed tSirMacTclasIE;
typedef __ani_attr_pre_packed struct sSirMacTsDelayIE
{
tANI_U8 type;
tANI_U8 length;
tANI_U32 delay;
} __ani_attr_packed tSirMacTsDelayIE;
typedef __ani_attr_pre_packed struct sSirMacScheduleInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 rsvd : 9;
tANI_U16 direction : 2;
tANI_U16 tsid : 4;
tANI_U16 aggregation : 1;
#else
tANI_U16 aggregation : 1;
tANI_U16 tsid : 4;
tANI_U16 direction : 2;
tANI_U16 rsvd : 9;
#endif
} __ani_attr_packed tSirMacScheduleInfo;
typedef __ani_attr_pre_packed struct sSirMacScheduleIE
{
tANI_U8 type;
tANI_U8 length;
tSirMacScheduleInfo info;
tANI_U32 svcStartTime;
tANI_U32 svcInterval;
tANI_U16 maxSvcDuration;
tANI_U16 specInterval;
} __ani_attr_packed tSirMacScheduleIE;
typedef __ani_attr_pre_packed struct sSirMacQosCapabilityIE
{
tANI_U8 type;
tANI_U8 length;
tSirMacQosInfo qosInfo;
} __ani_attr_packed tSirMacQosCapabilityIE;
typedef __ani_attr_pre_packed struct sSirMacQosCapabilityStaIE
{
tANI_U8 type;
tANI_U8 length;
tSirMacQosInfoStation qosInfo;
} __ani_attr_packed tSirMacQosCapabilityStaIE;
typedef tANI_U32 tSirMacTimeStamp[2];
typedef tANI_U16 tSirMacBeaconInterval;
typedef tANI_U16 tSirMacListenInterval;
typedef tANI_U8 tSirMacChanNum;
typedef tANI_U8 tSirMacAddr[6];
// IE definitions
typedef __ani_attr_pre_packed struct sSirMacSSidIE
{
tANI_U8 type;
tSirMacSSid ssId;
} __ani_attr_packed tSirMacSSidIE;
typedef __ani_attr_pre_packed struct sSirMacRateSetIE
{
tANI_U8 type;
tSirMacRateSet supportedRateSet;
} __ani_attr_packed tSirMacRateSetIE;
typedef __ani_attr_pre_packed struct sSirMacDsParamSetIE
{
tANI_U8 type;
tANI_U8 length;
tSirMacChanNum channelNumber;
} __ani_attr_packed tSirMacDsParamSetIE;
typedef __ani_attr_pre_packed struct sSirMacCfParamSetIE
{
tANI_U8 type;
tANI_U8 length;
tSirMacCfParamSet cfParams;
} __ani_attr_packed tSirMacCfParamSetIE;
typedef __ani_attr_pre_packed struct sSirMacChanInfo
{
tSirMacChanNum firstChanNum;
tANI_U8 numChannels;
tANI_S8 maxTxPower;
} __ani_attr_packed tSirMacChanInfo;
typedef __ani_attr_pre_packed struct sSirMacNonErpPresentIE
{
tANI_U8 type;
tANI_U8 length;
tANI_U8 erp;
} __ani_attr_packed tSirMacNonErpPresentIE;
typedef struct sSirMacPowerCapabilityIE
{
tANI_U8 type;
tANI_U8 length;
tANI_U8 minTxPower;
tANI_U8 maxTxPower;
} tSirMacPowerCapabilityIE;
typedef struct sSirMacSupportedChannelIE
{
tANI_U8 type;
tANI_U8 length;
tANI_U8 supportedChannels[96];
} tSirMacSupportedChannelIE;
typedef struct sSirMacMeasReqField
{
tANI_U8 channelNumber;
tANI_U8 measStartTime[8];
tANI_U16 measDuration;
} tSirMacMeasReqField, *tpSirMacMeasReqField;
typedef struct sSirMacMeasReqIE
{
tANI_U8 type;
tANI_U8 length;
tANI_U8 measToken;
tANI_U8 measReqMode;
tANI_U8 measType;
tSirMacMeasReqField measReqField;
} tSirMacMeasReqIE, *tpSirMacMeasReqIE;
#define SIR_MAC_MAX_SUPP_RATES 32
#define SIR_MAC_MAX_SUPP_CHANNELS 100
#define SIR_MAC_MAX_SUPP_OPER_CLASSES 32
#define SIR_MAC_MAX_EXTN_CAP 8
// VHT Capabilities Info
typedef __ani_attr_pre_packed struct sSirMacVHTCapabilityInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U32 reserved1: 2;
tANI_U32 txAntPattern: 1;
tANI_U32 rxAntPattern: 1;
tANI_U32 vhtLinkAdaptCap: 2;
tANI_U32 maxAMPDULenExp: 3;
tANI_U32 htcVHTCap: 1;
tANI_U32 vhtTXOPPS: 1;
tANI_U32 muBeamformeeCap: 1;
tANI_U32 muBeamformerCap: 1;
tANI_U32 numSoundingDim: 3;
tANI_U32 csnofBeamformerAntSup: 3;
tANI_U32 suBeamformeeCap: 1;
tANI_U32 suBeamFormerCap: 1;
tANI_U32 rxSTBC: 3;
tANI_U32 txSTBC: 1;
tANI_U32 shortGI160and80plus80MHz: 1;
tANI_U32 shortGI80MHz: 1;
tANI_U32 ldpcCodingCap: 1;
tANI_U32 supportedChannelWidthSet: 2;
tANI_U32 maxMPDULen: 2;
#else
tANI_U32 maxMPDULen: 2;
tANI_U32 supportedChannelWidthSet: 2;
tANI_U32 ldpcCodingCap: 1;
tANI_U32 shortGI80MHz: 1;
tANI_U32 shortGI160and80plus80MHz: 1;
tANI_U32 txSTBC: 1;
tANI_U32 rxSTBC: 3;
tANI_U32 suBeamFormerCap: 1;
tANI_U32 suBeamformeeCap: 1;
tANI_U32 csnofBeamformerAntSup: 3;
tANI_U32 numSoundingDim: 3;
tANI_U32 muBeamformerCap: 1;
tANI_U32 muBeamformeeCap: 1;
tANI_U32 vhtTXOPPS: 1;
tANI_U32 htcVHTCap: 1;
tANI_U32 maxAMPDULenExp: 3;
tANI_U32 vhtLinkAdaptCap: 2;
tANI_U32 rxAntPattern: 1;
tANI_U32 txAntPattern: 1;
tANI_U32 reserved1: 2;
#endif
} __ani_attr_packed tSirMacVHTCapabilityInfo;
typedef __ani_attr_pre_packed struct sSirMacVHTTxSupDataRateInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 reserved: 3;
tANI_U16 txSupDataRate: 13;
#else
tANI_U16 txSupDataRate: 13;
tANI_U16 reserved: 3;
#endif
}__ani_attr_packed tSirMacVHTTxSupDataRateInfo;
typedef __ani_attr_pre_packed struct sSirMacVHTRxSupDataRateInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 reserved: 3;
tANI_U16 rxSupDataRate: 13;
#else
tANI_U16 rxSupDataRate: 13;
tANI_U16 reserved: 3;
#endif
}__ani_attr_packed tSirMacVHTRxSupDataRateInfo;
/**
* struct sSirVhtMcsInfo - VHT MCS information
* @rx_mcs_map: RX MCS map 2 bits for each stream, total 8 streams
* @rx_highest: Indicates highest long GI VHT PPDU data rate
* STA can receive. Rate expressed in units of 1 Mbps.
* If this field is 0 this value should not be used to
* consider the highest RX data rate supported.
* @tx_mcs_map: TX MCS map 2 bits for each stream, total 8 streams
* @tx_highest: Indicates highest long GI VHT PPDU data rate
* STA can transmit. Rate expressed in units of 1 Mbps.
* If this field is 0 this value should not be used to
* consider the highest TX data rate supported.
*/
typedef struct sSirVhtMcsInfo {
tANI_U16 rxMcsMap;
tANI_U16 rxHighest;
tANI_U16 txMcsMap;
tANI_U16 txHighest;
}tSirVhtMcsInfo;
/**
* struct sSirVHtCap - VHT capabilities
*
* This structure is the "VHT capabilities element" as
* described in 802.11ac D3.0 8.4.2.160
* @vht_cap_info: VHT capability info
* @supp_mcs: VHT MCS supported rates
*/
typedef struct sSirVHtCap {
tANI_U32 vhtCapInfo;
tSirVhtMcsInfo suppMcs;
}tSirVHTCap;
/**
* struct sSirHtCap - HT capabilities
*
* This structure refers to "HT capabilities element" as
* described in 802.11n draft section 7.3.2.52
*/
typedef struct sSirHtCap {
tANI_U16 capInfo;
tANI_U8 ampduParamsInfo;
tANI_U8 suppMcsSet[16];
tANI_U16 extendedHtCapInfo;
tANI_U32 txBFCapInfo;
tANI_U8 antennaSelectionInfo;
}tSirHTCap;
// HT Cap and HT IE Size defines
#define HT_CAPABILITY_IE_SIZE 28
#define HT_INFO_IE_SIZE 24
//
// Determines the current operating mode of the 802.11n STA
//
typedef enum eSirMacHTOperatingMode
{
eSIR_HT_OP_MODE_PURE, // No Protection
eSIR_HT_OP_MODE_OVERLAP_LEGACY, // Overlap Legacy device present, protection is optional
eSIR_HT_OP_MODE_NO_LEGACY_20MHZ_HT, // No legacy device, but 20 MHz HT present
eSIR_HT_OP_MODE_MIXED /* Protection is required */
} tSirMacHTOperatingMode;
// Spatial Multiplexing(SM) Power Save mode
typedef enum eSirMacHTMIMOPowerSaveState
{
eSIR_HT_MIMO_PS_STATIC = 0, // Static SM Power Save mode
eSIR_HT_MIMO_PS_DYNAMIC = 1, // Dynamic SM Power Save mode
eSIR_HT_MIMO_PS_NA = 2, // reserved
eSIR_HT_MIMO_PS_NO_LIMIT = 3 // SM Power Save disabled
} tSirMacHTMIMOPowerSaveState;
typedef enum eSirMacHTChannelWidth
{
eHT_CHANNEL_WIDTH_20MHZ = 0,
eHT_CHANNEL_WIDTH_40MHZ = 1,
#ifdef WLAN_FEATURE_11AC
eHT_CHANNEL_WIDTH_80MHZ = 2,
eHT_CHANNEL_WIDTH_160MHZ = 3,
#endif
eHT_MAX_CHANNEL_WIDTH
} tSirMacHTChannelWidth;
typedef enum eSirMacHTChannelType
{
eHT_CHAN_NO_HT = 0,
eHT_CHAN_HT20 = 1,
eHT_CHAN_HT40MINUS = 2,
eHT_CHAN_HT40PLUS = 3
} tSirMacHTChannelType;
//Packet struct for HT capability
typedef __ani_attr_pre_packed struct sHtCaps {
tANI_U16 advCodingCap: 1;
tANI_U16 supportedChannelWidthSet: 1;
tANI_U16 mimoPowerSave: 2;
tANI_U16 greenField: 1;
tANI_U16 shortGI20MHz: 1;
tANI_U16 shortGI40MHz: 1;
tANI_U16 txSTBC: 1;
tANI_U16 rxSTBC: 2;
tANI_U16 delayedBA: 1;
tANI_U16 maximalAMSDUsize: 1;
tANI_U16 dsssCckMode40MHz: 1;
tANI_U16 psmp: 1;
tANI_U16 stbcControlFrame: 1;
tANI_U16 lsigTXOPProtection: 1;
tANI_U8 maxRxAMPDUFactor: 2;
tANI_U8 mpduDensity: 3;
tANI_U8 reserved1: 3;
tANI_U8 supportedMCSSet[16];
tANI_U16 pco: 1;
tANI_U16 transitionTime: 2;
tANI_U16 reserved2: 5;
tANI_U16 mcsFeedback: 2;
tANI_U16 reserved3: 6;
tANI_U32 txBF: 1;
tANI_U32 rxStaggeredSounding: 1;
tANI_U32 txStaggeredSounding: 1;
tANI_U32 rxZLF: 1;
tANI_U32 txZLF: 1;
tANI_U32 implicitTxBF: 1;
tANI_U32 calibration: 2;
tANI_U32 explicitCSITxBF: 1;
tANI_U32 explicitUncompressedSteeringMatrix: 1;
tANI_U32 explicitBFCSIFeedback: 3;
tANI_U32 explicitUncompressedSteeringMatrixFeedback: 3;
tANI_U32 explicitCompressedSteeringMatrixFeedback: 3;
tANI_U32 csiNumBFAntennae: 2;
tANI_U32 uncompressedSteeringMatrixBFAntennae: 2;
tANI_U32 compressedSteeringMatrixBFAntennae: 2;
tANI_U32 reserved4: 7;
tANI_U8 antennaSelection: 1;
tANI_U8 explicitCSIFeedbackTx: 1;
tANI_U8 antennaIndicesFeedbackTx: 1;
tANI_U8 explicitCSIFeedback: 1;
tANI_U8 antennaIndicesFeedback: 1;
tANI_U8 rxAS: 1;
tANI_U8 txSoundingPPDUs: 1;
tANI_U8 reserved5: 1;
} __ani_attr_packed tHtCaps;
/* During 11h channel switch, the AP can indicate if the
* STA needs to stop the transmission or continue until the
* channel-switch.
* eSIR_CHANSW_MODE_NORMAL - STA can continue transmission
* eSIR_CHANSW_MODE_SILENT - STA should stop transmission
*/
typedef enum eSirMacChanSwMode
{
eSIR_CHANSW_MODE_NORMAL = 0,
eSIR_CHANSW_MODE_SILENT = 1
} tSirMacChanSwitchMode;
typedef __ani_attr_pre_packed struct _BarControl {
#ifndef ANI_BIG_BYTE_ENDIAN
tANI_U16 barAckPolicy:1;
tANI_U16 multiTID:1;
tANI_U16 bitMap:1;
tANI_U16 rsvd:9;
tANI_U16 numTID:4;
#else
tANI_U16 numTID:4;
tANI_U16 rsvd:9;
tANI_U16 bitMap:1;
tANI_U16 multiTID:1;
tANI_U16 barAckPolicy:1;
#endif
}__ani_attr_packed barCtrlType;
typedef __ani_attr_pre_packed struct _BARFrmStruct {
tSirMacFrameCtl fc;
tANI_U16 duration;
tSirMacAddr rxAddr;
tSirMacAddr txAddr;
barCtrlType barControl;
tSirMacSeqCtl ssnCtrl;
}__ani_attr_packed BARFrmType;
// Supported MCS set
#define SIZE_OF_SUPPORTED_MCS_SET 16
#define SIZE_OF_BASIC_MCS_SET 16
#define VALID_MCS_SIZE 77 //0-76
#define MCS_RX_HIGHEST_SUPPORTED_RATE_BYTE_OFFSET 10
// This is not clear, Count 8 based from NV supported MCS count
#define VALID_MAX_MCS_INDEX 8
//
// The following enums will be used to get the "current" HT Capabilities of
// the local STA in a generic fashion. In other words, the following enums
// identify the HT capabilities that can be queried or set.
//
typedef enum eHTCapability
{
eHT_LSIG_TXOP_PROTECTION,
eHT_STBC_CONTROL_FRAME,
eHT_PSMP,
eHT_DSSS_CCK_MODE_40MHZ,
eHT_MAX_AMSDU_LENGTH,
eHT_MAX_AMSDU_NUM,
eHT_DELAYED_BA,
eHT_RX_STBC,
eHT_TX_STBC,
eHT_SHORT_GI_40MHZ,
eHT_SHORT_GI_20MHZ,
eHT_GREENFIELD,
eHT_MIMO_POWER_SAVE,
eHT_SUPPORTED_CHANNEL_WIDTH_SET,
eHT_ADVANCED_CODING,
eHT_MAX_RX_AMPDU_FACTOR,
eHT_MPDU_DENSITY,
eHT_PCO,
eHT_TRANSITION_TIME,
eHT_MCS_FEEDBACK,
eHT_TX_BEAMFORMING,
eHT_ANTENNA_SELECTION,
// The following come under Additional HT Capabilities
eHT_SI_GRANULARITY,
eHT_CONTROLLED_ACCESS,
eHT_RIFS_MODE,
eHT_RECOMMENDED_TX_WIDTH_SET,
eHT_EXTENSION_CHANNEL_OFFSET,
eHT_OP_MODE,
eHT_BASIC_STBC_MCS,
eHT_DUAL_CTS_PROTECTION,
eHT_LSIG_TXOP_PROTECTION_FULL_SUPPORT,
eHT_PCO_ACTIVE,
eHT_PCO_PHASE
} tHTCapability;
// HT Capabilities Info
typedef __ani_attr_pre_packed struct sSirMacHTCapabilityInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 lsigTXOPProtection:1; // Dynamic state
tANI_U16 stbcControlFrame:1; // Static via CFG
tANI_U16 psmp:1; // Static via CFG
tANI_U16 dsssCckMode40MHz:1; // Static via CFG
tANI_U16 maximalAMSDUsize:1; // Static via CFG
tANI_U16 delayedBA:1; // Static via CFG
tANI_U16 rxSTBC:2; // Static via CFG
tANI_U16 txSTBC:1; // Static via CFG
tANI_U16 shortGI40MHz:1; // Static via CFG
tANI_U16 shortGI20MHz:1; // Static via CFG
tANI_U16 greenField:1; // Static via CFG
tANI_U16 mimoPowerSave:2; // Dynamic state
tANI_U16 supportedChannelWidthSet:1; // Static via CFG
tANI_U16 advCodingCap:1; // Static via CFG
#else
tANI_U16 advCodingCap:1;
tANI_U16 supportedChannelWidthSet:1;
tANI_U16 mimoPowerSave:2;
tANI_U16 greenField:1;
tANI_U16 shortGI20MHz:1;
tANI_U16 shortGI40MHz:1;
tANI_U16 txSTBC:1;
tANI_U16 rxSTBC:2;
tANI_U16 delayedBA:1;
tANI_U16 maximalAMSDUsize:1;
tANI_U16 dsssCckMode40MHz:1;
tANI_U16 psmp:1;
tANI_U16 stbcControlFrame:1;
tANI_U16 lsigTXOPProtection:1;
#endif
} __ani_attr_packed tSirMacHTCapabilityInfo;
// HT Parameters Info
typedef __ani_attr_pre_packed struct sSirMacHTParametersInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 reserved:3;
tANI_U8 mpduDensity:3; // Dynamic state
tANI_U8 maxRxAMPDUFactor:2; // Dynamic state
#else
tANI_U8 maxRxAMPDUFactor:2;
tANI_U8 mpduDensity:3;
tANI_U8 reserved:3;
#endif
} __ani_attr_packed tSirMacHTParametersInfo;
// Extended HT Capabilities Info
typedef __ani_attr_pre_packed struct sSirMacExtendedHTCapabilityInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 reserved2:6;
tANI_U16 mcsFeedback:2; // Static via CFG
tANI_U16 reserved1:5;
tANI_U16 transitionTime:2; // Static via CFG
tANI_U16 pco:1; // Static via CFG
#else
tANI_U16 pco:1;
tANI_U16 transitionTime:2;
tANI_U16 reserved1:5;
tANI_U16 mcsFeedback:2;
tANI_U16 reserved2:6;
#endif
} __ani_attr_packed tSirMacExtendedHTCapabilityInfo;
//IEEE 802.11n/D7.0 - 7.3.2.57.4
//Part of the "supported MCS set field"
typedef __ani_attr_pre_packed struct sSirMacRxHighestSupportRate
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 reserved : 6;
tANI_U16 rate : 10;
#else
tANI_U16 rate : 10;
tANI_U16 reserved : 6;
#endif
} __ani_attr_packed tSirMacRxHighestSupportRate, *tpSirMacRxHighestSupportRate;
// Transmit Beam Forming Capabilities Info
typedef __ani_attr_pre_packed struct sSirMacTxBFCapabilityInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U32 reserved:7;
tANI_U32 compressedSteeringMatrixBFAntennae:2; // Static via CFG
tANI_U32 uncompressedSteeringMatrixBFAntennae:2; // Static via CFG
tANI_U32 csiNumBFAntennae:2; // Static via CFG
tANI_U32 explicitCompressedSteeringMatrixFeedback:3; // Static via CFG
tANI_U32 explicitUncompressedSteeringMatrixFeedback:3; // Static via CFG
tANI_U32 explicitBFCSIFeedback:3; // Static via CFG
tANI_U32 explicitUncompressedSteeringMatrix:1; // Static via CFG
tANI_U32 explicitCSITxBF:1; // Static via CFG
tANI_U32 calibration:2; // Static via CFG
tANI_U32 implicitTxBF:1; // Static via CFG
tANI_U32 txZLF:1; // Static via CFG
tANI_U32 rxZLF:1; // Static via CFG
tANI_U32 txStaggeredSounding:1; // Static via CFG
tANI_U32 rxStaggeredSounding:1; // Static via CFG
tANI_U32 txBF:1; // Static via CFG
#else
tANI_U32 txBF:1;
tANI_U32 rxStaggeredSounding:1;
tANI_U32 txStaggeredSounding:1;
tANI_U32 rxZLF:1;
tANI_U32 txZLF:1;
tANI_U32 implicitTxBF:1;
tANI_U32 calibration:2;
tANI_U32 explicitCSITxBF:1;
tANI_U32 explicitUncompressedSteeringMatrix:1;
tANI_U32 explicitBFCSIFeedback:3;
tANI_U32 explicitUncompressedSteeringMatrixFeedback:3;
tANI_U32 explicitCompressedSteeringMatrixFeedback:3;
tANI_U32 csiNumBFAntennae:2;
tANI_U32 uncompressedSteeringMatrixBFAntennae:2;
tANI_U32 compressedSteeringMatrixBFAntennae:2;
tANI_U32 reserved:7;
#endif
} __ani_attr_packed tSirMacTxBFCapabilityInfo;
// Antenna Selection Capability Info
typedef __ani_attr_pre_packed struct sSirMacASCapabilityInfo
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 reserved2:1;
tANI_U8 txSoundingPPDUs:1; // Static via CFG
tANI_U8 rxAS:1; // Static via CFG
tANI_U8 antennaIndicesFeedback:1; // Static via CFG
tANI_U8 explicitCSIFeedback:1; // Static via CFG
tANI_U8 antennaIndicesFeedbackTx:1; // Static via CFG
tANI_U8 explicitCSIFeedbackTx:1; // Static via CFG
tANI_U8 antennaSelection:1; // Static via CFG
#else
tANI_U8 antennaSelection:1;
tANI_U8 explicitCSIFeedbackTx:1;
tANI_U8 antennaIndicesFeedbackTx:1;
tANI_U8 explicitCSIFeedback:1;
tANI_U8 antennaIndicesFeedback:1;
tANI_U8 rxAS:1;
tANI_U8 txSoundingPPDUs:1;
tANI_U8 reserved2:1;
#endif
} __ani_attr_packed tSirMacASCapabilityInfo;
// Additional HT IE Field1
typedef __ani_attr_pre_packed struct sSirMacHTInfoField1
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U8 serviceIntervalGranularity:3; // Dynamic state
tANI_U8 controlledAccessOnly:1; // Static via CFG
tANI_U8 rifsMode:1; // Dynamic state
tANI_U8 recommendedTxWidthSet:1; // Dynamic state
tANI_U8 secondaryChannelOffset:2; // Dynamic state
#else
tANI_U8 secondaryChannelOffset:2;
tANI_U8 recommendedTxWidthSet:1;
tANI_U8 rifsMode:1;
tANI_U8 controlledAccessOnly:1;
tANI_U8 serviceIntervalGranularity:3;
#endif
} __ani_attr_packed tSirMacHTInfoField1;
// Additional HT IE Field2
typedef __ani_attr_pre_packed struct sSirMacHTInfoField2
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 reserved:11;
tANI_U16 obssNonHTStaPresent:1; /*added for Obss */
tANI_U16 transmitBurstLimit: 1;
tANI_U16 nonGFDevicesPresent:1;
tANI_U16 opMode:2; // Dynamic state
#else
tANI_U16 opMode:2;
tANI_U16 nonGFDevicesPresent:1;
tANI_U16 transmitBurstLimit: 1;
tANI_U16 obssNonHTStaPresent:1; /*added for Obss */
tANI_U16 reserved:11;
#endif
} __ani_attr_packed tSirMacHTInfoField2;
// Additional HT IE Field3
typedef __ani_attr_pre_packed struct sSirMacHTInfoField3
{
#ifndef ANI_LITTLE_BIT_ENDIAN
tANI_U16 reserved:4;
tANI_U16 pcoPhase:1; // Dynamic state
tANI_U16 pcoActive:1; // Dynamic state
tANI_U16 lsigTXOPProtectionFullSupport:1; // Dynamic state
tANI_U16 secondaryBeacon:1; // Dynamic state
tANI_U16 dualCTSProtection:1; // Dynamic state
tANI_U16 basicSTBCMCS:7; // Dynamic state
#else
tANI_U16 basicSTBCMCS:7;
tANI_U16 dualCTSProtection:1;
tANI_U16 secondaryBeacon:1;
tANI_U16 lsigTXOPProtectionFullSupport:1;
tANI_U16 pcoActive:1;
tANI_U16 pcoPhase:1;
tANI_U16 reserved:4;
#endif
} __ani_attr_packed tSirMacHTInfoField3;
typedef __ani_attr_pre_packed struct sSirMacProbeReqFrame
{
tSirMacSSidIE ssIdIE;
tSirMacRateSetIE rateSetIE;
tSirMacRateSetIE extendedRateSetIE;
} __ani_attr_packed tSirMacProbeReqFrame, *tpSirMacProbeReqFrame;
typedef __ani_attr_pre_packed struct sSirMacProbeRspFrame
{
tSirMacTimeStamp ts;
tSirMacBeaconInterval beaconInterval;
tSirMacCapabilityInfo capabilityInfo;
tSirMacSSidIE ssIdIE;
tSirMacRateSetIE rateSetIE;
tSirMacRateSetIE extendedRateSetIE;
tSirMacNonErpPresentIE nonErpPresent;
tSirMacDsParamSetIE dsParamsIE;
tSirMacCfParamSetIE cfParamsIE;
} __ani_attr_packed tSirMacProbeRspFrame, *tpSirMacProbeRspFrame;
typedef __ani_attr_pre_packed struct sSirMacAuthFrameBody
{
tANI_U16 authAlgoNumber;
tANI_U16 authTransactionSeqNumber;
tANI_U16 authStatusCode;
tANI_U8 type; // = SIR_MAC_CHALLENGE_TEXT_EID
tANI_U8 length; // = SIR_MAC_AUTH_CHALLENGE_LENGTH
tANI_U8 challengeText[SIR_MAC_AUTH_CHALLENGE_LENGTH];
#ifdef WLAN_FEATURE_FILS_SK
tSirMacRsnInfo rsn_ie;
uint8_t assoc_delay_info;
uint8_t session[SIR_FILS_SESSION_LENGTH];
uint8_t wrapped_data_len;
uint8_t wrapped_data[SIR_FILS_WRAPPED_DATA_MAX_SIZE];
uint8_t nonce[SIR_FILS_NONCE_LENGTH];
#endif
} __ani_attr_packed tSirMacAuthFrameBody, *tpSirMacAuthFrameBody;
typedef __ani_attr_pre_packed struct sSirMacAuthenticationFrame
{
tSirMacAuthFrameBody authFrameBody;
} __ani_attr_packed tSirMacAuthFrame, *tpSirMacAuthFrame;
typedef __ani_attr_pre_packed struct sSirMacAssocReqFrame
{
tSirMacCapabilityInfo capabilityInfo;
tANI_U16 listenInterval;
tSirMacSSidIE ssIdIE;
tSirMacRateSetIE rateSetIE;
tSirMacRateSetIE extendedRateSetIE;
} __ani_attr_packed tSirMacAssocReqFrame, *tpSirMacAssocReqFrame;
typedef __ani_attr_pre_packed struct sSirMacAssocRspFrame
{
tSirMacCapabilityInfo capabilityInfo;
tANI_U16 statusCode;
tANI_U16 aid;
tSirMacRateSetIE supportedRates;
tSirMacRateSetIE extendedRateSetIE;
} __ani_attr_packed tSirMacAssocRspFrame, *tpSirMacAssocRspFrame;
typedef __ani_attr_pre_packed struct sSirMacDisassocFrame
{
tANI_U16 reasonCode;
} __ani_attr_packed tSirMacDisassocFrame, *tpSirMacDisassocFrame;
typedef __ani_attr_pre_packed struct sDSirMacDeauthFrame
{
tANI_U16 reasonCode;
} __ani_attr_packed tSirMacDeauthFrame, *tpSirMacDeauthFrame;
/// Common header for all action frames
typedef __ani_attr_pre_packed struct sSirMacActionFrameHdr
{
tANI_U8 category;
tANI_U8 actionID;
} __ani_attr_packed tSirMacActionFrameHdr, *tpSirMacActionFrameHdr;
#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
typedef __ani_attr_pre_packed struct sSirMacVendorSpecificFrameHdr
{
tANI_U8 category;
tANI_U8 Oui[4];
} __ani_attr_packed tSirMacVendorSpecificFrameHdr, *tpSirMacVendorSpecificFrameHdr;
#endif
typedef __ani_attr_pre_packed struct sSirMacVendorSpecificPublicActionFrameHdr
{
tANI_U8 category;
tANI_U8 actionID;
tANI_U8 Oui[4];
tANI_U8 OuiSubType;
tANI_U8 dialogToken;
} __ani_attr_packed tSirMacVendorSpecificPublicActionFrameHdr, *tpSirMacVendorSpecificPublicActionFrameHdr;
typedef __ani_attr_pre_packed struct sSirMacP2PActionFrameHdr
{
tANI_U8 category;
tANI_U8 Oui[4];
tANI_U8 OuiSubType;
tANI_U8 dialogToken;
} __ani_attr_packed tSirMacP2PActionFrameHdr, *tpSirMacP2PActionFrameHdr;
typedef struct sSirMacMeasActionFrameHdr
{
tANI_U8 category;
tANI_U8 actionID;
tANI_U8 dialogToken;
} tSirMacMeasActionFrameHdr, *tpSirMacMeasActionFrameHdr;
#if defined WLAN_FEATURE_VOWIFI
typedef struct sSirMacNeighborReportReq
{
tANI_U8 dialogToken;
tANI_U8 ssid_present;
tSirMacSSid ssid;
} tSirMacNeighborReportReq, *tpSirMacNeighborReportReq;
typedef struct sSirMacLinkReport
{
tANI_U8 dialogToken;
tANI_U8 txPower;
tANI_U8 rxAntenna;
tANI_U8 txAntenna;
tANI_U8 rcpi;
tANI_U8 rsni;
} tSirMacLinkReport, *tpSirMacLinkReport;
#define BEACON_REPORT_MAX_IES 224 //Refer IEEE 802.11k-2008, Table 7-31d
typedef struct sSirMacBeaconReport
{
tANI_U8 regClass;
tANI_U8 channel;
tANI_U8 measStartTime[8];
tANI_U8 measDuration;
tANI_U8 phyType;
tANI_U8 bcnProbeRsp;
tANI_U8 rsni;
tANI_U8 rcpi;
tSirMacAddr bssid;
tANI_U8 antennaId;
tANI_U32 parentTSF;
tANI_U8 numIes;
tANI_U8 Ies[BEACON_REPORT_MAX_IES];
} tSirMacBeaconReport, *tpSirMacBeaconReport;
#define RADIO_REPORTS_MAX_IN_A_FRAME 4
typedef struct sSirMacRadioMeasureReport
{
tANI_U8 token;
tANI_U8 refused;
tANI_U8 incapable;
tANI_U8 type;
union
{
tSirMacBeaconReport beaconReport;
}report;
}tSirMacRadioMeasureReport, *tpSirMacRadioMeasureReport;
#endif
// QOS action frame definitions
// max number of possible tclas elements in any frame
#define SIR_MAC_TCLASIE_MAXNUM 2
// 11b rate encoding in MAC format
#define SIR_MAC_RATE_1 0x02
#define SIR_MAC_RATE_2 0x04
#define SIR_MAC_RATE_5_5 0x0B
#define SIR_MAC_RATE_11 0x16
// 11a/g rate encoding in MAC format
#define SIR_MAC_RATE_6 0x0C
#define SIR_MAC_RATE_9 0x12
#define SIR_MAC_RATE_12 0x18
#define SIR_MAC_RATE_18 0x24
#define SIR_MAC_RATE_24 0x30
#define SIR_MAC_RATE_36 0x48
#define SIR_MAC_RATE_48 0x60
#define SIR_MAC_RATE_54 0x6C
// ANI legacy supported rates
#define SIR_MAC_RATE_72 0x01
#define SIR_MAC_RATE_96 0x03
#define SIR_MAC_RATE_108 0x05
// ANI enhanced rates
#define SIR_MAC_RATE_42 1000
#define SIR_MAC_RATE_84 1001
#define SIR_MAC_RATE_126 1002
#define SIR_MAC_RATE_144 1003
#define SIR_MAC_RATE_168 1004
#define SIR_MAC_RATE_192 1005
#define SIR_MAC_RATE_216 1006
#define SIR_MAC_RATE_240 1007
#define SIR_MAC_RATE_1_BITMAP (1<<0)
#define SIR_MAC_RATE_2_BITMAP (1<<1)
#define SIR_MAC_RATE_5_5_BITMAP (1<<2)
#define SIR_MAC_RATE_11_BITMAP (1<<3)
#define SIR_MAC_RATE_6_BITMAP (1<<4)
#define SIR_MAC_RATE_9_BITMAP (1<<5)
#define SIR_MAC_RATE_12_BITMAP (1<<6)
#define SIR_MAC_RATE_18_BITMAP (1<<7)
#define SIR_MAC_RATE_24_BITMAP (1<<8)
#define SIR_MAC_RATE_36_BITMAP (1<<9)
#define SIR_MAC_RATE_48_BITMAP (1<<10)
#define SIR_MAC_RATE_54_BITMAP (1<<11)
#define sirIsArate(x) ((((tANI_U8)x)==SIR_MAC_RATE_6) || \
(((tANI_U8)x)==SIR_MAC_RATE_9) || \
(((tANI_U8)x)==SIR_MAC_RATE_12)|| \
(((tANI_U8)x)==SIR_MAC_RATE_18)|| \
(((tANI_U8)x)==SIR_MAC_RATE_24)|| \
(((tANI_U8)x)==SIR_MAC_RATE_36)|| \
(((tANI_U8)x)==SIR_MAC_RATE_48)|| \
(((tANI_U8)x)==SIR_MAC_RATE_54))
#define sirIsBrate(x) ((((tANI_U8)x)==SIR_MAC_RATE_1) || \
(((tANI_U8)x)==SIR_MAC_RATE_2) || \
(((tANI_U8)x)==SIR_MAC_RATE_5_5)|| \
(((tANI_U8)x)==SIR_MAC_RATE_11))
#define sirIsGrate(x) ((((tANI_U8)x)==SIR_MAC_RATE_1) || \
(((tANI_U8)x)==SIR_MAC_RATE_2) || \
(((tANI_U8)x)==SIR_MAC_RATE_5_5)|| \
(((tANI_U8)x)==SIR_MAC_RATE_11) || \
(((tANI_U8)x)==SIR_MAC_RATE_6) || \
(((tANI_U8)x)==SIR_MAC_RATE_9) || \
(((tANI_U8)x)==SIR_MAC_RATE_12) || \
(((tANI_U8)x)==SIR_MAC_RATE_18) || \
(((tANI_U8)x)==SIR_MAC_RATE_24) || \
(((tANI_U8)x)==SIR_MAC_RATE_36) || \
(((tANI_U8)x)==SIR_MAC_RATE_48) || \
(((tANI_U8)x)==SIR_MAC_RATE_54))
#define SIR_MAC_MIN_IE_LEN 2 // Minimum IE length for IE validation
#define SIR_MAC_TI_TYPE_REASSOC_DEADLINE 1
#define SIR_MAC_TI_TYPE_KEY_LIFETIME 2
#define SIR_MAC_TI_TYPE_ASSOC_COMEBACK 3
#define SIR_MAC_VHT_CAP_MAX_MPDU_LEN 0
#define SIR_MAC_VHT_CAP_SUPP_CH_WIDTH_SET 2
#define SIR_MAC_VHT_CAP_LDPC_CODING_CAP 4
#define SIR_MAC_VHT_CAP_SHORTGI_80MHZ 5
#define SIR_MAC_VHT_CAP_SHORTGI_160_80_80MHZ 6
#define SIR_MAC_VHT_CAP_TXSTBC 7
#define SIR_MAC_VHT_CAP_RXSTBC 8
#define SIR_MAC_VHT_CAP_SU_BEAMFORMER_CAP 11
#define SIR_MAC_VHT_CAP_SU_BEAMFORMEE_CAP 12
#define SIR_MAC_VHT_CAP_CSN_BEAMORMER_ANT_SUP 13
#define SIR_MAC_VHT_CAP_NUM_SOUNDING_DIM 16
#define SIR_MAC_VHT_CAP_NUM_BEAM_FORMER_CAP 19
#define SIR_MAC_VHT_CAP_NUM_BEAM_FORMEE_CAP 20
#define SIR_MAC_VHT_CAP_TXOPPS 21
#define SIR_MAC_VHT_CAP_HTC_CAP 22
#define SIR_MAC_VHT_CAP_MAX_AMDU_LEN_EXPO 23
#define SIR_MAC_VHT_CAP_LINK_ADAPT_CAP 26
#define SIR_MAC_VHT_CAP_RX_ANTENNA_PATTERN 28
#define SIR_MAC_VHT_CAP_TX_ANTENNA_PATTERN 29
#define SIR_MAC_VHT_CAP_RESERVED2 30
#define SIR_MAC_HT_CAP_ADVCODING_S 0
#define SIR_MAC_HT_CAP_CHWIDTH40_S 1
#define SIR_MAC_HT_CAP_SMPOWERSAVE_DYNAMIC_S 2
#define SIR_MAC_HT_CAP_SM_RESERVED_S 3
#define SIR_MAC_HT_CAP_GREENFIELD_S 4
#define SIR_MAC_HT_CAP_SHORTGI20MHZ_S 5
#define SIR_MAC_HT_CAP_SHORTGI40MHZ_S 6
#define SIR_MAC_HT_CAP_TXSTBC_S 7
#define SIR_MAC_HT_CAP_RXSTBC_S 8
#define SIR_MAC_HT_CAP_DELAYEDBLKACK_S 10
#define SIR_MAC_HT_CAP_MAXAMSDUSIZE_S 11
#define SIR_MAC_HT_CAP_DSSSCCK40_S 12
#define SIR_MAC_HT_CAP_PSMP_S 13
#define SIR_MAC_HT_CAP_INTOLERANT40_S 14
#define SIR_MAC_HT_CAP_LSIGTXOPPROT_S 15
#define SIR_MAC_TXSTBC 1
#define SIR_MAC_RXSTBC 1
#endif /* __MAC_PROT_DEFS_H */