blob: f7973808aa73ff75fbc256e2a8669f64bf75e125 [file] [log] [blame]
/*
* Copyright (c) 2012-2018 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 sir_api.h contains definitions exported by
* Sirius software.
* Author: Chandra Modumudi
* Date: 04/16/2002
* History:-
* Date Modified by Modification Information
* --------------------------------------------------------------------
*/
#ifndef __SIR_API_H
#define __SIR_API_H
/* Take care to avoid redefinition of this type, if it is */
/* already defined in "halWmmApi.h" */
#if !defined(_HALMAC_WMM_API_H)
typedef struct sAniSirGlobal *tpAniSirGlobal;
#endif
#include "qdf_types.h"
#include "cds_reg_service.h"
#include "cds_regdomain.h"
#include "sir_types.h"
#include "sir_mac_prot_def.h"
#include "ani_system_defs.h"
#include "sir_params.h"
#include "cds_regdomain.h"
#include "wmi_unified.h"
#include "wmi_unified_param.h"
#include "ol_txrx_htt_api.h"
#include <dot11f.h>
#define MAX_PEERS 32
#define SIR_MAX_SUPPORTED_BSS 5
#define OFFSET_OF(structType, fldName) (&((structType *)0)->fldName)
/* / Max supported channel list */
#define SIR_MAX_SUPPORTED_CHANNEL_LIST 96
#define SIR_MDIE_ELEMENT_ID 54
#define SIR_MDIE_SIZE 3 /* MD ID(2 bytes), Capability(1 byte) */
#define SIR_MAX_ELEMENT_ID 255
/* Increase dwell time for P2P search in ms */
#define P2P_SEARCH_DWELL_TIME_INCREASE 20
#define P2P_SOCIAL_CHANNELS 3
/* Max number of channels are 165, but to access 165th element of array,
*array of 166 is required.
*/
#define SIR_MAX_24G_5G_CHANNEL_RANGE 166
#define SIR_BCN_REPORT_MAX_BSS_DESC 4
#define SIR_NUM_11B_RATES 4 /* 1,2,5.5,11 */
#define SIR_NUM_11A_RATES 8 /* 6,9,12,18,24,36,48,54 */
#define SIR_PM_SLEEP_MODE 0
#define SIR_PM_ACTIVE_MODE 1
/* hidden SSID options */
#define SIR_SCAN_NO_HIDDEN_SSID 0
#define SIR_SCAN_HIDDEN_SSID_PE_DECISION 1
#define SIR_IPV4_ADDR_LEN 4
typedef uint8_t tSirIpv4Addr[SIR_IPV4_ADDR_LEN];
#define SIR_VERSION_STRING_LEN 64
typedef uint8_t tSirVersionString[SIR_VERSION_STRING_LEN];
/* Periodic Tx pattern offload feature */
#define PERIODIC_TX_PTRN_MAX_SIZE 1536
#define MAXNUM_PERIODIC_TX_PTRNS 6
#define WIFI_SCANNING_MAC_OUI_LENGTH 3
#ifdef FEATURE_WLAN_EXTSCAN
#define WLAN_EXTSCAN_MAX_CHANNELS 36
#define WLAN_EXTSCAN_MAX_BUCKETS 16
#define WLAN_EXTSCAN_MAX_HOTLIST_APS 128
#define WLAN_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS 64
/* This should not be greater than MAX_NUMBER_OF_CONC_CONNECTIONS */
#define MAX_VDEV_SUPPORTED 4
#define MAX_POWER_DBG_ARGS_SUPPORTED 8
#define QOS_MAP_MAX_EX 21
#define QOS_MAP_LEN_MIN 16
#define QOS_MAP_LEN_MAX \
(QOS_MAP_LEN_MIN + 2 * QOS_MAP_MAX_EX)
#define NUM_CHAINS_MAX 2
#ifdef ACS_FW_REPORT_PARAM
#define SIR_MAX_SUPPORTED_ACS_CHANNEL_LIST SIR_MAX_SUPPORTED_CHANNEL_LIST
#define ACS_FW_REPORT_PARAM_CONFIGURED true
#else
#define SIR_MAX_SUPPORTED_ACS_CHANNEL_LIST 1
#define ACS_FW_REPORT_PARAM_CONFIGURED false
#endif
#define MAX_LEN_UDP_RESP_OFFLOAD 128
#define MAX_RSSI_AVOID_BSSID_LIST 10
/* Maximum number of realms present in fils indication element */
#define SIR_MAX_REALM_COUNT 7
/* Realm length */
#define SIR_REALM_LEN 2
/* Cache ID length */
#define CACHE_ID_LEN 2
/* Maximum peer station number query one time */
#define MAX_PEER_STA 12
#define SIR_NAN_CH_INFO_MAX_CHANNELS 4
/**
* enum sir_conn_update_reason: Reason for conc connection update
* @SIR_UPDATE_REASON_SET_OPER_CHAN: Set probable operating channel
* @SIR_UPDATE_REASON_JOIN_IBSS: Join IBSS
* @SIR_UPDATE_REASON_UT: Unit test related
* @SIR_UPDATE_REASON_START_AP: Start AP
* @SIR_UPDATE_REASON_NORMAL_STA: Connection to Normal STA
* @SIR_UPDATE_REASON_HIDDEN_STA: Connection to Hidden STA
* @SIR_UPDATE_REASON_OPPORTUNISTIC: Opportunistic HW mode update
* @SIR_UPDATE_REASON_NSS_UPDATE: NSS update
* @SIR_UPDATE_REASON_CHANNEL_SWITCH: Channel switch
* @SIR_UPDATE_REASON_CHANNEL_SWITCH_STA: Channel switch for STA
*/
enum sir_conn_update_reason {
SIR_UPDATE_REASON_SET_OPER_CHAN,
SIR_UPDATE_REASON_JOIN_IBSS,
SIR_UPDATE_REASON_UT,
SIR_UPDATE_REASON_START_AP,
SIR_UPDATE_REASON_NORMAL_STA,
SIR_UPDATE_REASON_HIDDEN_STA,
SIR_UPDATE_REASON_OPPORTUNISTIC,
SIR_UPDATE_REASON_NSS_UPDATE,
SIR_UPDATE_REASON_CHANNEL_SWITCH,
SIR_UPDATE_REASON_CHANNEL_SWITCH_STA,
SIR_UPDATE_REASON_PRE_CAC,
};
typedef enum {
eSIR_EXTSCAN_INVALID,
eSIR_EXTSCAN_START_RSP,
eSIR_EXTSCAN_STOP_RSP,
eSIR_EXTSCAN_CACHED_RESULTS_RSP,
eSIR_EXTSCAN_SET_BSSID_HOTLIST_RSP,
eSIR_EXTSCAN_RESET_BSSID_HOTLIST_RSP,
eSIR_EXTSCAN_SET_SIGNIFICANT_WIFI_CHANGE_RSP,
eSIR_EXTSCAN_RESET_SIGNIFICANT_WIFI_CHANGE_RSP,
eSIR_EXTSCAN_GET_CAPABILITIES_IND,
eSIR_EXTSCAN_HOTLIST_MATCH_IND,
eSIR_EXTSCAN_SIGNIFICANT_WIFI_CHANGE_RESULTS_IND,
eSIR_EXTSCAN_CACHED_RESULTS_IND,
eSIR_EXTSCAN_SCAN_RES_AVAILABLE_IND,
eSIR_EXTSCAN_SCAN_PROGRESS_EVENT_IND,
eSIR_EXTSCAN_FULL_SCAN_RESULT_IND,
eSIR_EPNO_NETWORK_FOUND_IND,
eSIR_PASSPOINT_NETWORK_FOUND_IND,
eSIR_EXTSCAN_SET_SSID_HOTLIST_RSP,
eSIR_EXTSCAN_RESET_SSID_HOTLIST_RSP,
/* Keep this last */
eSIR_EXTSCAN_CALLBACK_TYPE_MAX,
} tSirExtScanCallbackType;
#endif /* FEATURE_WLAN_EXTSCAN */
#define SIR_KRK_KEY_LEN 16
#define SIR_BTK_KEY_LEN 32
#define SIR_KCK_KEY_LEN 16
#define SIR_KEK_KEY_LEN 16
#define SIR_KEK_KEY_LEN_FILS 64
#define SIR_REPLAY_CTR_LEN 8
#define SIR_PMK_LEN 48
#define SIR_PMKID_LEN 16
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
#define SIR_UAPSD_BITOFFSET_ACVO 0
#define SIR_UAPSD_BITOFFSET_ACVI 1
#define SIR_UAPSD_BITOFFSET_ACBK 2
#define SIR_UAPSD_BITOFFSET_ACBE 3
#define SIR_UAPSD_FLAG_ACVO (1 << SIR_UAPSD_BITOFFSET_ACVO)
#define SIR_UAPSD_FLAG_ACVI (1 << SIR_UAPSD_BITOFFSET_ACVI)
#define SIR_UAPSD_FLAG_ACBK (1 << SIR_UAPSD_BITOFFSET_ACBK)
#define SIR_UAPSD_FLAG_ACBE (1 << SIR_UAPSD_BITOFFSET_ACBE)
#define SIR_UAPSD_GET(ac, mask) (((mask) & (SIR_UAPSD_FLAG_ ## ac)) >> SIR_UAPSD_BITOFFSET_ ## ac)
#endif
/**
* enum sir_roam_op_code - Operation to be done by the callback.
* @SIR_ROAM_SYNCH_PROPAGATION: Propagate the new BSS info after roaming.
* @SIR_ROAMING_DEREGISTER_STA: Deregister the old STA after roaming.
* @SIR_ROAMING_START: Firmware started roaming operation
* @SIR_ROAMING_ABORT: Firmware aborted roaming operation, still connected.
* @SIR_ROAM_SYNCH_COMPLETE: Roam sync propagation is complete.
* @SIR_ROAMING_INVOKE_FAIL: Firmware roaming failed.
*/
enum sir_roam_op_code {
SIR_ROAM_SYNCH_PROPAGATION = 1,
SIR_ROAMING_DEREGISTER_STA,
SIR_ROAMING_START,
SIR_ROAMING_ABORT,
SIR_ROAM_SYNCH_COMPLETE,
SIR_ROAM_SYNCH_NAPI_OFF,
SIR_ROAMING_INVOKE_FAIL,
};
/**
* Module ID definitions.
*/
enum {
SIR_BOOT_MODULE_ID = 1,
SIR_HAL_MODULE_ID = 0x10,
SIR_CFG_MODULE_ID = 0x12,
SIR_LIM_MODULE_ID,
SIR_ARQ_MODULE_ID,
SIR_SCH_MODULE_ID,
SIR_PMM_MODULE_ID,
SIR_MNT_MODULE_ID,
SIR_DBG_MODULE_ID,
SIR_DPH_MODULE_ID,
SIR_SYS_MODULE_ID,
SIR_SMS_MODULE_ID,
};
#define SIR_WMA_MODULE_ID SIR_HAL_MODULE_ID
/**
* First and last module definition for logging utility
*
* NOTE: The following definitions need to be updated if
* the above list is changed.
*/
#define SIR_FIRST_MODULE_ID SIR_HAL_MODULE_ID
#define SIR_LAST_MODULE_ID SIR_SMS_MODULE_ID
/* Type declarations used by Firmware and Host software */
/* Scan type enum used in scan request */
typedef enum eSirScanType {
eSIR_PASSIVE_SCAN,
eSIR_ACTIVE_SCAN,
eSIR_BEACON_TABLE,
} tSirScanType;
/* / Result codes Firmware return to Host SW */
typedef enum eSirResultCodes {
eSIR_SME_SUCCESS,
eSIR_LOGE_EXCEPTION,
eSIR_SME_INVALID_PARAMETERS = 500,
eSIR_SME_UNEXPECTED_REQ_RESULT_CODE,
eSIR_SME_RESOURCES_UNAVAILABLE,
/* Unable to find a BssDescription */
eSIR_SME_SCAN_FAILED,
/* matching requested scan criteria */
eSIR_SME_BSS_ALREADY_STARTED_OR_JOINED,
eSIR_SME_LOST_LINK_WITH_PEER_RESULT_CODE,
eSIR_SME_REFUSED,
eSIR_SME_JOIN_DEAUTH_FROM_AP_DURING_ADD_STA,
eSIR_SME_JOIN_TIMEOUT_RESULT_CODE,
eSIR_SME_AUTH_TIMEOUT_RESULT_CODE,
eSIR_SME_ASSOC_TIMEOUT_RESULT_CODE,
eSIR_SME_REASSOC_TIMEOUT_RESULT_CODE,
eSIR_SME_MAX_NUM_OF_PRE_AUTH_REACHED,
eSIR_SME_AUTH_REFUSED,
eSIR_SME_INVALID_WEP_DEFAULT_KEY,
eSIR_SME_NO_KEY_MAPPING_KEY_FOR_PEER,
eSIR_SME_ASSOC_REFUSED,
eSIR_SME_REASSOC_REFUSED,
/* Recvd Deauth while join/pre-auth */
eSIR_SME_DEAUTH_WHILE_JOIN,
eSIR_SME_STA_NOT_AUTHENTICATED,
eSIR_SME_STA_NOT_ASSOCIATED,
eSIR_SME_ALREADY_JOINED_A_BSS,
/* Given in SME_SCAN_RSP msg */
eSIR_SME_MORE_SCAN_RESULTS_FOLLOW,
/* that more SME_SCAN_RSP */
/* messages are following. */
/* SME_SCAN_RSP message with */
/* eSIR_SME_SUCCESS status */
/* code is the last one. */
/* Sent in SME_JOIN/REASSOC_RSP */
eSIR_SME_INVALID_ASSOC_RSP_RXED,
/* messages upon receiving */
/* invalid Re/Assoc Rsp frame. */
/* STOP BSS triggered by MIC failures: MAC software to
* disassoc all stations
*/
eSIR_SME_MIC_COUNTER_MEASURES,
/* with MIC_FAILURE reason code and perform the stop bss operation */
/* didn't get rsp from peer within timeout interval */
eSIR_SME_ADDTS_RSP_TIMEOUT,
/* didn't get success rsp from HAL */
eSIR_SME_ADDTS_RSP_FAILED,
/* failed to send ch switch act frm */
eSIR_SME_CHANNEL_SWITCH_FAIL,
eSIR_SME_INVALID_STATE,
/* SIR_HAL_SIR_HAL_INIT_SCAN_RSP returned failed status */
eSIR_SME_HAL_SCAN_INIT_FAILED,
/* SIR_HAL_END_SCAN_RSP returned failed status */
eSIR_SME_HAL_SCAN_END_FAILED,
/* SIR_HAL_FINISH_SCAN_RSP returned failed status */
eSIR_SME_HAL_SCAN_FINISH_FAILED,
/* Failed to send a message to HAL */
eSIR_SME_HAL_SEND_MESSAGE_FAIL,
/* Failed to stop the bss */
eSIR_SME_STOP_BSS_FAILURE,
eSIR_SME_WOWL_ENTER_REQ_FAILED,
eSIR_SME_WOWL_EXIT_REQ_FAILED,
eSIR_SME_FT_REASSOC_TIMEOUT_FAILURE,
eSIR_SME_FT_REASSOC_FAILURE,
eSIR_SME_SEND_ACTION_FAIL,
eSIR_SME_DEAUTH_STATUS,
eSIR_PNO_SCAN_SUCCESS,
eSIR_SME_INVALID_SESSION,
eSIR_DONOT_USE_RESULT_CODE = SIR_MAX_ENUM_SIZE
} tSirResultCodes;
#ifdef WLAN_FEATURE_FILS_SK
struct fils_join_rsp_params {
uint8_t *fils_pmk;
uint8_t fils_pmk_len;
uint8_t fils_pmkid[PMKID_LEN];
uint8_t kek[MAX_KEK_LEN];
uint8_t kek_len;
uint8_t tk[MAX_TK_LEN];
uint8_t tk_len;
uint8_t gtk_len;
uint8_t gtk[MAX_GTK_LEN];
struct qdf_mac_addr dst_mac;
struct qdf_mac_addr src_mac;
uint16_t hlp_data_len;
uint8_t hlp_data[FILS_MAX_HLP_DATA_LEN];
};
#endif
#define RMENABLEDCAP_MAX_LEN 5
struct rrm_config_param {
uint8_t rrm_enabled;
uint8_t max_randn_interval;
uint8_t rm_capability[RMENABLEDCAP_MAX_LEN];
};
/*
* although in tSirSupportedRates each IE is 16bit but PE only passes IEs in 8
* bits with MSB=1 for basic rates. change the mask for bit0-7 only so HAL gets
* correct basic rates for setting response rates.
*/
#define IERATE_BASICRATE_MASK 0x80
#define IERATE_RATE_MASK 0x7f
#define IERATE_IS_BASICRATE(x) ((x) & IERATE_BASICRATE_MASK)
const char *lim_bss_type_to_string(const uint16_t bss_type);
const char *lim_scan_type_to_string(const uint8_t scan_type);
typedef struct sSirSupportedRates {
/*
* 11b, 11a and aniLegacyRates are IE rates which gives rate in unit
* of 500Kbps
*/
uint16_t llbRates[SIR_NUM_11B_RATES];
uint16_t llaRates[SIR_NUM_11A_RATES];
/*
* 0-76 bits used, remaining reserved
* bits 0-15 and 32 should be set.
*/
uint8_t supportedMCSSet[SIR_MAC_MAX_SUPPORTED_MCS_SET];
/*
* RX Highest Supported Data Rate defines the highest data
* rate that the STA is able to receive, in unites of 1Mbps.
* This value is derived from "Supported MCS Set field" inside
* the HT capability element.
*/
uint16_t rxHighestDataRate;
/*Indicates the Maximum MCS that can be received for each number
of spacial streams */
uint16_t vhtRxMCSMap;
/*Indicate the highest VHT data rate that the STA is able to receive */
uint16_t vhtRxHighestDataRate;
/*Indicates the Maximum MCS that can be transmitted for each number
of spacial streams */
uint16_t vhtTxMCSMap;
/*Indicate the highest VHT data rate that the STA is able to transmit */
uint16_t vhtTxHighestDataRate;
} tSirSupportedRates, *tpSirSupportedRates;
/**
* enum eSirRFBand
* @SIR_BAND_ALL:all bands
* @SIR_BAND_2_4_GHZ: 2G band
* @SIR_BAND_5_GHZ: 5G band
* @SIR_BAND_UNKNOWN: Unsupported band
* @SIR_BAND_MAX: Max number of band
*/
typedef enum eSirRFBand {
SIR_BAND_ALL,
SIR_BAND_2_4_GHZ,
SIR_BAND_5_GHZ,
SIR_BAND_UNKNOWN,
SIR_BAND_MAX = SIR_BAND_UNKNOWN,
} tSirRFBand;
/**
* enum set_hw_mode_status - Status of set HW mode command
* @SET_HW_MODE_STATUS_OK: command successful
* @SET_HW_MODE_STATUS_EINVAL: Requested invalid hw_mode
* @SET_HW_MODE_STATUS_ECANCELED: HW mode change cancelled
* @SET_HW_MODE_STATUS_ENOTSUP: HW mode not supported
* @SET_HW_MODE_STATUS_EHARDWARE: HW mode change prevented by hardware
* @SET_HW_MODE_STATUS_EPENDING: HW mode change is pending
* @SET_HW_MODE_STATUS_ECOEX: HW mode change conflict with Coex
*/
enum set_hw_mode_status {
SET_HW_MODE_STATUS_OK,
SET_HW_MODE_STATUS_EINVAL,
SET_HW_MODE_STATUS_ECANCELED,
SET_HW_MODE_STATUS_ENOTSUP,
SET_HW_MODE_STATUS_EHARDWARE,
SET_HW_MODE_STATUS_EPENDING,
SET_HW_MODE_STATUS_ECOEX,
};
typedef struct sSirRemainOnChnReq {
uint16_t messageType;
uint16_t length;
uint8_t sessionId;
struct qdf_mac_addr selfMacAddr;
uint8_t chnNum;
uint8_t phyMode;
uint32_t duration;
uint8_t isProbeRequestAllowed;
uint32_t scan_id;
uint8_t probeRspIe[1];
} tSirRemainOnChnReq, *tpSirRemainOnChnReq;
/**
* struct sir_roc_rsp - Structure to store the remain on channel response
* @message_type: Message Type
* @length: Message Length
* @session_id: SME session Id
* @scan_id : scan identifier
* @status: result status
*/
struct sir_roc_rsp {
uint16_t message_type;
uint16_t length;
uint8_t session_id;
uint32_t scan_id;
tSirResultCodes status;
};
typedef struct sSirRegisterMgmtFrame {
uint16_t messageType;
uint16_t length;
uint8_t sessionId;
bool registerFrame;
uint16_t frameType;
uint16_t matchLen;
uint8_t matchData[1];
} tSirRegisterMgmtFrame, *tpSirRegisterMgmtFrame;
/* / Generic type for sending a response message */
/* / with result code to host software */
typedef struct sSirSmeRsp {
uint16_t messageType; /* eWNI_SME_*_RSP */
uint16_t length;
uint8_t sessionId; /* To support BT-AMP */
uint16_t transactionId; /* To support BT-AMP */
tSirResultCodes statusCode;
} tSirSmeRsp, *tpSirSmeRsp;
/* / Definition for indicating all modules ready on STA */
typedef struct sSirSmeReadyReq {
uint16_t messageType; /* eWNI_SME_SYS_READY_IND */
uint16_t length;
uint16_t transactionId;
void *add_bssdescr_cb;
void *csr_roam_synch_cb;
void *pe_roam_synch_cb;
void *sme_msg_cb;
} tSirSmeReadyReq, *tpSirSmeReadyReq;
/**
* struct sir_hw_mode - Format of set HW mode
* @hw_mode_index: Index of HW mode to be set
* @set_hw_mode_cb: HDD set HW mode callback
* @reason: Reason for HW mode change
* @session_id: Session id
*/
struct sir_hw_mode {
uint32_t hw_mode_index;
void *set_hw_mode_cb;
enum sir_conn_update_reason reason;
uint32_t session_id;
};
/**
* struct s_sir_set_hw_mode - Set HW mode request
* @messageType: Message type
* @length: Length of the message
* @set_hw: Params containing the HW mode index and callback
*/
struct s_sir_set_hw_mode {
uint16_t messageType;
uint16_t length;
struct sir_hw_mode set_hw;
};
typedef void (*dual_mac_cb)(enum set_hw_mode_status status,
uint32_t scan_config,
uint32_t fw_mode_config);
/**
* struct sir_dual_mac_config - Dual MAC configuration
* @scan_config: Scan configuration
* @fw_mode_config: FW mode configuration
* @set_dual_mac_cb: Callback function to be executed on response to the command
*/
struct sir_dual_mac_config {
uint32_t scan_config;
uint32_t fw_mode_config;
dual_mac_cb set_dual_mac_cb;
};
/**
* struct sir_set_dual_mac_cfg - Set Dual mac config request
* @message_type: Message type
* @length: Length of the message
* @set_dual_mac: Params containing the dual mac config and callback
*/
struct sir_set_dual_mac_cfg {
uint16_t message_type;
uint16_t length;
struct sir_dual_mac_config set_dual_mac;
};
/**
* struct sir_antenna_mode_param - antenna mode param
* @num_tx_chains: Number of TX chains
* @num_rx_chains: Number of RX chains
* @reason: Reason for setting antenna mode
* @set_antenna_mode_resp: callback to set antenna mode command
*/
struct sir_antenna_mode_param {
uint32_t num_tx_chains;
uint32_t num_rx_chains;
void *set_antenna_mode_resp;
};
/**
* struct sir_set_antenna_mode - Set antenna mode request
* @message_type: Message type
* @length: Length of the message
* @set_antenna_mode: Params containing antenna mode params
*/
struct sir_set_antenna_mode {
uint16_t message_type;
uint16_t length;
struct sir_antenna_mode_param set_antenna_mode;
};
/**
* enum tSirBssType - Enum for BSS type used in scanning/joining etc.
*
* @eSIR_INFRASTRUCTURE_MODE: Infrastructure station
* @eSIR_INFRA_AP_MODE: softAP mode
* @eSIR_IBSS_MODE: IBSS mode
* @eSIR_AUTO_MODE: Auto role
* @eSIR_MONITOR_MODE: Monitor mode
* @eSIR_NDI_MODE: NAN datapath mode
*/
typedef enum eSirBssType {
eSIR_INFRASTRUCTURE_MODE,
eSIR_INFRA_AP_MODE,
eSIR_IBSS_MODE,
eSIR_AUTO_MODE,
eSIR_MONITOR_MODE,
eSIR_NDI_MODE,
eSIR_DONOT_USE_BSS_TYPE = SIR_MAX_ENUM_SIZE
} tSirBssType;
/* / Power Capability info used in 11H */
typedef struct sSirMacPowerCapInfo {
uint8_t minTxPower;
uint8_t maxTxPower;
} tSirMacPowerCapInfo, *tpSirMacPowerCapInfo;
/* / Supported Channel info used in 11H */
typedef struct sSirSupChnl {
uint8_t numChnl;
uint8_t channelList[SIR_MAX_SUPPORTED_CHANNEL_LIST];
} tSirSupChnl, *tpSirSupChnl;
typedef enum eSirNwType {
eSIR_11A_NW_TYPE,
eSIR_11B_NW_TYPE,
eSIR_11G_NW_TYPE,
eSIR_11N_NW_TYPE,
eSIR_11AC_NW_TYPE,
eSIR_DONOT_USE_NW_TYPE = SIR_MAX_ENUM_SIZE
} tSirNwType;
/* / Definition for new iBss peer info */
typedef struct sSirNewIbssPeerInfo {
struct qdf_mac_addr peerAddr;
uint16_t aid;
} tSirNewIbssPeerInfo, *tpSirNewIbssPeerInfo;
/* HT configuration values */
typedef struct sSirHtConfig {
/* Enable/Disable receiving LDPC coded packets */
uint32_t ht_rx_ldpc:1;
/* Enable/Disable TX STBC */
uint32_t ht_tx_stbc:1;
/* Enable/Disable RX STBC */
uint32_t ht_rx_stbc:2;
/* Enable/Disable SGI */
uint32_t ht_sgi20:1;
uint32_t ht_sgi40:1;
uint32_t unused:27;
} qdf_packed tSirHTConfig, *tpSirHTConfig;
/**
* struct sir_vht_config - VHT capabilites
* @max_mpdu_len: MPDU length
* @supported_channel_widthset: channel width set
* @ldpc_coding: LDPC coding capability
* @shortgi80: short GI 80 support
* @shortgi160and80plus80: short Gi 160 & 80+80 support
* @tx_stbc; Tx STBC cap
* @tx_stbc: Rx STBC cap
* @su_beam_former: SU beam former cap
* @su_beam_formee: SU beam formee cap
* @csnof_beamformer_antSup: Antenna support for beamforming
* @num_soundingdim: Sound dimensions
* @mu_beam_former: MU beam former cap
* @mu_beam_formee: MU beam formee cap
* @vht_txops: TXOP power save
* @htc_vhtcap: HTC VHT capability
* @max_ampdu_lenexp: AMPDU length
* @vht_link_adapt: VHT link adapatation capable
* @rx_antpattern: Rx Antenna pattern
* @tx_antpattern: Tx Antenna pattern
*/
struct sir_vht_config {
uint32_t max_mpdu_len:2;
uint32_t supported_channel_widthset:2;
uint32_t ldpc_coding:1;
uint32_t shortgi80:1;
uint32_t shortgi160and80plus80:1;
uint32_t tx_stbc:1;
uint32_t rx_stbc:3;
uint32_t su_beam_former:1;
uint32_t su_beam_formee:1;
uint32_t csnof_beamformer_antSup:3;
uint32_t num_soundingdim:3;
uint32_t mu_beam_former:1;
uint32_t mu_beam_formee:1;
uint32_t vht_txops:1;
uint32_t htc_vhtcap:1;
uint32_t max_ampdu_lenexp:3;
uint32_t vht_link_adapt:2;
uint32_t rx_antpattern:1;
uint32_t tx_antpattern:1;
uint32_t unused:2;
};
typedef struct sSirAddIeParams {
uint16_t probeRespDataLen;
uint8_t *probeRespData_buff;
uint16_t assocRespDataLen;
uint8_t *assocRespData_buff;
uint16_t probeRespBCNDataLen;
uint8_t *probeRespBCNData_buff;
} tSirAddIeParams, *tpSirAddIeParams;
/* / Definition for kick starting BSS */
/* / ---> MAC */
/**
* Usage of ssId, numSSID & ssIdList:
* ---------------------------------
* 1. ssId.length of zero indicates that Broadcast/Suppress SSID
* feature is enabled.
* 2. If ssId.length is zero, MAC SW will advertise NULL SSID
* and interpret the SSID list from numSSID & ssIdList.
* 3. If ssId.length is non-zero, MAC SW will advertise the SSID
* specified in the ssId field and it is expected that
* application will set numSSID to one (only one SSID present
* in the list) and SSID in the list is same as ssId field.
* 4. Application will always set numSSID >= 1.
*/
/* ***** NOTE: Please make sure all codes are updated if inserting field into
* this structure..********** */
typedef struct sSirSmeStartBssReq {
uint16_t messageType; /* eWNI_SME_START_BSS_REQ */
uint16_t length;
uint8_t sessionId; /* Added for BT-AMP Support */
uint16_t transactionId; /* Added for BT-AMP Support */
struct qdf_mac_addr bssid; /* Added for BT-AMP Support */
struct qdf_mac_addr self_macaddr; /* Added for BT-AMP Support */
uint16_t beaconInterval; /* Added for BT-AMP Support */
uint8_t dot11mode;
#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
uint8_t cc_switch_mode;
#endif
tSirBssType bssType;
tSirMacSSid ssId;
uint8_t channelId;
ePhyChanBondState cbMode;
uint8_t vht_channel_width;
uint8_t center_freq_seg0;
uint8_t center_freq_seg1;
uint8_t sec_ch_offset;
uint8_t privacy;
uint8_t apUapsdEnable;
uint8_t ssidHidden;
bool fwdWPSPBCProbeReq;
bool protEnabled;
bool obssProtEnabled;
uint16_t ht_capab;
tAniAuthType authType;
uint32_t dtimPeriod;
uint8_t wps_state;
uint8_t isCoalesingInIBSSAllowed; /* Coalesing on/off knob */
enum tQDF_ADAPTER_MODE bssPersona;
uint8_t txLdpcIniFeatureEnabled;
tSirRSNie rsnIE; /* RSN IE to be sent in */
/* Beacon and Probe */
/* Response frames */
tSirNwType nwType; /* Indicates 11a/b/g */
tSirMacRateSet operationalRateSet; /* Has 11a or 11b rates */
tSirMacRateSet extendedRateSet; /* Has 11g rates */
tSirHTConfig htConfig;
struct sir_vht_config vht_config;
#ifdef WLAN_FEATURE_11W
bool pmfCapable;
bool pmfRequired;
#endif
tSirAddIeParams addIeParams;
bool obssEnabled;
uint8_t sap_dot11mc;
uint16_t beacon_tx_rate;
bool vendor_vht_sap;
} tSirSmeStartBssReq, *tpSirSmeStartBssReq;
#define GET_IE_LEN_IN_BSS(lenInBss) (lenInBss + sizeof(lenInBss) - \
((uintptr_t)OFFSET_OF(tSirBssDescription,\
ieFields)))
#define WSCIE_PROBE_RSP_LEN (317 + 2)
#ifdef WLAN_FEATURE_FILS_SK
/* struct fils_ind_elements: elements parsed from fils indication present
* in beacon/probe resp
* @realm_cnt: number of realm present
* @realm: realms
* @is_fils_sk_supported: if FILS SK supported
* @is_cache_id_present: if cache id present
* @cache_id: cache id
*/
struct fils_ind_elements {
uint16_t realm_cnt;
uint8_t realm[SIR_MAX_REALM_COUNT][SIR_REALM_LEN];
bool is_fils_sk_supported;
bool is_cache_id_present;
uint8_t cache_id[CACHE_ID_LEN];
};
#endif
typedef struct sSirBssDescription {
/* offset of the ieFields from bssId. */
uint16_t length;
tSirMacAddr bssId;
unsigned long scansystimensec;
uint32_t timeStamp[2];
uint16_t beaconInterval;
uint16_t capabilityInfo;
tSirNwType nwType; /* Indicates 11a/b/g */
int8_t rssi;
int8_t rssi_raw;
int8_t sinr;
/* channelId what peer sent in beacon/probersp. */
uint8_t channelId;
/* channelId on which we are parked at. */
/* used only in scan case. */
uint8_t channelIdSelf;
uint8_t sSirBssDescriptionRsvd[3];
/* Based on system time, not a relative time. */
uint64_t received_time;
uint32_t parentTSF;
uint32_t startTSF[2];
uint8_t mdiePresent;
/* MDIE for 11r, picked from the beacons */
uint8_t mdie[SIR_MDIE_SIZE];
uint8_t QBSSLoad_present;
uint8_t qbss_chan_load;
uint16_t QBSSLoad_avail;
/* To achieve 8-byte alignment with ESE enabled */
uint32_t reservedPadding5;
/* whether it is from a probe rsp */
uint8_t fProbeRsp;
/* Actual channel the beacon/probe response was received on */
uint8_t rx_channel;
tSirMacSeqCtl seq_ctrl;
uint32_t WscIeLen;
uint8_t WscIeProbeRsp[WSCIE_PROBE_RSP_LEN];
uint8_t reservedPadding4;
uint32_t tsf_delta;
uint8_t ht_caps_present;
uint8_t vht_caps_present;
uint8_t beacomforming_capable;
uint8_t chan_width;
#ifdef WLAN_FEATURE_FILS_SK
struct fils_ind_elements fils_info_element;
#endif
uint8_t air_time_fraction;
uint8_t nss;
uint8_t oce_wan_present;
uint8_t oce_wan_down_cap;
uint32_t rssi_per_chain[ATH_MAX_ANTENNA];
/* Please keep the structure 4 bytes aligned above the ieFields */
uint32_t ieFields[1];
} tSirBssDescription, *tpSirBssDescription;
#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
typedef struct sSirSmeHTProfile {
uint8_t dot11mode;
uint8_t htCapability;
uint8_t htSupportedChannelWidthSet;
uint8_t htRecommendedTxWidthSet;
ePhyChanBondState htSecondaryChannelOffset;
uint8_t vhtCapability;
uint8_t apCenterChan;
uint8_t apChanWidth;
} tSirSmeHTProfile;
#endif
/* / Definition for response message to previously */
/* / issued start BSS request */
/* / MAC ---> */
typedef struct sSirSmeStartBssRsp {
uint16_t messageType; /* eWNI_SME_START_BSS_RSP */
uint16_t length;
uint8_t sessionId;
uint16_t transactionId; /* transaction ID for cmd */
tSirResultCodes statusCode;
tSirBssType bssType; /* Add new type for WDS mode */
uint16_t beaconInterval; /* Beacon Interval for both type */
uint32_t staId; /* Staion ID for Self */
#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
tSirSmeHTProfile HTProfile;
#endif
tSirBssDescription bssDescription; /* Peer BSS description */
} tSirSmeStartBssRsp, *tpSirSmeStartBssRsp;
typedef struct sSirChannelList {
uint8_t numChannels;
uint8_t channelNumber[SIR_ESE_MAX_MEAS_IE_REQS];
} tSirChannelList, *tpSirChannelList;
typedef struct sSirDFSChannelList {
uint32_t timeStamp[SIR_MAX_24G_5G_CHANNEL_RANGE];
} tSirDFSChannelList, *tpSirDFSChannelList;
/* / Two Background Scan mode */
typedef enum eSirBackgroundScanMode {
eSIR_ROAMING_SCAN = 2,
} tSirBackgroundScanMode;
/* / Two types of traffic check */
typedef enum eSirLinkTrafficCheck {
eSIR_DONT_CHECK_LINK_TRAFFIC_BEFORE_SCAN = 0,
eSIR_CHECK_LINK_TRAFFIC_BEFORE_SCAN = 1,
eSIR_CHECK_ROAMING_SCAN = 2,
} tSirLinkTrafficCheck;
#define SIR_BG_SCAN_RETURN_CACHED_RESULTS 0x0
#define SIR_BG_SCAN_PURGE_RESUTLS 0x80
#define SIR_BG_SCAN_RETURN_FRESH_RESULTS 0x01
#define SIR_SCAN_MAX_NUM_SSID 0x0A
#define SIR_BG_SCAN_RETURN_LFR_CACHED_RESULTS 0x02
#define SIR_BG_SCAN_PURGE_LFR_RESULTS 0x40
/* / Definition for scan request */
typedef struct sSirSmeScanReq {
uint16_t messageType; /* eWNI_SME_SCAN_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
struct qdf_mac_addr bssId;
tSirMacSSid ssId[SIR_SCAN_MAX_NUM_SSID];
struct qdf_mac_addr selfMacAddr; /* Added For BT-AMP Support */
tSirBssType bssType;
uint8_t dot11mode;
tSirScanType scanType;
uint32_t scan_id;
/**
* minChannelTime. Not used if scanType is passive.
* 0x0 - Dont Use min channel timer. Only max channel timeout will used.
* 11k measurements set this to 0 to user only single duration for scan.
* <valid timeout> - Timeout value used for min channel timeout.
*/
uint32_t minChannelTime;
/**
* maxChannelTime.
* 0x0 - Invalid. In case of active scan.
* In case of passive scan, MAX( maxChannelTime,
* WNI_CFG_PASSIVE_MAXIMUM_CHANNEL_TIME) is used.
*/
uint32_t maxChannelTime;
uint32_t scan_probe_repeat_time;
uint32_t scan_num_probes;
enum wmi_dwelltime_adaptive_mode scan_adaptive_dwell_mode;
/**
* returnAfterFirstMatch can take following values:
* 0x00 - Return SCAN_RSP message after complete channel scan
* 0x01 - Return SCAN_RSP message after collecting BSS description
* that matches scan criteria.
* 0xC0 - Return after collecting first 11d IE from 2.4 GHz &
* 5 GHz band channels
* 0x80 - Return after collecting first 11d IE from 5 GHz band
* channels
* 0x40 - Return after collecting first 11d IE from 2.4 GHz
* band channels
*
* Values of 0xC0, 0x80 & 0x40 are to be used by
* Roaming/application when 11d is enabled.
*/
/* in units of milliseconds, ignored when not connected */
uint32_t restTime;
/*in units of milliseconds, ignored when not connected*/
uint32_t min_rest_time;
/*in units of milliseconds, ignored when not connected*/
uint32_t idle_time;
uint8_t returnAfterFirstMatch;
/**
* returnUniqueResults can take following values:
* 0 - Collect & report all received BSS descriptions from same BSS.
* 1 - Collect & report unique BSS description from same BSS.
*/
uint8_t returnUniqueResults;
/**
* returnFreshResults can take following values:
* 0x00 - Return background scan results.
* 0x80 - Return & purge background scan results
* 0x01 - Trigger fresh scan instead of returning background scan
* results.
* 0x81 - Trigger fresh scan instead of returning background scan
* results and purge background scan results.
*/
uint8_t returnFreshResults;
/* backgroundScanMode can take following values:
* 0x0 - agressive scan
* 0x1 - normal scan where HAL will check for link traffic
* prior to proceeding with the scan
*/
tSirBackgroundScanMode backgroundScanMode;
uint8_t hiddenSsid;
/* Number of SSIDs to scan */
uint8_t numSsid;
/* scan control flag extended */
uint32_t scan_ctrl_flags_ext;
/* channelList has to be the last member of this structure. Check
* tSirChannelList for the reason. This MUST be the last field of the
* structure
*/
bool p2pSearch;
uint16_t uIEFieldLen;
uint16_t uIEFieldOffset;
/* mac address randomization attributes */
bool enable_scan_randomization;
uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
uint8_t mac_addr_mask[QDF_MAC_ADDR_SIZE];
/* probe req ie whitelisting attrs */
bool ie_whitelist;
uint32_t probe_req_ie_bitmap[PROBE_REQ_BITMAP_LEN];
uint32_t num_vendor_oui;
uint32_t oui_field_len;
uint32_t oui_field_offset;
/* channelList MUST be the last field of this structure */
tSirChannelList channelList;
/*-----------------------------
tSirSmeScanReq....
-----------------------------
uIEFiledLen
-----------------------------
uIEFiledOffset ----+
----------------------------- |
channelList.numChannels |
----------------------------- |
... variable size up to |
channelNumber[numChannels-1] |
This can be zero, if |
numChannel is zero. |
----------------------------- <--+
... variable size uIEFiled
up to uIEFieldLen (can be 0)
-----------------------------
... variable size upto num_vendor_oui
of type uint32_t
-----------------------------------*/
} tSirSmeScanReq, *tpSirSmeScanReq;
typedef struct sSirSmeScanAbortReq {
uint16_t type;
uint16_t msgLen;
uint8_t sessionId;
uint32_t scan_id;
} tSirSmeScanAbortReq, *tpSirSmeScanAbortReq;
typedef struct sSirSmeScanChanReq {
uint16_t type;
uint16_t msgLen;
uint8_t sessionId;
uint16_t transcationId;
} tSirSmeGetScanChanReq, *tpSirSmeGetScanChanReq;
#ifdef FEATURE_OEM_DATA_SUPPORT
struct oem_data_req {
uint32_t data_len;
uint8_t *data;
};
struct oem_data_rsp {
uint32_t rsp_len;
uint8_t *data;
};
#endif /* FEATURE_OEM_DATA_SUPPORT */
#ifdef FEATURE_WLAN_ESE
typedef struct ese_wmm_tspec_ie {
uint16_t traffic_type:1;
uint16_t tsid:4;
uint16_t direction:2;
uint16_t access_policy:2;
uint16_t aggregation:1;
uint16_t psb:1;
uint16_t user_priority:3;
uint16_t tsinfo_ack_pol:2;
uint8_t tsinfo_rsvd:7;
uint8_t burst_size_defn:1;
uint16_t size:15;
uint16_t fixed:1;
uint16_t max_msdu_size;
uint32_t min_service_int;
uint32_t max_service_int;
uint32_t inactivity_int;
uint32_t suspension_int;
uint32_t service_start_time;
uint32_t min_data_rate;
uint32_t mean_data_rate;
uint32_t peak_data_rate;
uint32_t burst_size;
uint32_t delay_bound;
uint32_t min_phy_rate;
uint16_t surplus_bw_allowance;
uint16_t medium_time;
} qdf_packed ese_wmm_tspec_ie;
typedef struct sTspecInfo {
uint8_t valid;
tSirMacTspecIE tspec;
} tTspecInfo;
#define SIR_ESE_MAX_TSPEC_IES 4
typedef struct sESETspecTspecInfo {
uint8_t numTspecs;
tTspecInfo tspec[SIR_ESE_MAX_TSPEC_IES];
} tESETspecInfo;
typedef struct sSirTsmIE {
uint8_t tsid;
uint8_t state;
uint16_t msmt_interval;
} tSirTsmIE, *tpSirTsmIE;
typedef struct sSirSmeTsmIEInd {
tSirTsmIE tsmIe;
uint8_t sessionId;
} tSirSmeTsmIEInd, *tpSirSmeTsmIEInd;
typedef struct sAniTrafStrmMetrics {
uint16_t UplinkPktQueueDly;
uint16_t UplinkPktQueueDlyHist[4];
uint32_t UplinkPktTxDly;
uint16_t UplinkPktLoss;
uint16_t UplinkPktCount;
uint8_t RoamingCount;
uint16_t RoamingDly;
} tAniTrafStrmMetrics, *tpAniTrafStrmMetrics;
typedef struct sAniGetTsmStatsReq {
/* Common for all types are requests */
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t staId;
uint8_t tid; /* traffic id */
struct qdf_mac_addr bssId;
void *tsmStatsCallback;
void *pDevContext; /* device context */
void *p_cds_context; /* cds context */
} tAniGetTsmStatsReq, *tpAniGetTsmStatsReq;
typedef struct sAniGetTsmStatsRsp {
/* Common for all types are responses */
uint16_t msgType; /*
* message type is same as
* the request type
*/
uint16_t msgLen; /*
* length of the entire request,
* includes the pStatsBuf length too
*/
uint8_t sessionId;
uint32_t rc; /* success/failure */
uint32_t staId; /*
* Per STA stats request must
* contain valid
*/
tAniTrafStrmMetrics tsmMetrics;
void *tsmStatsReq; /* tsm stats request backup */
} tAniGetTsmStatsRsp, *tpAniGetTsmStatsRsp;
typedef struct sSirEseBcnReportBssInfo {
tBcnReportFields bcnReportFields;
uint8_t ieLen;
uint8_t *pBuf;
} tSirEseBcnReportBssInfo, *tpSirEseBcnReportBssInfo;
typedef struct sSirEseBcnReportRsp {
uint16_t measurementToken;
uint8_t flag; /* Flag to report measurement done and more data */
uint8_t numBss;
tSirEseBcnReportBssInfo bcnRepBssInfo[SIR_BCN_REPORT_MAX_BSS_DESC];
} tSirEseBcnReportRsp, *tpSirEseBcnReportRsp;
#define TSRS_11AG_RATE_6MBPS 0xC
#define TSRS_11B_RATE_5_5MBPS 0xB
typedef struct sSirMacESETSRSIE {
uint8_t tsid;
uint8_t rates[8];
} tSirMacESETSRSIE;
typedef struct sSirMacESETSMIE {
uint8_t tsid;
uint8_t state;
uint16_t msmt_interval;
} tSirMacESETSMIE;
typedef struct sTSMStats {
uint8_t tid;
struct qdf_mac_addr bssid;
tTrafStrmMetrics tsmMetrics;
} tTSMStats, *tpTSMStats;
typedef struct sEseTSMContext {
uint8_t tid;
tSirMacESETSMIE tsmInfo;
tTrafStrmMetrics tsmMetrics;
} tEseTSMContext, *tpEseTSMContext;
typedef struct sEsePEContext {
tEseTSMContext tsm;
} tEsePEContext, *tpEsePEContext;
typedef struct sSirPlmReq {
uint16_t diag_token; /* Dialog token */
uint16_t meas_token; /* measurement token */
uint16_t numBursts; /* total number of bursts */
uint16_t burstInt; /* burst interval in seconds */
uint16_t measDuration; /* in TU's,STA goes off-ch */
/* no of times the STA should cycle through PLM ch list */
uint8_t burstLen;
int8_t desiredTxPwr; /* desired tx power */
struct qdf_mac_addr mac_addr; /* MC dest addr */
/* no of channels */
uint8_t plmNumCh;
/* channel numbers */
uint8_t plmChList[WNI_CFG_VALID_CHANNEL_LIST_LEN];
uint8_t sessionId;
bool enable;
} tSirPlmReq, *tpSirPlmReq;
#endif /* FEATURE_WLAN_ESE */
/* / Definition for response message to previously issued scan request */
typedef struct sSirSmeScanRsp {
uint16_t messageType; /* eWNI_SME_SCAN_RSP */
uint16_t length;
uint8_t sessionId;
tSirResultCodes statusCode;
uint16_t transcationId;
uint32_t scan_id;
} tSirSmeScanRsp, *tpSirSmeScanRsp;
/* / Definition for join request */
/* / ---> MAC */
/* / WARNING! If you add a field in JOIN REQ. */
/* / Make sure to add it in REASSOC REQ */
/* / The Serdes function is the same and its */
/* / shared with REASSOC. So if we add a field */
/* here and dont add it in REASSOC REQ. It will BREAK!!! REASSOC. */
typedef struct sSirSmeJoinReq {
uint16_t messageType; /* eWNI_SME_JOIN_REQ */
uint16_t length;
uint8_t sessionId;
uint16_t transactionId;
tSirMacSSid ssId;
tSirMacAddr selfMacAddr; /* self Mac address */
tSirBssType bsstype; /* add new type for BT-AMP STA and AP Modules */
uint8_t dot11mode; /* to support BT-AMP */
#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
uint8_t cc_switch_mode;
#endif
enum tQDF_ADAPTER_MODE staPersona; /* Persona */
bool wps_registration;
ePhyChanBondState cbMode; /* Pass CB mode value in Join. */
/*This contains the UAPSD Flag for all 4 AC
* B0: AC_VO UAPSD FLAG
* B1: AC_VI UAPSD FLAG
* B2: AC_BK UAPSD FLAG
* B3: AC_BE UASPD FLAG
*/
uint8_t uapsdPerAcBitmask;
tSirMacRateSet operationalRateSet; /* Has 11a or 11b rates */
tSirMacRateSet extendedRateSet; /* Has 11g rates */
tSirRSNie rsnIE; /* RSN IE to be sent in */
/* (Re) Association Request */
#ifdef FEATURE_WLAN_ESE
/* CCMK IE to be included as handler for join and reassoc is */
tSirCCKMie cckmIE;
/* the same. The join will never carry cckm, but will be set to */
/* 0. */
#endif
tSirAddie addIEScan; /* Additional IE to be sent in */
/* (unicast) Probe Request at the time of join */
tSirAddie addIEAssoc; /* Additional IE to be sent in */
/* (Re) Association Request */
tAniEdType UCEncryptionType;
tAniEdType MCEncryptionType;
#ifdef WLAN_FEATURE_11W
tAniEdType MgmtEncryptionType;
#endif
bool is11Rconnection;
#ifdef FEATURE_WLAN_ESE
bool isESEFeatureIniEnabled;
bool isESEconnection;
tESETspecInfo eseTspecInfo;
#endif
bool isFastTransitionEnabled;
bool isFastRoamIniFeatureEnabled;
uint8_t txLdpcIniFeatureEnabled;
tSirHTConfig htConfig;
struct sir_vht_config vht_config;
uint8_t enableVhtpAid;
uint8_t enableVhtGid;
uint8_t enableAmpduPs;
uint8_t enableHtSmps;
uint8_t htSmps;
bool send_smps_action;
uint8_t max_amsdu_num;
bool isWMEenabled;
bool isQosEnabled;
bool isOSENConnection;
struct rrm_config_param rrm_config;
bool spectrumMgtIndicator;
tSirMacPowerCapInfo powerCap;
tSirSupChnl supportedChannels;
#ifdef WLAN_FEATURE_FILS_SK
struct cds_fils_connection_info fils_con_info;
#endif
bool ignore_assoc_disallowed;
bool enable_bcast_probe_rsp;
bool force_24ghz_in_ht20;
bool force_rsne_override;
tSirBssDescription bssDescription;
/*
* WARNING: Pls make bssDescription as last variable in struct
* tSirSmeJoinReq as it has ieFields followed after this bss
* description. Adding a variable after this corrupts the ieFields
*/
} tSirSmeJoinReq, *tpSirSmeJoinReq;
/* / Definition for reponse message to previously issued join request */
/* / MAC ---> */
typedef struct sSirSmeJoinRsp {
uint16_t messageType; /* eWNI_SME_JOIN_RSP */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
tSirResultCodes statusCode;
tAniAuthType authType;
uint32_t vht_channel_width;
/* It holds reasonCode when join fails due to deauth/disassoc frame.
* Otherwise it holds status code.
*/
uint16_t protStatusCode;
uint16_t aid;
uint32_t beaconLength;
uint32_t assocReqLength;
uint32_t assocRspLength;
uint32_t parsedRicRspLen;
#ifdef FEATURE_WLAN_ESE
uint32_t tspecIeLen;
#endif
uint32_t staId; /* Station ID for peer */
/* The DPU signatures will be sent eventually to TL to help it determine
* the association to which a packet belongs to
* Unicast DPU signature
*/
uint8_t ucastSig;
/*Broadcast DPU signature */
uint8_t bcastSig;
/*Timing measurement capability */
uint8_t timingMeasCap;
#ifdef FEATURE_WLAN_TDLS
/* TDLS prohibited and TDLS channel switch prohibited are set as
* per ExtCap IE in received assoc/re-assoc response from AP
*/
bool tdls_prohibited;
bool tdls_chan_swit_prohibited;
#endif
uint8_t nss;
uint32_t max_rate_flags;
#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
tSirSmeHTProfile HTProfile;
#endif
bool supported_nss_1x1;
tDot11fIEHTCaps ht_caps;
tDot11fIEVHTCaps vht_caps;
tDot11fIEHTInfo ht_operation;
tDot11fIEVHTOperation vht_operation;
tDot11fIEhs20vendor_ie hs20vendor_ie;
bool is_fils_connection;
uint16_t fils_seq_num;
#ifdef WLAN_FEATURE_FILS_SK
struct fils_join_rsp_params *fils_join_rsp;
#endif
uint8_t frames[1];
} tSirSmeJoinRsp, *tpSirSmeJoinRsp;
/* / probereq from peer, when wsc is enabled */
typedef struct sSirSmeProbereq {
uint16_t messageType;
uint16_t length;
uint8_t sessionId;
struct qdf_mac_addr peer_macaddr;
uint16_t devicePasswdId;
} tSirSmeProbeReq, *tpSirSmeProbeReq;
typedef struct sSirSmeChanInfo {
uint8_t chan_id;
uint32_t mhz;
uint32_t band_center_freq1;
uint32_t band_center_freq2;
uint32_t info;
uint32_t reg_info_1;
uint32_t reg_info_2;
uint8_t nss;
uint32_t rate_flags;
uint8_t sec_ch_offset;
enum phy_ch_width ch_width;
} tSirSmeChanInfo, *tpSirSmeChanInfo;
enum sir_sme_phy_mode {
SIR_SME_PHY_MODE_LEGACY = 0,
SIR_SME_PHY_MODE_HT = 1,
SIR_SME_PHY_MODE_VHT = 2
};
/* / Definition for Association indication from peer */
/* / MAC ---> */
typedef struct sSirSmeAssocInd {
uint16_t messageType; /* eWNI_SME_ASSOC_IND */
uint16_t length;
uint8_t sessionId;
tSirMacAddr peerMacAddr;
uint16_t aid;
tSirMacAddr bssId; /* Self BSSID */
uint16_t staId; /* Station ID for peer */
uint8_t uniSig; /* DPU signature for unicast packets */
uint8_t bcastSig; /* DPU signature for broadcast packets */
tAniAuthType authType;
tAniSSID ssId; /* SSID used by STA to associate */
tSirWAPIie wapiIE; /* WAPI IE received from peer */
tSirRSNie rsnIE; /* RSN IE received from peer */
/* Additional IE received from peer, which possibly include
* WSC IE and/or P2P IE
*/
tSirAddie addIE;
/* powerCap & supportedChannels are present only when */
/* spectrumMgtIndicator flag is set */
bool spectrumMgtIndicator;
tSirMacPowerCapInfo powerCap;
tSirSupChnl supportedChannels;
bool wmmEnabledSta; /* if present - STA is WMM enabled */
bool reassocReq;
/* Required for indicating the frames to upper layer */
uint32_t beaconLength;
uint8_t *beaconPtr;
uint32_t assocReqLength;
uint8_t *assocReqPtr;
/* Timing measurement capability */
uint8_t timingMeasCap;
tSirSmeChanInfo chan_info;
/* Extended CSA capability of station */
uint8_t ecsa_capable;
bool ampdu;
bool sgi_enable;
bool tx_stbc;
bool rx_stbc;
tSirMacHTChannelWidth ch_width;
enum sir_sme_phy_mode mode;
uint8_t max_supp_idx;
uint8_t max_ext_idx;
uint8_t max_mcs_idx;
uint8_t rx_mcs_map;
uint8_t tx_mcs_map;
tDot11fIEHTCaps HTCaps;
tDot11fIEVHTCaps VHTCaps;
} tSirSmeAssocInd, *tpSirSmeAssocInd;
/* / Definition for Association confirm */
/* / ---> MAC */
typedef struct sSirSmeAssocCnf {
uint16_t messageType; /* eWNI_SME_ASSOC_CNF */
uint16_t length;
tSirResultCodes statusCode;
struct qdf_mac_addr bssid; /* Self BSSID */
struct qdf_mac_addr peer_macaddr;
uint16_t aid;
struct qdf_mac_addr alternate_bssid;
uint8_t alternateChannelId;
} tSirSmeAssocCnf, *tpSirSmeAssocCnf;
/* / Enum definition for Wireless medium status change codes */
typedef enum eSirSmeStatusChangeCode {
eSIR_SME_DEAUTH_FROM_PEER,
eSIR_SME_DISASSOC_FROM_PEER,
eSIR_SME_LOST_LINK_WITH_PEER,
eSIR_SME_CHANNEL_SWITCH,
eSIR_SME_JOINED_NEW_BSS,
eSIR_SME_LEAVING_BSS,
eSIR_SME_IBSS_ACTIVE,
eSIR_SME_IBSS_INACTIVE,
eSIR_SME_IBSS_PEER_DEPARTED,
eSIR_SME_RADAR_DETECTED,
eSIR_SME_IBSS_NEW_PEER,
eSIR_SME_AP_CAPS_CHANGED,
} tSirSmeStatusChangeCode;
typedef struct sSirSmeNewBssInfo {
struct qdf_mac_addr bssId;
uint8_t channelNumber;
uint8_t reserved;
tSirMacSSid ssId;
} tSirSmeNewBssInfo, *tpSirSmeNewBssInfo;
typedef struct sSirSmeApNewCaps {
uint16_t capabilityInfo;
struct qdf_mac_addr bssId;
uint8_t channelId;
uint8_t reserved[3];
tSirMacSSid ssId;
} tSirSmeApNewCaps, *tpSirSmeApNewCaps;
/**
* Table below indicates what information is passed for each of
* the Wireless Media status change notifications:
*
* Status Change code Status change info
* ----------------------------------------------------------------------
* eSIR_SME_DEAUTH_FROM_PEER Reason code received in DEAUTH frame
* eSIR_SME_DISASSOC_FROM_PEER Reason code received in DISASSOC frame
* eSIR_SME_LOST_LINK_WITH_PEER None
* eSIR_SME_CHANNEL_SWITCH New channel number
* eSIR_SME_JOINED_NEW_BSS BSSID, SSID and channel number
* eSIR_SME_LEAVING_BSS None
* eSIR_SME_IBSS_ACTIVE Indicates that another STA joined
* IBSS apart from this STA that
* started IBSS
* eSIR_SME_IBSS_INACTIVE Indicates that only this STA is left
* in IBSS
* eSIR_SME_RADAR_DETECTED Indicates that radar is detected
* eSIR_SME_IBSS_NEW_PEER Indicates that a new peer is detected
* eSIR_SME_AP_CAPS_CHANGED Indicates that capabilities of the AP
* that STA is currently associated with
* have changed.
*/
/* / Definition for Wireless medium status change notification */
typedef struct sSirSmeWmStatusChangeNtf {
uint16_t messageType; /* eWNI_SME_WM_STATUS_CHANGE_NTF */
uint16_t length;
uint8_t sessionId; /* Session ID */
tSirSmeStatusChangeCode statusChangeCode;
struct qdf_mac_addr bssid; /* Self BSSID */
union {
uint16_t deAuthReasonCode; /* eSIR_SME_DEAUTH_FROM_PEER */
/* eSIR_SME_DISASSOC_FROM_PEER */
uint16_t disassocReasonCode;
/* none for eSIR_SME_LOST_LINK_WITH_PEER */
uint8_t newChannelId; /* eSIR_SME_CHANNEL_SWITCH */
tSirSmeNewBssInfo newBssInfo; /* eSIR_SME_JOINED_NEW_BSS */
/* none for eSIR_SME_LEAVING_BSS */
/* none for eSIR_SME_IBSS_ACTIVE */
/* none for eSIR_SME_IBSS_INACTIVE */
/* eSIR_SME_IBSS_NEW_PEER */
tSirNewIbssPeerInfo newIbssPeerInfo;
tSirSmeApNewCaps apNewCaps; /* eSIR_SME_AP_CAPS_CHANGED */
} statusChangeInfo;
} tSirSmeWmStatusChangeNtf, *tpSirSmeWmStatusChangeNtf;
/* Definition for Disassociation request */
typedef struct sSirSmeDisassocReq {
uint16_t messageType; /* eWNI_SME_DISASSOC_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
struct qdf_mac_addr bssid; /* Peer BSSID */
struct qdf_mac_addr peer_macaddr;
uint16_t reasonCode;
/* This flag tells LIM whether to send the disassoc OTA or not */
/* This will be set in while handing off from one AP to other */
uint8_t doNotSendOverTheAir;
bool process_ho_fail;
} qdf_packed tSirSmeDisassocReq, *tpSirSmeDisassocReq;
/* / Definition for Tkip countermeasures request */
typedef struct sSirSmeTkipCntrMeasReq {
uint16_t messageType; /* eWNI_SME_DISASSOC_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
struct qdf_mac_addr bssId; /* Peer BSSID */
bool bEnable; /* Start/stop countermeasures */
} qdf_packed tSirSmeTkipCntrMeasReq, *tpSirSmeTkipCntrMeasReq;
typedef struct sAni64BitCounters {
uint32_t Hi;
uint32_t Lo;
} tAni64BitCounters, *tpAni64BitCounters;
typedef struct sAniSecurityStat {
tAni64BitCounters txBlks;
tAni64BitCounters rxBlks;
tAni64BitCounters formatErrorCnt;
tAni64BitCounters decryptErr;
tAni64BitCounters protExclCnt;
tAni64BitCounters unDecryptableCnt;
tAni64BitCounters decryptOkCnt;
} tAniSecurityStat, *tpAniSecurityStat;
typedef struct sAniTxRxStats {
tAni64BitCounters txFrames;
tAni64BitCounters rxFrames;
tAni64BitCounters nRcvBytes;
tAni64BitCounters nXmitBytes;
} tAniTxRxStats, *tpAniTxRxStats;
typedef struct sAniSecStats {
tAniSecurityStat aes;
tAni64BitCounters aesReplays;
tAniSecurityStat tkip;
tAni64BitCounters tkipReplays;
tAni64BitCounters tkipMicError;
tAniSecurityStat wep;
#if defined(FEATURE_WLAN_WAPI) && !defined(LIBRA_WAPI_SUPPORT)
tAniSecurityStat wpi;
tAni64BitCounters wpiReplays;
tAni64BitCounters wpiMicError;
#endif
} tAniSecStats, *tpAniSecStats;
#define SIR_MAX_RX_CHAINS 3
typedef struct sAniStaStatStruct {
/* following statistic elements till expandPktRxCntLo are not filled
* with valid data. These are kept as it is, since WSM is using this
* structure. These elements can be removed whenever WSM is updated.
* Phystats is used to hold phystats from BD.
*/
uint32_t sentAesBlksUcastHi;
uint32_t sentAesBlksUcastLo;
uint32_t recvAesBlksUcastHi;
uint32_t recvAesBlksUcastLo;
uint32_t aesFormatErrorUcastCnts;
uint32_t aesReplaysUcast;
uint32_t aesDecryptErrUcast;
uint32_t singleRetryPkts;
uint32_t failedTxPkts;
uint32_t ackTimeouts;
uint32_t multiRetryPkts;
uint32_t fragTxCntsHi;
uint32_t fragTxCntsLo;
uint32_t transmittedPktsHi;
uint32_t transmittedPktsLo;
uint32_t phyStatHi; /* These are used to fill in the phystats. */
uint32_t phyStatLo; /* This is only for private use. */
uint32_t uplinkRssi;
uint32_t uplinkSinr;
uint32_t uplinkRate;
uint32_t downlinkRssi;
uint32_t downlinkSinr;
uint32_t downlinkRate;
uint32_t nRcvBytes;
uint32_t nXmitBytes;
/*
* Following elements are valid and filled in correctly. They have
* valid values.
*/
/* Unicast frames and bytes. */
tAniTxRxStats ucStats;
/* Broadcast frames and bytes. */
tAniTxRxStats bcStats;
/* Multicast frames and bytes. */
tAniTxRxStats mcStats;
uint32_t currentTxRate;
uint32_t currentRxRate; /* Rate in 100Kbps */
uint32_t maxTxRate;
uint32_t maxRxRate;
int8_t rssi[SIR_MAX_RX_CHAINS];
tAniSecStats securityStats;
uint8_t currentRxRateIdx; /* This the softmac rate Index. */
uint8_t currentTxRateIdx;
} tAniStaStatStruct, *tpAniStaStatStruct;
typedef enum sPacketType {
ePACKET_TYPE_UNKNOWN,
ePACKET_TYPE_11A,
ePACKET_TYPE_11G,
ePACKET_TYPE_11B,
ePACKET_TYPE_11N
} tPacketType, *tpPacketType;
/* / Definition for Disassociation response */
typedef struct sSirSmeDisassocRsp {
uint16_t messageType; /* eWNI_SME_DISASSOC_RSP */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
tSirResultCodes statusCode;
struct qdf_mac_addr peer_macaddr;
tAniStaStatStruct perStaStats; /* STA stats */
uint16_t staId;
} tSirSmeDisassocRsp, *tpSirSmeDisassocRsp;
/* / Definition for Disassociation indication from peer */
typedef struct sSirSmeDisassocInd {
uint16_t messageType; /* eWNI_SME_DISASSOC_IND */
uint16_t length;
uint8_t sessionId; /* Session Identifier */
uint16_t transactionId; /* Transaction Identifier with PE */
tSirResultCodes statusCode;
struct qdf_mac_addr bssid;
struct qdf_mac_addr peer_macaddr;
tAniStaStatStruct perStaStats; /* STA stats */
uint16_t staId;
uint32_t reasonCode;
} tSirSmeDisassocInd, *tpSirSmeDisassocInd;
/* / Definition for Disassociation confirm */
/* / MAC ---> */
typedef struct sSirSmeDisassocCnf {
uint16_t messageType; /* eWNI_SME_DISASSOC_CNF */
uint16_t length;
tSirResultCodes statusCode;
struct qdf_mac_addr bssid;
struct qdf_mac_addr peer_macaddr;
} tSirSmeDisassocCnf, *tpSirSmeDisassocCnf,
tSirSmeDeauthCnf, *tpSirSmeDeauthCnf;
/**
* struct sir_sme_discon_done_ind - disconnect done indiaction
* @message_type: msg type
* @length: length of msg
* @session_id: session id of the indication
* @reason_code: reason for disconnect indication
* @peer_mac: peer mac
*/
struct sir_sme_discon_done_ind {
uint16_t message_type;
uint16_t length;
uint8_t session_id;
tSirResultCodes reason_code;
tSirMacAddr peer_mac;
};
/* / Definition for Deauthetication request */
typedef struct sSirSmeDeauthReq {
uint16_t messageType; /* eWNI_SME_DEAUTH_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
struct qdf_mac_addr bssid; /* AP BSSID */
struct qdf_mac_addr peer_macaddr;
uint16_t reasonCode;
} tSirSmeDeauthReq, *tpSirSmeDeauthReq;
/* / Definition for Deauthetication response */
typedef struct sSirSmeDeauthRsp {
uint16_t messageType; /* eWNI_SME_DEAUTH_RSP */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
tSirResultCodes statusCode;
struct qdf_mac_addr peer_macaddr;
} tSirSmeDeauthRsp, *tpSirSmeDeauthRsp;
/* / Definition for Deauthetication indication from peer */
typedef struct sSirSmeDeauthInd {
uint16_t messageType; /* eWNI_SME_DEAUTH_IND */
uint16_t length;
uint8_t sessionId; /* Added for BT-AMP */
uint16_t transactionId; /* Added for BT-AMP */
tSirResultCodes statusCode;
struct qdf_mac_addr bssid; /* AP BSSID */
struct qdf_mac_addr peer_macaddr;
uint16_t staId;
uint32_t reasonCode;
int8_t rssi;
} tSirSmeDeauthInd, *tpSirSmeDeauthInd;
/* / Definition for stop BSS request message */
typedef struct sSirSmeStopBssReq {
uint16_t messageType; /* eWNI_SME_STOP_BSS_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* tranSaction ID for cmd */
tSirResultCodes reasonCode;
struct qdf_mac_addr bssid; /* Self BSSID */
} tSirSmeStopBssReq, *tpSirSmeStopBssReq;
/* / Definition for stop BSS response message */
typedef struct sSirSmeStopBssRsp {
uint16_t messageType; /* eWNI_SME_STOP_BSS_RSP */
uint16_t length;
tSirResultCodes statusCode;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
} tSirSmeStopBssRsp, *tpSirSmeStopBssRsp;
/* / Definition for Channel Switch indication for station */
/* / MAC ---> */
typedef struct sSirSmeSwitchChannelInd {
uint16_t messageType; /* eWNI_SME_SWITCH_CHL_IND */
uint16_t length;
uint8_t sessionId;
uint16_t newChannelId;
struct ch_params_s chan_params;
struct qdf_mac_addr bssid; /* BSSID */
} tSirSmeSwitchChannelInd, *tpSirSmeSwitchChannelInd;
/* / Definition for Neighbor BSS indication */
/* / MAC ---> */
/* / MAC reports this each time a new I/BSS is detected */
typedef struct sSirSmeNeighborBssInd {
uint16_t messageType; /* eWNI_SME_NEIGHBOR_BSS_IND */
uint16_t length;
uint8_t sessionId;
tSirBssDescription bssDescription[1];
} tSirSmeNeighborBssInd, *tpSirSmeNeighborBssInd;
/* / Definition for MIC failure indication */
/* / MAC ---> */
/* / MAC reports this each time a MIC failure occures on Rx TKIP packet */
typedef struct sSirSmeMicFailureInd {
uint16_t messageType; /* eWNI_SME_MIC_FAILURE_IND */
uint16_t length;
uint8_t sessionId;
struct qdf_mac_addr bssId;
tSirMicFailureInfo info;
} tSirSmeMicFailureInd, *tpSirSmeMicFailureInd;
typedef struct sSirSmeMissedBeaconInd {
uint16_t messageType; /* eWNI_SME_MISSED_BEACON_IND */
uint16_t length;
uint8_t bssIdx;
} tSirSmeMissedBeaconInd, *tpSirSmeMissedBeaconInd;
/* / Definition for Set Context request */
/* / ---> MAC */
typedef struct sSirSmeSetContextReq {
uint16_t messageType; /* eWNI_SME_SET_CONTEXT_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
struct qdf_mac_addr peer_macaddr;
struct qdf_mac_addr bssid; /* BSSID */
tSirKeyMaterial keyMaterial;
} tSirSmeSetContextReq, *tpSirSmeSetContextReq;
/* / Definition for Set Context response */
/* / MAC ---> */
typedef struct sSirSmeSetContextRsp {
uint16_t messageType; /* eWNI_SME_SET_CONTEXT_RSP */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
tSirResultCodes statusCode;
struct qdf_mac_addr peer_macaddr;
} tSirSmeSetContextRsp, *tpSirSmeSetContextRsp;
/* / Statistic definitions */
/* ============================================================= */
/* Per STA statistic structure; This same struct will be used for Aggregate */
/* STA stats as well. */
/* Clear radio stats and clear per sta stats */
typedef enum {
eANI_CLEAR_ALL_STATS, /* Clears all stats */
eANI_CLEAR_RX_STATS, /* Clears RX stats of the radio interface */
eANI_CLEAR_TX_STATS, /* Clears TX stats of the radio interface */
eANI_CLEAR_RADIO_STATS, /* Clears all the radio stats */
eANI_CLEAR_PER_STA_STATS, /* Clears Per STA stats */
eANI_CLEAR_AGGR_PER_STA_STATS, /* Clears aggregate stats */
/* Used to distinguish between per sta to security stats. */
/* Used only by AP, FW just returns the same param as it received. */
eANI_LINK_STATS, /* Get Per STA stats */
eANI_SECURITY_STATS, /* Get Per STA security stats */
eANI_CLEAR_STAT_TYPES_END
} tAniStatSubTypes;
typedef struct sAniTxCtrs {
/* add the rate counters here */
uint32_t tx1Mbps;
uint32_t tx2Mbps;
uint32_t tx5_5Mbps;
uint32_t tx6Mbps;
uint32_t tx9Mbps;
uint32_t tx11Mbps;
uint32_t tx12Mbps;
uint32_t tx18Mbps;
uint32_t tx24Mbps;
uint32_t tx36Mbps;
uint32_t tx48Mbps;
uint32_t tx54Mbps;
uint32_t tx72Mbps;
uint32_t tx96Mbps;
uint32_t tx108Mbps;
/* tx path radio counts */
uint32_t txFragHi;
uint32_t txFragLo;
uint32_t txFrameHi;
uint32_t txFrameLo;
uint32_t txMulticastFrameHi;
uint32_t txMulticastFrameLo;
uint32_t txFailedHi;
uint32_t txFailedLo;
uint32_t multipleRetryHi;
uint32_t multipleRetryLo;
uint32_t singleRetryHi;
uint32_t singleRetryLo;
uint32_t ackFailureHi;
uint32_t ackFailureLo;
uint32_t xmitBeacons;
} tAniTxCtrs, *tpAniTxCtrs;
typedef struct sAniRxCtrs {
/* receive frame rate counters */
uint32_t rx1Mbps;
uint32_t rx2Mbps;
uint32_t rx5_5Mbps;
uint32_t rx6Mbps;
uint32_t rx9Mbps;
uint32_t rx11Mbps;
uint32_t rx12Mbps;
uint32_t rx18Mbps;
uint32_t rx24Mbps;
uint32_t rx36Mbps;
uint32_t rx48Mbps;
uint32_t rx54Mbps;
uint32_t rx72Mbps;
uint32_t rx96Mbps;
uint32_t rx108Mbps;
/* receive size counters; 'Lte' = Less than or equal to */
uint32_t rxLte64;
uint32_t rxLte128Gt64;
uint32_t rxLte256Gt128;
uint32_t rxLte512Gt256;
uint32_t rxLte1kGt512;
uint32_t rxLte1518Gt1k;
uint32_t rxLte2kGt1518;
uint32_t rxLte4kGt2k;
/* rx radio stats */
uint32_t rxFrag;
uint32_t rxFrame;
uint32_t fcsError;
uint32_t rxMulticast;
uint32_t duplicate;
uint32_t rtsSuccess;
uint32_t rtsFailed;
uint32_t wepUndecryptables;
uint32_t drops;
uint32_t aesFormatErrorUcastCnts;
uint32_t aesReplaysUcast;
uint32_t aesDecryptErrUcast;
} tAniRxCtrs, *tpAniRxCtrs;
/* *************************************************************** */
/*******************PE Statistics*************************/
/*
* tpAniGetPEStatsReq is tied to
* for SME ==> PE eWNI_SME_GET_STATISTICS_REQ msgId and
* for PE ==> HAL SIR_HAL_GET_STATISTICS_REQ msgId
*/
typedef struct sAniGetPEStatsReq {
/* Common for all types are requests */
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint32_t staId; /* Per STA stats request must contain valid */
/* categories of stats requested. look at ePEStatsMask */
uint32_t statsMask;
uint8_t sessionId;
} tAniGetPEStatsReq, *tpAniGetPEStatsReq;
/*
* tpAniGetPEStatsRsp is tied to
* for PE ==> SME eWNI_SME_GET_STATISTICS_RSP msgId and
* for HAL ==> PE SIR_HAL_GET_STATISTICS_RSP msgId
*/
typedef struct sAniGetPEStatsRsp {
/* Common for all types are responses */
uint16_t msgType; /* message type is same as the request type */
/* length of the entire request, includes the pStatsBuf length too */
uint16_t msgLen;
uint8_t sessionId;
uint32_t rc; /* success/failure */
uint32_t staId; /* Per STA stats request must contain valid */
/* categories of stats requested. look at ePEStatsMask */
uint32_t statsMask;
/* void *pStatsBuf; */
/*
* The Stats buffer starts here and can be an aggregate of more than one
* statistics structure depending on statsMask. The void pointer
* "pStatsBuf" is commented out intentionally and the src code that uses
* this structure should take that into account.
*/
} tAniGetPEStatsRsp, *tpAniGetPEStatsRsp;
typedef struct sAniGetRssiReq {
/* Common for all types are requests */
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t sessionId;
uint8_t staId;
int8_t lastRSSI; /* in case of error, return last RSSI */
void *rssiCallback;
void *pDevContext; /* device context */
void *p_cds_context; /* cds context */
} tAniGetRssiReq, *tpAniGetRssiReq;
typedef struct sAniGetSnrReq {
/* Common for all types are requests */
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t sessionId;
uint8_t staId;
void *snrCallback;
void *pDevContext; /* device context */
int8_t snr;
} tAniGetSnrReq, *tpAniGetSnrReq;
/* Change country code request MSG structure */
typedef struct sAniChangeCountryCodeReq {
/* Common for all types are requests */
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t countryCode[WNI_CFG_COUNTRY_CODE_LEN]; /* 3 char country code */
bool countryFromUserSpace;
bool sendRegHint; /* true if we want to send hint to NL80211 */
void *changeCCCallback;
void *pDevContext; /* device context */
void *p_cds_context; /* cds context */
} tAniChangeCountryCodeReq, *tpAniChangeCountryCodeReq;
/**
* struct ani_scan_req - Scan request
* @msg_type: Message type
* @msg_len: Message Length
* @session_id: SME session Id
* @scan_param: scan request parameter
* @callback: call back function for scan result
* @ctx: Global context
*
* Scan request message structure
*/
struct ani_scan_req {
/* message type is same as the request type */
uint16_t msg_type;
/* length of the entire request */
uint16_t msg_len;
uint16_t session_id;
void *scan_param;
void *callback;
void *ctx;
};
/**
* struct ani_roc_req - Remain on channel request
* @msg_type: Message type
* @msg_len: Message Length
* @session_id: SME session Id
* @channel: channel number
* @callback: call back function for scan result
* @duration: Roc duration
* @is_p2pprobe_allowed : flag for p2p probe request
* @ctx: Global context
* @scan_id: Scan Identifier
*
* Remain on channel request message structure
*/
struct ani_roc_req {
/* message type is same as the request type */
uint16_t msg_type;
/* length of the entire request */
uint16_t msg_len;
uint16_t session_id;
uint8_t channel;
uint32_t duration;
uint8_t is_p2pprobe_allowed;
void *callback;
void *ctx;
uint32_t scan_id;
};
/* generic country code change request MSG structure */
typedef struct sAniGenericChangeCountryCodeReq {
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t countryCode[WNI_CFG_COUNTRY_CODE_LEN]; /* 3 char country code */
} tAniGenericChangeCountryCodeReq, *tpAniGenericChangeCountryCodeReq;
/**
* struct sAniDHCPStopInd - DHCP Stop indication message
* @msgType: message type is same as the request type
* @msgLen: length of the entire request
* @device_mode: Mode of the device(ex:STA, AP)
* @adapterMacAddr: MAC address of the adapter
* @peerMacAddr: MAC address of the connected peer
*/
typedef struct sAniDHCPStopInd {
uint16_t msgType;
uint16_t msgLen;
uint8_t device_mode;
struct qdf_mac_addr adapterMacAddr;
struct qdf_mac_addr peerMacAddr;
} tAniDHCPInd, *tpAniDHCPInd;
typedef struct sAniTXFailMonitorInd {
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t tx_fail_count;
void *txFailIndCallback;
} tAniTXFailMonitorInd, *tpAniTXFailMonitorInd;
typedef enum eTxRateInfo {
eHAL_TX_RATE_LEGACY = 0x1, /* Legacy rates */
eHAL_TX_RATE_HT20 = 0x2, /* HT20 rates */
eHAL_TX_RATE_HT40 = 0x4, /* HT40 rates */
eHAL_TX_RATE_SGI = 0x8, /* Rate with Short guard interval */
eHAL_TX_RATE_LGI = 0x10, /* Rate with Long guard interval */
eHAL_TX_RATE_VHT20 = 0x20, /* VHT 20 rates */
eHAL_TX_RATE_VHT40 = 0x40, /* VHT 40 rates */
eHAL_TX_RATE_VHT80 = 0x80 /* VHT 80 rates */
} tTxrateinfoflags;
/**********************PE Statistics end*************************/
typedef struct sSirP2PNoaStart {
uint32_t status;
uint32_t bssIdx;
} tSirP2PNoaStart, *tpSirP2PNoaStart;
typedef struct sSirTdlsInd {
uint16_t status;
uint16_t assocId;
uint16_t staIdx;
uint16_t reasonCode;
} tSirTdlsInd, *tpSirTdlsInd;
typedef struct sSirP2PNoaAttr {
#ifdef ANI_BIG_BYTE_ENDIAN
uint32_t index:8;
uint32_t oppPsFlag:1;
uint32_t ctWin:7;
uint32_t rsvd1:16;
#else
uint32_t rsvd1:16;
uint32_t ctWin:7;
uint32_t oppPsFlag:1;
uint32_t index:8;
#endif
#ifdef ANI_BIG_BYTE_ENDIAN
uint32_t uNoa1IntervalCnt:8;
uint32_t rsvd2:24;
#else
uint32_t rsvd2:24;
uint32_t uNoa1IntervalCnt:8;
#endif
uint32_t uNoa1Duration;
uint32_t uNoa1Interval;
uint32_t uNoa1StartTime;
#ifdef ANI_BIG_BYTE_ENDIAN
uint32_t uNoa2IntervalCnt:8;
uint32_t rsvd3:24;
#else
uint32_t rsvd3:24;
uint32_t uNoa2IntervalCnt:8;
#endif
uint32_t uNoa2Duration;
uint32_t uNoa2Interval;
uint32_t uNoa2StartTime;
} tSirP2PNoaAttr, *tpSirP2PNoaAttr;
typedef struct sSirTclasInfo {
tSirMacTclasIE tclas;
uint8_t version; /* applies only for classifier type ip */
union {
tSirMacTclasParamEthernet eth;
tSirMacTclasParamIPv4 ipv4;
tSirMacTclasParamIPv6 ipv6;
tSirMacTclasParam8021dq t8021dq;
} qdf_packed tclasParams;
} qdf_packed tSirTclasInfo;
typedef struct sSirAddtsReqInfo {
uint8_t dialogToken;
tSirMacTspecIE tspec;
uint8_t numTclas; /* number of Tclas elements */
tSirTclasInfo tclasInfo[SIR_MAC_TCLASIE_MAXNUM];
uint8_t tclasProc;
#if defined(FEATURE_WLAN_ESE)
tSirMacESETSRSIE tsrsIE;
uint8_t tsrsPresent:1;
#endif
uint8_t wmeTspecPresent:1;
uint8_t wsmTspecPresent:1;
uint8_t lleTspecPresent:1;
uint8_t tclasProcPresent:1;
} tSirAddtsReqInfo, *tpSirAddtsReqInfo;
typedef struct sSirAddtsRspInfo {
uint8_t dialogToken;
tSirMacStatusCodes status;
tSirMacTsDelayIE delay;
tSirMacTspecIE tspec;
uint8_t numTclas; /* number of Tclas elements */
tSirTclasInfo tclasInfo[SIR_MAC_TCLASIE_MAXNUM];
uint8_t tclasProc;
tSirMacScheduleIE schedule;
#ifdef FEATURE_WLAN_ESE
tSirMacESETSMIE tsmIE;
uint8_t tsmPresent:1;
#endif
uint8_t wmeTspecPresent:1;
uint8_t wsmTspecPresent:1;
uint8_t lleTspecPresent:1;
uint8_t tclasProcPresent:1;
uint8_t schedulePresent:1;
} tSirAddtsRspInfo, *tpSirAddtsRspInfo;
typedef struct sSirDeltsReqInfo {
tSirMacTSInfo tsinfo;
tSirMacTspecIE tspec;
uint8_t wmeTspecPresent:1;
uint8_t wsmTspecPresent:1;
uint8_t lleTspecPresent:1;
} tSirDeltsReqInfo, *tpSirDeltsReqInfo;
/* / Add a tspec as defined */
typedef struct sSirAddtsReq {
uint16_t messageType; /* eWNI_SME_ADDTS_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId;
struct qdf_mac_addr bssid; /* BSSID */
uint32_t timeout; /* in ms */
uint8_t rspReqd;
tSirAddtsReqInfo req;
} tSirAddtsReq, *tpSirAddtsReq;
typedef struct sSirAddtsRsp {
uint16_t messageType; /* eWNI_SME_ADDTS_RSP */
uint16_t length;
uint8_t sessionId; /* sme sessionId Added for BT-AMP support */
uint16_t transactionId; /* sme transaction Id - for BT-AMP Support */
uint32_t rc; /* return code */
tSirAddtsRspInfo rsp;
} tSirAddtsRsp, *tpSirAddtsRsp;
typedef struct sSirDeltsReq {
uint16_t messageType; /* eWNI_SME_DELTS_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId;
struct qdf_mac_addr bssid; /* BSSID */
uint16_t aid; /* use 0 if macAddr is being specified */
struct qdf_mac_addr macaddr; /* only on AP to specify the STA */
uint8_t rspReqd;
tSirDeltsReqInfo req;
} tSirDeltsReq, *tpSirDeltsReq;
typedef struct sSirDeltsRsp {
uint16_t messageType; /* eWNI_SME_DELTS_RSP */
uint16_t length;
uint8_t sessionId; /* sme sessionId Added for BT-AMP support */
uint16_t transactionId; /* sme transaction Id - for BT-AMP Support */
uint32_t rc;
uint16_t aid; /* use 0 if macAddr is being specified */
struct qdf_mac_addr macaddr; /* only on AP to specify the STA */
tSirDeltsReqInfo rsp;
} tSirDeltsRsp, *tpSirDeltsRsp;
#define SIR_QOS_NUM_AC_MAX 4
typedef struct sSirAggrQosReqInfo {
uint16_t tspecIdx;
tSirAddtsReqInfo aggrAddTsInfo[SIR_QOS_NUM_AC_MAX];
} tSirAggrQosReqInfo, *tpSirAggrQosReqInfo;
typedef struct sSirAggrQosReq {
uint16_t messageType; /* eWNI_SME_ADDTS_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId;
struct qdf_mac_addr bssid; /* BSSID */
uint32_t timeout; /* in ms */
uint8_t rspReqd;
tSirAggrQosReqInfo aggrInfo;
} tSirAggrQosReq, *tpSirAggrQosReq;
typedef struct sSirAggrQosRspInfo {
uint16_t tspecIdx;
tSirAddtsRspInfo aggrRsp[SIR_QOS_NUM_AC_MAX];
} tSirAggrQosRspInfo, *tpSirAggrQosRspInfo;
typedef struct sSirAggrQosRsp {
uint16_t messageType;
uint16_t length;
uint8_t sessionId;
tSirAggrQosRspInfo aggrInfo;
} tSirAggrQosRsp, *tpSirAggrQosRsp;
typedef struct sSirQosMapSet {
uint8_t present;
uint8_t num_dscp_exceptions;
uint8_t dscp_exceptions[21][2];
uint8_t dscp_range[8][2];
} tSirQosMapSet, *tpSirQosMapSet;
typedef struct sSmeIbssPeerInd {
uint16_t mesgType;
uint16_t mesgLen;
uint8_t sessionId;
struct qdf_mac_addr peer_addr;
uint16_t staId;
/*
* The DPU signatures will be sent eventually to TL to help it determine
* the association to which a packet belongs to
*/
/* Unicast DPU signature */
uint8_t ucastSig;
/*Broadcast DPU signature */
uint8_t bcastSig;
/* Beacon will be appended for new Peer indication. */
} tSmeIbssPeerInd, *tpSmeIbssPeerInd;
typedef struct sSirIbssPeerInactivityInd {
uint8_t bssIdx;
uint8_t staIdx;
struct qdf_mac_addr peer_addr;
} tSirIbssPeerInactivityInd, *tpSirIbssPeerInactivityInd;
typedef struct sLimScanChn {
uint16_t numTimeScan; /* how many time this channel is scan */
uint8_t channelId;
} tLimScanChn;
/**
* struct lim_channel_status
* @channelfreq: Channel freq
* @noise_floor: Noise Floor value
* @rx_clear_count: rx clear count
* @cycle_count: cycle count
* @chan_tx_pwr_range: channel tx power per range in 0.5dBm steps
* @chan_tx_pwr_throughput: channel tx power per throughput
* @rx_frame_count: rx frame count (cumulative)
* @bss_rx_cycle_count: BSS rx cycle count
* @rx_11b_mode_data_duration: b-mode data rx time (units are microseconds)
* @tx_frame_count: BSS tx cycle count 3045
* @mac_clk_mhz: sample frequency
* @channel_id: channel index
* @cmd_flags: indicate which stat event is this status coming from
*/
struct lim_channel_status {
uint32_t channelfreq;
uint32_t noise_floor;
uint32_t rx_clear_count;
uint32_t cycle_count;
uint32_t chan_tx_pwr_range;
uint32_t chan_tx_pwr_throughput;
uint32_t rx_frame_count;
uint32_t bss_rx_cycle_count;
uint32_t rx_11b_mode_data_duration;
uint32_t tx_frame_count;
uint32_t mac_clk_mhz;
uint32_t channel_id;
uint32_t cmd_flags;
};
/**
* struct lim_scan_channel_status
* @total_channel: total number of be scanned channel
* @channel_status_list: channel status info store in this array
*/
struct lim_scan_channel_status {
uint8_t total_channel;
struct lim_channel_status
channel_status_list[SIR_MAX_SUPPORTED_ACS_CHANNEL_LIST];
};
typedef struct sSmeGetScanChnRsp {
/* Message Type */
uint16_t mesgType;
/* Message Length */
uint16_t mesgLen;
uint8_t sessionId;
uint8_t numChn;
tLimScanChn scanChn[1];
} tSmeGetScanChnRsp, *tpSmeGetScanChnRsp;
typedef struct sLimScanChnInfo {
uint8_t numChnInfo; /* number of channels in scanChn */
tLimScanChn scanChn[SIR_MAX_SUPPORTED_CHANNEL_LIST];
} tLimScanChnInfo;
typedef struct sSirSmeGetAssocSTAsReq {
uint16_t messageType; /* eWNI_SME_GET_ASSOC_STAS_REQ */
uint16_t length;
struct qdf_mac_addr bssid; /* BSSID */
uint16_t modId;
void *pUsrContext;
void *pSapEventCallback;
/* Pointer to allocated mem passed in wlansap_get_assoc_stations API */
void *pAssocStasArray;
} tSirSmeGetAssocSTAsReq, *tpSirSmeGetAssocSTAsReq;
typedef struct sSmeMaxAssocInd {
uint16_t mesgType; /* eWNI_SME_MAX_ASSOC_EXCEEDED */
uint16_t mesgLen;
uint8_t sessionId;
/* the new peer that got rejected max assoc limit reached */
struct qdf_mac_addr peer_mac;
} tSmeMaxAssocInd, *tpSmeMaxAssocInd;
typedef struct sSmeCsaOffloadInd {
uint16_t mesgType; /* eWNI_SME_CSA_OFFLOAD_EVENT */
uint16_t mesgLen;
struct qdf_mac_addr bssid; /* BSSID */
} tSmeCsaOffloadInd, *tpSmeCsaOffloadInd;
/* WOW related structures */
#define SIR_WOWL_BCAST_PATTERN_MAX_SIZE 146
/**
* struct wow_add_pattern - wow pattern add structure
* @pattern_id: pattern id
* @pattern_byte_offset: pattern byte offset from beginning of the 802.11
* packet to start of the wake-up pattern
* @pattern_size: pattern size
* @pattern: pattern byte stream
* @pattern_mask_size: pattern mask size
* @pattern_mask: pattern mask
* @session_id: session id
*/
struct wow_add_pattern {
uint8_t pattern_id;
uint8_t pattern_byte_offset;
uint8_t pattern_size;
uint8_t pattern[SIR_WOWL_BCAST_PATTERN_MAX_SIZE];
uint8_t pattern_mask_size;
uint8_t pattern_mask[SIR_WOWL_BCAST_PATTERN_MAX_SIZE];
uint8_t session_id;
};
/**
* struct wow_delete_patern - wow pattern delete structure
* @pattern_id: pattern id of wake up pattern to be deleted
* @session_id: session id
*/
struct wow_delete_pattern {
uint8_t pattern_id;
uint8_t session_id;
};
/* SME->PE: Enter WOWLAN parameters */
typedef struct sSirSmeWowlEnterParams {
uint8_t sessionId;
/* Enables/disables magic packet filtering */
uint8_t ucMagicPktEnable;
/* Magic pattern */
struct qdf_mac_addr magic_ptrn;
/* Enables/disables packet pattern filtering */
uint8_t ucPatternFilteringEnable;
#ifdef WLAN_WAKEUP_EVENTS
/*
* This configuration directs the WoW packet filtering to look at EAP-ID
* requests embedded in EAPOL frames and use this as a wake source.
*/
uint8_t ucWoWEAPIDRequestEnable;
/*
* This configuration directs the WoW packet filtering to look for
* EAPOL-4WAY requests and use this as a wake source.
*/
uint8_t ucWoWEAPOL4WayEnable;
/*
* This configuration allows a host wakeup on an network scan
* offload match.
*/
uint8_t ucWowNetScanOffloadMatch;
/* This configuration allows a host wakeup on any GTK rekeying error.
*/
uint8_t ucWowGTKRekeyError;
/* This configuration allows a host wakeup on BSS connection loss.
*/
uint8_t ucWoWBSSConnLoss;
#endif /* WLAN_WAKEUP_EVENTS */
struct qdf_mac_addr bssid;
} tSirSmeWowlEnterParams, *tpSirSmeWowlEnterParams;
/* PE<->HAL: Enter WOWLAN parameters */
typedef struct sSirHalWowlEnterParams {
uint8_t sessionId;
/* Enables/disables magic packet filtering */
uint8_t ucMagicPktEnable;
/* Magic pattern */
struct qdf_mac_addr magic_ptrn;
/* Enables/disables packet pattern filtering in firmware.
Enabling this flag enables broadcast pattern matching
in Firmware. If unicast pattern matching is also desired,
ucUcastPatternFilteringEnable flag must be set tot true
as well
*/
uint8_t ucPatternFilteringEnable;
/* Enables/disables unicast packet pattern filtering.
This flag specifies whether we want to do pattern match
on unicast packets as well and not just broadcast packets.
This flag has no effect if the ucPatternFilteringEnable
(main controlling flag) is set to false
*/
uint8_t ucUcastPatternFilteringEnable;
/* This configuration is valid only when magicPktEnable=1.
* It requests hardware to wake up when it receives the
* Channel Switch Action Frame.
*/
uint8_t ucWowChnlSwitchRcv;
/* This configuration is valid only when magicPktEnable=1.
* It requests hardware to wake up when it receives the
* Deauthentication Frame.
*/
uint8_t ucWowDeauthRcv;
/* This configuration is valid only when magicPktEnable=1.
* It requests hardware to wake up when it receives the
* Disassociation Frame.
*/
uint8_t ucWowDisassocRcv;
/* This configuration is valid only when magicPktEnable=1.
* It requests hardware to wake up when it has missed
* consecutive beacons. This is a hardware register
* configuration (NOT a firmware configuration).
*/
uint8_t ucWowMaxMissedBeacons;
/* This configuration is valid only when magicPktEnable=1.
* This is a timeout value in units of microsec. It requests
* hardware to unconditionally wake up after it has stayed
* in WoWLAN mode for some time. Set 0 to disable this feature.
*/
uint8_t ucWowMaxSleepUsec;
#ifdef WLAN_WAKEUP_EVENTS
/* This config directs the WoW pkt filtering to look for EAP-ID
* requests embedded in EAPOL frames and use this as a wake source.
*/
uint8_t ucWoWEAPIDRequestEnable;
/* This config directs the WoW pkt filtering to look for EAPOL-4WAY
* requests and use this as a wake source.
*/
uint8_t ucWoWEAPOL4WayEnable;
/* This config allows a host wakeup on an network scan offload match.
*/
uint8_t ucWowNetScanOffloadMatch;
/* This configuration allows a host wakeup on any GTK rekeying error.
*/
uint8_t ucWowGTKRekeyError;
/* This configuration allows a host wakeup on BSS connection loss.
*/
uint8_t ucWoWBSSConnLoss;
#endif /* WLAN_WAKEUP_EVENTS */
/* Status code to be filled by HAL when it sends
* SIR_HAL_WOWL_ENTER_RSP to PE.
*/
QDF_STATUS status;
/*BSSID to find the current session
*/
uint8_t bssIdx;
} tSirHalWowlEnterParams, *tpSirHalWowlEnterParams;
/* SME->PE: Exit WOWLAN parameters */
typedef struct sSirSmeWowlExitParams {
uint8_t sessionId;
} tSirSmeWowlExitParams, *tpSirSmeWowlExitParams;
/* PE<->HAL: Exit WOWLAN parameters */
typedef struct sSirHalWowlExitParams {
uint8_t sessionId;
/* Status code to be filled by HAL when it sends
* SIR_HAL_WOWL_EXIT_RSP to PE.
*/
QDF_STATUS status;
/*BSSIDX to find the current session
*/
uint8_t bssIdx;
} tSirHalWowlExitParams, *tpSirHalWowlExitParams;
#define SIR_MAX_NAME_SIZE 64
#define SIR_MAX_TEXT_SIZE 32
typedef struct sSirName {
uint8_t num_name;
uint8_t name[SIR_MAX_NAME_SIZE];
} tSirName;
typedef struct sSirText {
uint8_t num_text;
uint8_t text[SIR_MAX_TEXT_SIZE];
} tSirText;
#define SIR_WPS_PROBRSP_VER_PRESENT 0x00000001
#define SIR_WPS_PROBRSP_STATE_PRESENT 0x00000002
#define SIR_WPS_PROBRSP_APSETUPLOCK_PRESENT 0x00000004
#define SIR_WPS_PROBRSP_SELECTEDREGISTRA_PRESENT 0x00000008
#define SIR_WPS_PROBRSP_DEVICEPASSWORDID_PRESENT 0x00000010
#define SIR_WPS_PROBRSP_SELECTEDREGISTRACFGMETHOD_PRESENT 0x00000020
#define SIR_WPS_PROBRSP_RESPONSETYPE_PRESENT 0x00000040
#define SIR_WPS_PROBRSP_UUIDE_PRESENT 0x00000080
#define SIR_WPS_PROBRSP_MANUFACTURE_PRESENT 0x00000100
#define SIR_WPS_PROBRSP_MODELNAME_PRESENT 0x00000200
#define SIR_WPS_PROBRSP_MODELNUMBER_PRESENT 0x00000400
#define SIR_WPS_PROBRSP_SERIALNUMBER_PRESENT 0x00000800
#define SIR_WPS_PROBRSP_PRIMARYDEVICETYPE_PRESENT 0x00001000
#define SIR_WPS_PROBRSP_DEVICENAME_PRESENT 0x00002000
#define SIR_WPS_PROBRSP_CONFIGMETHODS_PRESENT 0x00004000
#define SIR_WPS_PROBRSP_RF_BANDS_PRESENT 0x00008000
typedef struct sSirWPSProbeRspIE {
uint32_t FieldPresent;
uint32_t Version; /* Version. 0x10 = version 1.0, 0x11 = etc. */
uint32_t wpsState; /* 1 = unconfigured, 2 = configured. */
bool APSetupLocked; /* Must be included if value is true */
/*
* BOOL: indicates if the user has recently activated a Registrar to
* add an Enrollee.
*/
bool SelectedRegistra;
uint16_t DevicePasswordID; /* Device Password ID */
/* Selected Registrar config method */
uint16_t SelectedRegistraCfgMethod;
uint8_t ResponseType; /* Response type */
uint8_t UUID_E[16]; /* Unique identifier of the AP. */
tSirName Manufacture;
tSirText ModelName;
tSirText ModelNumber;
tSirText SerialNumber;
/* Device Category ID: 1Computer, 2Input Device, ... */
uint32_t PrimaryDeviceCategory;
/* Vendor specific OUI for Device Sub Category */
uint8_t PrimaryDeviceOUI[4];
/*
Device Sub Category ID: 1-PC, 2-Server if Device Category ID
* is computer
*/
uint32_t DeviceSubCategory;
tSirText DeviceName;
uint16_t ConfigMethod; /* Configuaration method */
uint8_t RFBand; /* RF bands available on the AP */
} tSirWPSProbeRspIE;
#define SIR_WPS_BEACON_VER_PRESENT 0x00000001
#define SIR_WPS_BEACON_STATE_PRESENT 0x00000002
#define SIR_WPS_BEACON_APSETUPLOCK_PRESENT 0x00000004
#define SIR_WPS_BEACON_SELECTEDREGISTRA_PRESENT 0x00000008
#define SIR_WPS_BEACON_DEVICEPASSWORDID_PRESENT 0x00000010
#define SIR_WPS_BEACON_SELECTEDREGISTRACFGMETHOD_PRESENT 0x00000020
#define SIR_WPS_BEACON_UUIDE_PRESENT 0x00000080
#define SIR_WPS_BEACON_RF_BANDS_PRESENT 0x00000100
#define SIR_WPS_UUID_LEN 16
typedef struct sSirWPSBeaconIE {
uint32_t FieldPresent;
uint32_t Version; /* Version. 0x10 = version 1.0, 0x11 = etc. */
uint32_t wpsState; /* 1 = unconfigured, 2 = configured. */
bool APSetupLocked; /* Must be included if value is true */
/*
* BOOL: indicates if the user has recently activated a Registrar to
* add an Enrollee.
*/
bool SelectedRegistra;
uint16_t DevicePasswordID; /* Device Password ID */
/* Selected Registrar config method */
uint16_t SelectedRegistraCfgMethod;
uint8_t UUID_E[SIR_WPS_UUID_LEN]; /* Unique identifier of the AP. */
uint8_t RFBand; /* RF bands available on the AP */
} tSirWPSBeaconIE;
#define SIR_WPS_ASSOCRSP_VER_PRESENT 0x00000001
#define SIR_WPS_ASSOCRSP_RESPONSETYPE_PRESENT 0x00000002
typedef struct sSirWPSAssocRspIE {
uint32_t FieldPresent;
uint32_t Version;
uint8_t ResposeType;
} tSirWPSAssocRspIE;
typedef struct sSirAPWPSIEs {
tSirWPSProbeRspIE SirWPSProbeRspIE; /*WPS Set Probe Respose IE */
tSirWPSBeaconIE SirWPSBeaconIE; /*WPS Set Beacon IE */
tSirWPSAssocRspIE SirWPSAssocRspIE; /*WPS Set Assoc Response IE */
} tSirAPWPSIEs, *tpSiriAPWPSIEs;
typedef struct sSirUpdateAPWPSIEsReq {
uint16_t messageType; /* eWNI_SME_UPDATE_APWPSIE_REQ */
uint16_t length;
uint16_t transactionId; /* Transaction ID for cmd */
struct qdf_mac_addr bssid; /* BSSID */
uint8_t sessionId; /* Session ID */
tSirAPWPSIEs APWPSIEs;
} tSirUpdateAPWPSIEsReq, *tpSirUpdateAPWPSIEsReq;
struct update_config {
uint16_t messageType; /* eWNI_SME_UPDATE_CONFIG */
uint16_t length;
uint8_t sme_session_id;
uint16_t capab;
uint32_t value;
};
/*
* enum sir_update_session_param_type - session param type
* @SIR_PARAM_SSID_HIDDEN: ssidHidden parameter
* @SIR_PARAM_IGNORE_ASSOC_DISALLOWED: ignore_assoc_disallowed parameter
*/
enum sir_update_session_param_type {
SIR_PARAM_SSID_HIDDEN,
SIR_PARAM_IGNORE_ASSOC_DISALLOWED,
};
/*
* struct sir_update_session_param
* @message_type: SME message type
* @length: size of struct sir_update_session_param
* @session_id: Session ID
* @param_type: parameter to be updated
* @param_val: Parameter value to update
*/
struct sir_update_session_param {
uint16_t message_type;
uint16_t length;
uint8_t session_id;
uint32_t param_type;
uint32_t param_val;
};
/**
* struct sir_create_session - Used for creating session in monitor mode
* @type: SME host message type.
* @msg_len: Length of the message.
* @bss_id: bss_id for creating the session.
*/
struct sir_create_session {
uint16_t type;
uint16_t msg_len;
struct qdf_mac_addr bss_id;
};
/* Beacon Interval */
typedef struct sSirChangeBIParams {
uint16_t messageType;
uint16_t length;
uint16_t beaconInterval; /* Beacon Interval */
struct qdf_mac_addr bssid;
uint8_t sessionId; /* Session ID */
} tSirChangeBIParams, *tpSirChangeBIParams;
#ifdef QCA_HT_2040_COEX
typedef struct sSirSetHT2040Mode {
uint16_t messageType;
uint16_t length;
uint8_t cbMode;
bool obssEnabled;
struct qdf_mac_addr bssid;
uint8_t sessionId; /* Session ID */
} tSirSetHT2040Mode, *tpSirSetHT2040Mode;
#endif
#define SIR_WPS_PBC_WALK_TIME 120 /* 120 Second */
typedef struct sSirWPSPBCSession {
struct sSirWPSPBCSession *next;
struct qdf_mac_addr addr;
uint8_t uuid_e[SIR_WPS_UUID_LEN];
uint32_t timestamp;
} tSirWPSPBCSession;
typedef struct sSirSmeGetWPSPBCSessionsReq {
uint16_t messageType; /* eWNI_SME_GET_WPSPBC_SESSION_REQ */
uint16_t length;
void *pUsrContext;
void *pSapEventCallback;
struct qdf_mac_addr bssid; /* BSSID */
/* MAC Address of STA in WPS Session to be removed */
struct qdf_mac_addr remove_mac;
} tSirSmeGetWPSPBCSessionsReq, *tpSirSmeGetWPSPBCSessionsReq;
typedef struct sSirWPSPBCProbeReq {
struct qdf_mac_addr peer_macaddr;
uint16_t probeReqIELen;
uint8_t probeReqIE[512];
} tSirWPSPBCProbeReq, *tpSirWPSPBCProbeReq;
/* probereq from peer, when wsc is enabled */
typedef struct sSirSmeProbeReqInd {
uint16_t messageType; /* eWNI_SME_WPS_PBC_PROBE_REQ_IND */
uint16_t length;
uint8_t sessionId;
struct qdf_mac_addr bssid;
tSirWPSPBCProbeReq WPSPBCProbeReq;
} tSirSmeProbeReqInd, *tpSirSmeProbeReqInd;
typedef struct sSirUpdateAPWPARSNIEsReq {
uint16_t messageType; /* eWNI_SME_SET_APWPARSNIEs_REQ */
uint16_t length;
uint16_t transactionId; /* Transaction ID for cmd */
struct qdf_mac_addr bssid; /* BSSID */
uint8_t sessionId; /* Session ID */
tSirRSNie APWPARSNIEs;
} tSirUpdateAPWPARSNIEsReq, *tpSirUpdateAPWPARSNIEsReq;
#define SIR_ROAM_MAX_CHANNELS 80
#define SIR_ROAM_SCAN_MAX_PB_REQ_SIZE 450
/* Occupied channel list remains static */
#define CHANNEL_LIST_STATIC 1
/* Occupied channel list can be learnt after init */
#define CHANNEL_LIST_DYNAMIC_INIT 2
/* Occupied channel list can be learnt after flush */
#define CHANNEL_LIST_DYNAMIC_FLUSH 3
/* Occupied channel list can be learnt after update */
#define CHANNEL_LIST_DYNAMIC_UPDATE 4
#define SIR_ROAM_SCAN_24G_DEFAULT_CH 1
#define SIR_ROAM_SCAN_5G_DEFAULT_CH 36
#define SIR_ROAM_SCAN_RESERVED_BYTES 61
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
#define SIR_ROAM_SCAN_PSK_SIZE 32
#define SIR_ROAM_R0KH_ID_MAX_LEN 48
#endif
/* SME -> HAL - This is the host offload request. */
#define SIR_IPV4_ARP_REPLY_OFFLOAD 0
#define SIR_IPV6_NEIGHBOR_DISCOVERY_OFFLOAD 1
#define SIR_IPV6_NS_OFFLOAD 2
#define SIR_OFFLOAD_DISABLE 0
#define SIR_OFFLOAD_ENABLE 1
#ifdef WLAN_NS_OFFLOAD
typedef struct sSirNsOffloadReq {
uint8_t srcIPv6Addr[SIR_MAC_IPV6_ADDR_LEN];
uint8_t selfIPv6Addr[SIR_MAC_NUM_TARGET_IPV6_NS_OFFLOAD_NA][SIR_MAC_IPV6_ADDR_LEN];
uint8_t targetIPv6Addr[SIR_MAC_NUM_TARGET_IPV6_NS_OFFLOAD_NA][SIR_MAC_IPV6_ADDR_LEN];
struct qdf_mac_addr self_macaddr;
uint8_t srcIPv6AddrValid;
uint8_t targetIPv6AddrValid[SIR_MAC_NUM_TARGET_IPV6_NS_OFFLOAD_NA];
uint8_t target_ipv6_addr_ac_type[SIR_MAC_NUM_TARGET_IPV6_NS_OFFLOAD_NA];
uint8_t slotIdx;
} tSirNsOffloadReq, *tpSirNsOffloadReq;
#endif /* WLAN_NS_OFFLOAD */
typedef struct sSirHostOffloadReq {
uint8_t offloadType;
uint8_t enableOrDisable;
uint32_t num_ns_offload_count;
union {
uint8_t hostIpv4Addr[SIR_IPV4_ADDR_LEN];
uint8_t hostIpv6Addr[SIR_MAC_IPV6_ADDR_LEN];
} params;
#ifdef WLAN_NS_OFFLOAD
tSirNsOffloadReq nsOffloadInfo;
#endif /* WLAN_NS_OFFLOAD */
struct qdf_mac_addr bssid;
} tSirHostOffloadReq, *tpSirHostOffloadReq;
/* Packet Types. */
#define SIR_KEEP_ALIVE_NULL_PKT 1
#define SIR_KEEP_ALIVE_UNSOLICIT_ARP_RSP 2
/* Keep Alive request. */
typedef struct sSirKeepAliveReq {
uint8_t packetType;
uint32_t timePeriod;
tSirIpv4Addr hostIpv4Addr;
tSirIpv4Addr destIpv4Addr;
struct qdf_mac_addr dest_macaddr;
struct qdf_mac_addr bssid;
uint8_t sessionId;
} tSirKeepAliveReq, *tpSirKeepAliveReq;
typedef struct sSirSmeMgmtFrameInd {
uint16_t frame_len;
uint32_t rxChan;
uint8_t sessionId;
uint8_t frameType;
int8_t rxRssi;
uint8_t frameBuf[1]; /* variable */
} tSirSmeMgmtFrameInd, *tpSirSmeMgmtFrameInd;
typedef void (*sir_mgmt_frame_ind_callback)(tSirSmeMgmtFrameInd *frame_ind);
/**
* struct sir_sme_mgmt_frame_cb_req - Register a
* management frame callback req
*
* @message_type: message id
* @length: msg length
* @callback: callback for management frame indication
*/
struct sir_sme_mgmt_frame_cb_req {
uint16_t message_type;
uint16_t length;
sir_mgmt_frame_ind_callback callback;
};
typedef void (*sir_p2p_ack_ind_callback)(uint32_t session_id,
bool tx_completion_status);
/**
* struct sir_p2p_ack_ind_cb_req - Register a p2p ack ind callback req
* @message_type: message id
* @length: msg length
* @callback: callback for p2p ack indication
*/
struct sir_sme_p2p_ack_ind_cb_req {
uint16_t message_type;
uint16_t length;
sir_p2p_ack_ind_callback callback;
};
#ifdef WLAN_FEATURE_11W
typedef struct sSirSmeUnprotMgmtFrameInd {
uint8_t sessionId;
uint8_t frameType;
uint8_t frameLen;
uint8_t frameBuf[1]; /* variable */
} tSirSmeUnprotMgmtFrameInd, *tpSirSmeUnprotMgmtFrameInd;
#endif
#define SIR_IS_FULL_POWER_REASON_DISCONNECTED(eReason) \
((eSME_LINK_DISCONNECTED_BY_HDD == (eReason)) || \
(eSME_LINK_DISCONNECTED_BY_OTHER == (eReason)))
#define SIR_IS_FULL_POWER_NEEDED_BY_HDD(eReason) \
((eSME_LINK_DISCONNECTED_BY_HDD == (eReason)) || \
(eSME_FULL_PWR_NEEDED_BY_HDD == (eReason)))
/* P2P Power Save Related */
typedef struct sSirNoAParam {
uint8_t ctWindow:7;
uint8_t OppPS:1;
uint8_t count;
uint32_t duration;
uint32_t interval;
uint32_t singleNoADuration;
uint8_t psSelection;
} tSirNoAParam, *tpSirNoAParam;
typedef struct sSirWlanResumeParam {
uint8_t configuredMcstBcstFilterSetting;
} tSirWlanResumeParam, *tpSirWlanResumeParam;
#ifdef WLAN_FEATURE_EXTWOW_SUPPORT
typedef enum ext_wow_type {
EXT_WOW_TYPE_APP_TYPE1, /* wow type: only enable wakeup for app type1 */
EXT_WOW_TYPE_APP_TYPE2, /* wow type: only enable wakeup for app type2 */
EXT_WOW_TYPE_APP_TYPE1_2, /* wow type: enable wakeup for app type1&2 */
} EXT_WOW_TYPE;
typedef struct {
uint8_t vdev_id;
EXT_WOW_TYPE type;
uint32_t wakeup_pin_num;
} tSirExtWoWParams, *tpSirExtWoWParams;
typedef struct {
uint8_t vdev_id;
struct qdf_mac_addr wakee_mac_addr;
uint8_t identification_id[8];
uint8_t password[16];
uint32_t id_length;
uint32_t pass_length;
} tSirAppType1Params, *tpSirAppType1Params;
typedef struct {
uint8_t vdev_id;
uint8_t rc4_key[16];
uint32_t rc4_key_len;
/** ip header parameter */
uint32_t ip_id; /* NC id */
uint32_t ip_device_ip; /* NC IP address */
uint32_t ip_server_ip; /* Push server IP address */
/** tcp header parameter */
uint16_t tcp_src_port; /* NC TCP port */
uint16_t tcp_dst_port; /* Push server TCP port */
uint32_t tcp_seq;
uint32_t tcp_ack_seq;
uint32_t keepalive_init; /* Initial ping interval */
uint32_t keepalive_min; /* Minimum ping interval */
uint32_t keepalive_max; /* Maximum ping interval */
uint32_t keepalive_inc; /* Increment of ping interval */
struct qdf_mac_addr gateway_mac;
uint32_t tcp_tx_timeout_val;
uint32_t tcp_rx_timeout_val;
} tSirAppType2Params, *tpSirAppType2Params;
#endif
#define ANI_MAX_IBSS_ROUTE_TABLE_ENTRY 100
typedef struct sAniDestIpNextHopMacPair {
uint8_t destIpv4Addr[QDF_IPV4_ADDR_SIZE];
uint8_t nextHopMacAddr[QDF_MAC_ADDR_SIZE];
} tAniDestIpNextHopMacPair;
typedef struct sAniIbssRouteTable {
uint8_t sessionId;
uint16_t numEntries;
tAniDestIpNextHopMacPair destIpNextHopPair[1];
} tAniIbssRouteTable;
#ifdef FEATURE_WLAN_SCAN_PNO
/* */
/* PNO Messages */
/* */
/* Set PNO */
#define SIR_PNO_MAX_PLAN_REQUEST 2
#define SIR_PNO_MAX_NETW_CHANNELS 26
#define SIR_PNO_MAX_NETW_CHANNELS_EX 60
#define SIR_PNO_MAX_SUPP_NETWORKS 16
/*
* size based of dot11 declaration without extra IEs as we will not carry those
* for PNO
*/
#define SIR_PNO_MAX_PB_REQ_SIZE 450
#define SIR_PNO_24G_DEFAULT_CH 1
#define SIR_PNO_5G_DEFAULT_CH 36
typedef enum {
SIR_PNO_MODE_IMMEDIATE,
SIR_PNO_MODE_ON_SUSPEND,
SIR_PNO_MODE_ON_RESUME,
SIR_PNO_MODE_MAX
} eSirPNOMode;
typedef struct {
tSirMacSSid ssId;
uint32_t authentication;
uint32_t encryption;
uint32_t bcastNetwType;
uint8_t ucChannelCount;
uint8_t aChannels[SIR_PNO_MAX_NETW_CHANNELS_EX];
int32_t rssiThreshold;
} tSirNetworkType;
/**
* struct connected_pno_band_rssi_pref - BSS preference based on band
* and RSSI
* @band: band preference
* @rssi_pref: RSSI preference
*/
struct connected_pno_band_rssi_pref {
tSirRFBand band;
int8_t rssi;
};
/**
* struct sir_nlo_mawc_params - MAWC based NLO configuration
* @mawc_nlo_enabled: enable/disable MAWC based NLO
* @exp_backoff_ratio: MAWC based NLO exponential backoff ratio
* @init_scan_interval: MAWC based NLO initial scan interval
* @max_scan_interval: MAWC based NLO maximum scan interval
*/
struct sir_nlo_mawc_params {
bool mawc_nlo_enabled;
uint32_t exp_backoff_ratio;
uint32_t init_scan_interval;
uint32_t max_scan_interval;
};
/**
* struct sSirPNOScanReq - PNO Scan request structure
* @enable: flag to enable or disable
* @modePNO: PNO Mode
* @do_passive_scan: Flag to request passive scan to fw
* @ucNetworksCount: Number of networks
* @aNetworks: Preferred network list
* @sessionId: Session identifier
* @fast_scan_period: Fast Scan period
* @slow_scan_period: Slow scan period
* @delay_start_time: delay in seconds to use before starting the first scan
* @fast_scan_max_cycles: Fast scan max cycles
* @scan_backoff_multiplier: multiply fast scan period by this after max cycles
* @us24GProbeTemplateLen: 2.4G probe template length
* @p24GProbeTemplate: 2.4G probe template
* @us5GProbeTemplateLen: 5G probe template length
* @p5GProbeTemplate: 5G probe template
* @relative_rssi_set: Flag to check whether realtive_rssi is set or not
* @relative_rssi: Relative rssi threshold, used for connected pno
* @band_rssi_pref: Band and RSSI preference that can be given to one BSS
* over the other BSS
*/
typedef struct sSirPNOScanReq {
uint8_t enable;
eSirPNOMode modePNO;
bool do_passive_scan;
uint8_t ucNetworksCount;
tSirNetworkType aNetworks[SIR_PNO_MAX_SUPP_NETWORKS];
uint8_t sessionId;
uint32_t fast_scan_period;
uint32_t slow_scan_period;
uint32_t delay_start_time;
uint8_t fast_scan_max_cycles;
uint32_t scan_backoff_multiplier;
struct sir_nlo_mawc_params mawc_params;
uint32_t active_min_time;
uint32_t active_max_time;
uint32_t passive_min_time;
uint32_t passive_max_time;
#ifdef FEATURE_WLAN_SCAN_PNO
bool pno_channel_prediction;
uint8_t top_k_num_of_channels;
uint8_t stationary_thresh;
enum wmi_dwelltime_adaptive_mode pnoscan_adaptive_dwell_mode;
uint32_t channel_prediction_full_scan;
#endif
/* mac address randomization attributes */
bool enable_pno_scan_randomization;
uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
uint8_t mac_addr_mask[QDF_MAC_ADDR_SIZE];
bool relative_rssi_set;
int8_t relative_rssi;
struct connected_pno_band_rssi_pref band_rssi_pref;
/* probe req ie whitelisting attrs */
bool ie_whitelist;
uint32_t probe_req_ie_bitmap[PROBE_REQ_BITMAP_LEN];
uint32_t num_vendor_oui;
/* followed by one or more vendor ouis of type uint32_t */
} tSirPNOScanReq, *tpSirPNOScanReq;
/* Preferred Network Found Indication */
typedef struct {
uint16_t mesgType;
uint16_t mesgLen;
/* Network that was found with the highest RSSI */
tSirMacSSid ssId;
/* Indicates the RSSI */
uint8_t rssi;
/* Length of the beacon or probe response
* corresponding to the candidate found by PNO */
uint32_t frameLength;
uint8_t sessionId;
/* Index to memory location where the contents of
* beacon or probe response frame will be copied */
uint8_t data[1];
} tSirPrefNetworkFoundInd, *tpSirPrefNetworkFoundInd;
#endif /* FEATURE_WLAN_SCAN_PNO */
/*
* ALLOWED_ACTION_FRAMES_BITMAP
*
* Bitmask is based on the below. The frames with 0's
* set to their corresponding bit can be dropped in FW.
*
* -----------------------------+-----+-------+
* Type | Bit | Allow |
* -----------------------------+-----+-------+
* SIR_MAC_ACTION_SPECTRUM_MGMT 0 1
* SIR_MAC_ACTION_QOS_MGMT 1 1
* SIR_MAC_ACTION_DLP 2 0
* SIR_MAC_ACTION_BLKACK 3 0
* SIR_MAC_ACTION_PUBLIC_USAGE 4 1
* SIR_MAC_ACTION_RRM 5 0
* SIR_MAC_ACTION_FAST_BSS_TRNST 6 0
* SIR_MAC_ACTION_HT 7 0
* SIR_MAC_ACTION_SA_QUERY 8 1
* SIR_MAC_ACTION_PROT_DUAL_PUB 9 1
* SIR_MAC_ACTION_WNM 10 1
* SIR_MAC_ACTION_UNPROT_WNM 11 0
* SIR_MAC_ACTION_TDLS 12 0
* SIR_MAC_ACITON_MESH 13 0
* SIR_MAC_ACTION_MHF 14 0
* SIR_MAC_SELF_PROTECTED 15 0
* SIR_MAC_ACTION_WME 17 1
* SIR_MAC_ACTION_FST 18 1
* SIR_MAC_ACTION_VHT 21 1
* ----------------------------+------+-------+
*/
#define ALLOWED_ACTION_FRAMES_BITMAP0 \
((1 << SIR_MAC_ACTION_SPECTRUM_MGMT) | \
(1 << SIR_MAC_ACTION_QOS_MGMT) | \
(1 << SIR_MAC_ACTION_PUBLIC_USAGE) | \
(1 << SIR_MAC_ACTION_SA_QUERY) | \
(1 << SIR_MAC_ACTION_PROT_DUAL_PUB) | \
(1 << SIR_MAC_ACTION_WNM) | \
(1 << SIR_MAC_ACTION_WME) | \
(1 << SIR_MAC_ACTION_FST) | \
(1 << SIR_MAC_ACTION_VHT))
#define ALLOWED_ACTION_FRAMES_BITMAP1 0x0
#define ALLOWED_ACTION_FRAMES_BITMAP2 0x0
#define ALLOWED_ACTION_FRAMES_BITMAP3 0x0
#define ALLOWED_ACTION_FRAMES_BITMAP4 0x0
#define ALLOWED_ACTION_FRAMES_BITMAP5 0x0
#define ALLOWED_ACTION_FRAMES_BITMAP6 0x0
#define ALLOWED_ACTION_FRAMES_BITMAP7 0x0
#define ALLOWED_ACTION_FRAME_MAP_WORDS (SIR_MAC_ACTION_MAX / 32)
/*
* DROP_PUBLIC_ACTION_FRAME_BITMAP
*
* Bitmask is based on the below. The frames with 1's
* set to their corresponding bit can be dropped in FW.
*
* ----------------------------------+-----+------+
* Type | Bit | Drop |
* ----------------------------------+-----+------+
* SIR_MAC_ACTION_MEASUREMENT_PILOT | 7 | 1 |
* ----------------------------------+-----+------+
*/
#define DROP_PUBLIC_ACTION_FRAME_BITMAP \
(1 << SIR_MAC_ACTION_MEASUREMENT_PILOT)
#ifndef ANI_SUPPORT_11H
/*
* DROP_SPEC_MGMT_ACTION_FRAME_BITMAP
*
* Bitmask is based on the below. The frames with 1's
* set to their corresponding bit can be dropped in FW.
*
* ----------------------------------+-----+------+
* Type | Bit | Drop |
* ----------------------------------+-----+------+
* SIR_MAC_ACTION_MEASURE_REQUEST_ID 0 1
* SIR_MAC_ACTION_TPC_REQUEST_ID 2 1
* ----------------------------------+-----+------+
*/
#define DROP_SPEC_MGMT_ACTION_FRAME_BITMAP \
((1 << SIR_MAC_ACTION_MEASURE_REQUEST_ID) |\
(1 << SIR_MAC_ACTION_TPC_REQUEST_ID))
#else
/*
* If 11H support is defined, dont drop the above action category of
* spectrum mgmt action frames as host driver is processing them.
*/
#define DROP_SPEC_MGMT_ACTION_FRAME_BITMAP 0
#endif /* ANI_SUPPORT_11H */
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
typedef struct {
uint8_t acvo_uapsd:1;
uint8_t acvi_uapsd:1;
uint8_t acbk_uapsd:1;
uint8_t acbe_uapsd:1;
uint8_t reserved:4;
} tSirAcUapsd, *tpSirAcUapsd;
#endif
typedef struct {
tSirMacSSid ssId;
uint8_t currAPbssid[QDF_MAC_ADDR_SIZE];
uint32_t authentication;
uint8_t encryption;
uint8_t mcencryption;
uint8_t ChannelCount;
uint8_t ChannelCache[SIR_ROAM_MAX_CHANNELS];
#ifdef WLAN_FEATURE_11W
bool mfp_enabled;
#endif
} tSirRoamNetworkType;
typedef struct SirMobilityDomainInfo {
uint8_t mdiePresent;
uint16_t mobilityDomain;
} tSirMobilityDomainInfo;
typedef enum {
SIR_ROAMING_DFS_CHANNEL_DISABLED = 0,
SIR_ROAMING_DFS_CHANNEL_ENABLED_NORMAL = 1,
SIR_ROAMING_DFS_CHANNEL_ENABLED_ACTIVE = 2
} eSirDFSRoamScanMode;
#define MAX_SSID_ALLOWED_LIST 4
#define MAX_BSSID_AVOID_LIST 16
#define MAX_BSSID_FAVORED 16
/**
* struct roam_ext_params - Structure holding roaming parameters
* @num_bssid_avoid_list: The number of BSSID's that we should
* avoid connecting to. It is like a
* blacklist of BSSID's.
* @num_ssid_allowed_list: The number of SSID profiles that are
* in the Whitelist. When roaming, we
* consider the BSSID's with this SSID
* also for roaming apart from the connected one's
* @num_bssid_favored: Number of BSSID's which have a preference over
* others
* @ssid_allowed_list: Whitelist SSID's
* @bssid_avoid_list: Blacklist SSID's
* @bssid_favored: Favorable BSSID's
* @bssid_favored_factor: RSSI to be added to this BSSID to prefer it
* @raise_rssi_thresh_5g: The RSSI threshold below which the
* raise_factor_5g (boost factor) should be
* applied.
* @drop_rssi_thresh_5g: The RSSI threshold beyond which the
* drop_factor_5g (penalty factor) should be
* applied
* @raise_rssi_type_5g: Algorithm to apply the boost factor
* @raise_factor_5g: Boost factor
* @drop_rssi_type_5g: Algorithm to apply the penalty factor
* @drop_factor_5g: Penalty factor
* @max_raise_rssi_5g: Maximum amount of Boost that can added
* @max_drop_rssi_5g: Maximum amount of penalty that can be subtracted
* @good_rssi_threshold: The Lookup UP threshold beyond which roaming
* scan should be performed.
* @rssi_diff: RSSI difference for the AP to be better over the
* current AP to avoid ping pong effects
* @good_rssi_roam: Lazy Roam
* @is_5g_pref_enabled: 5GHz BSSID preference feature enable/disable.
* @bg_scan_bad_rssi_thresh: Bad RSSI threshold to perform bg scan.
* @bg_scan_client_bitmap: Bitmap to identify the client scans to snoop.
* @bad_rssi_thresh_offset_2g: Offset from Bad RSSI threshold for 2G to 5G Roam
*
* This structure holds all the key parameters related to
* initial connection and also roaming connections.
* */
struct roam_ext_params {
uint8_t num_bssid_avoid_list;
uint8_t num_ssid_allowed_list;
uint8_t num_bssid_favored;
tSirMacSSid ssid_allowed_list[MAX_SSID_ALLOWED_LIST];
struct qdf_mac_addr bssid_avoid_list[MAX_BSSID_AVOID_LIST];
struct qdf_mac_addr bssid_favored[MAX_BSSID_FAVORED];
uint8_t bssid_favored_factor[MAX_BSSID_FAVORED];
int raise_rssi_thresh_5g;
int drop_rssi_thresh_5g;
uint8_t raise_rssi_type_5g;
uint8_t raise_factor_5g;
uint8_t drop_rssi_type_5g;
uint8_t drop_factor_5g;
int max_raise_rssi_5g;
int max_drop_rssi_5g;
int alert_rssi_threshold;
int rssi_diff;
int good_rssi_roam;
bool is_5g_pref_enabled;
int dense_rssi_thresh_offset;
int dense_min_aps_cnt;
int initial_dense_status;
int traffic_threshold;
uint8_t num_rssi_rejection_ap;
struct rssi_disallow_bssid rssi_rejection_ap[MAX_RSSI_AVOID_BSSID_LIST];
int8_t bg_scan_bad_rssi_thresh;
uint8_t roam_bad_rssi_thresh_offset_2g;
uint32_t bg_scan_client_bitmap;
};
#define RSSI_WEIGHTAGE 20
#define HT_CAPABILITY_WEIGHTAGE 2
#define VHT_CAP_WEIGHTAGE 1
#define CHAN_WIDTH_WEIGHTAGE 17
#define CHAN_BAND_WEIGHTAGE 2
#define NSS_WEIGHTAGE 16
#define BEAMFORMING_CAP_WEIGHTAGE 2
#define PCL_WEIGHT 10
#define CHANNEL_CONGESTION_WEIGHTAGE 5
#define OCE_WAN_WEIGHTAGE 0
#define BEST_CANDIDATE_MAX_WEIGHT 100
#define MAX_INDEX_SCORE 100
#define MAX_INDEX_PER_INI 4
#define WLAN_GET_BITS(_val, _index, _num_bits) \
(((_val) >> (_index)) & ((1 << (_num_bits)) - 1))
#define WLAN_SET_BITS(_var, _index, _num_bits, _val) do { \
(_var) &= ~(((1 << (_num_bits)) - 1) << (_index)); \
(_var) |= (((_val) & ((1 << (_num_bits)) - 1)) << (_index)); \
} while (0)
#define WLAN_GET_SCORE_PERCENTAGE(value32, bw_index) \
WLAN_GET_BITS(value32, (8 * (bw_index)), 8)
#define WLAN_SET_SCORE_PERCENTAGE(value32, score_pcnt, bw_index) \
WLAN_SET_BITS(value32, (8 * (bw_index)), 8, score_pcnt)
/**
* struct sir_weight_config - weight params to
* calculate best candidate
* @rssi_weightage: RSSI weightage
* @ht_caps_weightage: HT caps weightage
* @vht_caps_weightage: VHT caps weightage
* @he_caps_weightage: HE caps weightage
* @chan_width_weightage: Channel width weightage
* @chan_band_weightage: Channel band weightage
* @nss_weightage: NSS weightage
* @beamforming_cap_weightage: Beamforming caps weightage
* @pcl_weightage: PCL weightage
* @channel_congestion_weightage: channel congestion weightage
* @oce_wan_weightage: OCE WAN metrics weightage
*/
struct sir_weight_config {
uint8_t rssi_weightage;
uint8_t ht_caps_weightage;
uint8_t vht_caps_weightage;
uint8_t he_caps_weightage;
uint8_t chan_width_weightage;
uint8_t chan_band_weightage;
uint8_t nss_weightage;
uint8_t beamforming_cap_weightage;
uint8_t pcl_weightage;
uint8_t channel_congestion_weightage;
uint8_t oce_wan_weightage;
};
struct sir_rssi_cfg_score {
uint32_t best_rssi_threshold;
uint32_t good_rssi_threshold;
uint32_t bad_rssi_threshold;
uint32_t good_rssi_pcnt;
uint32_t bad_rssi_pcnt;
uint32_t good_rssi_bucket_size;
uint32_t bad_rssi_bucket_size;
uint32_t rssi_pref_5g_rssi_thresh;
};
/**
* struct sir_per_slot_scoring - define % score for differents slots for a
* scoring param.
* num_slot: number of slots in which the param will be divided.
* Max 15. index 0 is used for 'not_present. Num_slot will
* equally divide 100. e.g, if num_slot = 4 slot 0 = 0-25%, slot
* 1 = 26-50% slot 2 = 51-75%, slot 3 = 76-100%
* score_pcnt3_to_0: Conatins score percentage for slot 0-3
* BITS 0-7 :- the scoring pcnt when not present
* BITS 8-15 :- SLOT_1
* BITS 16-23 :- SLOT_2
* BITS 24-31 :- SLOT_3
* score_pcnt7_to_4: Conatins score percentage for slot 4-7
* BITS 0-7 :- SLOT_4
* BITS 8-15 :- SLOT_5
* BITS 16-23 :- SLOT_6
* BITS 24-31 :- SLOT_7
* score_pcnt11_to_8: Conatins score percentage for slot 8-11
* BITS 0-7 :- SLOT_8
* BITS 8-15 :- SLOT_9
* BITS 16-23 :- SLOT_10
* BITS 24-31 :- SLOT_11
* score_pcnt15_to_12: Conatins score percentage for slot 12-15
* BITS 0-7 :- SLOT_12
* BITS 8-15 :- SLOT_13
* BITS 16-23 :- SLOT_14
* BITS 24-31 :- SLOT_15
*/
struct sir_per_slot_scoring {
uint32_t num_slot;
uint32_t score_pcnt3_to_0;
uint32_t score_pcnt7_to_4;
uint32_t score_pcnt11_to_8;
uint32_t score_pcnt15_to_12;
};
struct sir_score_config {
bool enable_scoring_for_roam;
struct sir_weight_config weight_cfg;
struct sir_rssi_cfg_score rssi_score;
struct sir_per_slot_scoring esp_qbss_scoring;
struct sir_per_slot_scoring oce_wan_scoring;
uint32_t bandwidth_weight_per_index;
uint32_t nss_weight_per_index;
uint32_t band_weight_per_index;
};
/**
* struct pmkid_mode_bits - Bit flags for PMKID usage in RSN IE
* @fw_okc: Opportunistic key caching enable in firmware
* @fw_pmksa_cache: PMKSA caching enable in firmware, remember previously
* visited BSSID/PMK pairs
*/
struct pmkid_mode_bits {
uint32_t fw_okc:1;
uint32_t fw_pmksa_cache:1;
uint32_t unused:30;
};
/**
* struct lca_disallow_config_params - LCA[Last Connected AP]
* disallow config params
* @disallow_duration: LCA AP disallowed duration
* @rssi_channel_penalization: RSSI channel Penalization
* @num_disallowed_aps: Maximum number of AP's in LCA list
*
*/
struct lca_disallow_config_params {
uint32_t disallow_duration;
uint32_t rssi_channel_penalization;
uint32_t num_disallowed_aps;
};
/**
* struct mawc_params - Motion Aided Wireless Connectivity configuration
* @MAWCEnabled: Global configuration for MAWC (Roaming/PNO/ExtScan)
* @mawc_roam_enabled: MAWC roaming enable/disable
* @mawc_roam_traffic_threshold: Traffic threshold in kBps for MAWC roaming
* @mawc_roam_ap_rssi_threshold: AP RSSI threshold for MAWC roaming
* @mawc_roam_rssi_high_adjust: High Adjustment value for suppressing scan
* @mawc_roam_rssi_low_adjust: Low Adjustment value for suppressing scan
*/
struct mawc_params {
bool mawc_enabled;
bool mawc_roam_enabled;
uint32_t mawc_roam_traffic_threshold;
int8_t mawc_roam_ap_rssi_threshold;
uint8_t mawc_roam_rssi_high_adjust;
uint8_t mawc_roam_rssi_low_adjust;
};
typedef struct sSirRoamOffloadScanReq {
uint16_t message_type;
uint16_t length;
bool RoamScanOffloadEnabled;
struct mawc_params mawc_roam_params;
int8_t LookupThreshold;
int8_t rssi_thresh_offset_5g;
uint8_t delay_before_vdev_stop;
uint8_t OpportunisticScanThresholdDiff;
uint8_t RoamRescanRssiDiff;
uint8_t RoamRssiDiff;
int32_t rssi_abs_thresh;
uint8_t ChannelCacheType;
uint8_t Command;
uint8_t reason;
uint16_t NeighborScanTimerPeriod;
uint16_t neighbor_scan_min_timer_period;
uint16_t NeighborRoamScanRefreshPeriod;
uint16_t NeighborScanChannelMinTime;
uint16_t NeighborScanChannelMaxTime;
uint16_t EmptyRefreshScanPeriod;
uint8_t ValidChannelCount;
uint8_t ValidChannelList[SIR_ROAM_MAX_CHANNELS];
bool IsESEAssoc;
uint8_t nProbes;
uint16_t HomeAwayTime;
tSirRoamNetworkType ConnectedNetwork;
tSirMobilityDomainInfo MDID;
uint8_t sessionId;
uint8_t RoamBmissFirstBcnt;
uint8_t RoamBmissFinalBcnt;
uint8_t RoamBeaconRssiWeight;
eSirDFSRoamScanMode allowDFSChannelRoam;
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
uint8_t RoamOffloadEnabled;
uint8_t PSK_PMK[SIR_ROAM_SCAN_PSK_SIZE];
uint32_t pmk_len;
uint8_t Prefer5GHz;
uint8_t RoamRssiCatGap;
uint8_t Select5GHzMargin;
uint8_t KRK[SIR_KRK_KEY_LEN];
uint8_t BTK[SIR_BTK_KEY_LEN];
uint32_t ReassocFailureTimeout;
tSirAcUapsd AcUapsd;
uint8_t R0KH_ID[SIR_ROAM_R0KH_ID_MAX_LEN];
uint32_t R0KH_ID_Length;
uint8_t RoamKeyMgmtOffloadEnabled;
struct pmkid_mode_bits pmkid_modes;
#endif
struct roam_ext_params roam_params;
uint8_t middle_of_roaming;
uint32_t hi_rssi_scan_max_count;
uint32_t hi_rssi_scan_rssi_delta;
uint32_t hi_rssi_scan_delay;
int32_t hi_rssi_scan_rssi_ub;
uint8_t early_stop_scan_enable;
int8_t early_stop_scan_min_threshold;
int8_t early_stop_scan_max_threshold;
enum wmi_dwelltime_adaptive_mode roamscan_adaptive_dwell_mode;
tSirAddie assoc_ie;
struct lca_disallow_config_params lca_config_params;
#ifdef WLAN_FEATURE_FILS_SK
bool is_fils_connection;
struct roam_fils_params roam_fils_params;
#endif
struct scoring_param score_params;
struct wmi_11k_offload_params offload_11k_params;
} tSirRoamOffloadScanReq, *tpSirRoamOffloadScanReq;
typedef struct sSirRoamOffloadScanRsp {
uint8_t sessionId;
uint32_t reason;
} tSirRoamOffloadScanRsp, *tpSirRoamOffloadScanRsp;
#ifdef WLAN_FEATURE_PACKET_FILTERING
/*---------------------------------------------------------------------------
Packet Filtering Parameters
---------------------------------------------------------------------------*/
#define SIR_MAX_FILTER_TEST_DATA_LEN 8
#define SIR_MAX_FILTER_TEST_DATA_OFFSET 200
#define SIR_MAX_NUM_MULTICAST_ADDRESS 240
#define SIR_MAX_NUM_FILTERS 20
#define SIR_MAX_NUM_TESTS_PER_FILTER 10
/* */
/* Receive Filter Parameters */
/* */
typedef enum {
SIR_RCV_FILTER_TYPE_INVALID,
SIR_RCV_FILTER_TYPE_FILTER_PKT,
SIR_RCV_FILTER_TYPE_BUFFER_PKT,
SIR_RCV_FILTER_TYPE_MAX_ENUM_SIZE
} eSirReceivePacketFilterType;
typedef enum {
SIR_FILTER_HDR_TYPE_INVALID,
SIR_FILTER_HDR_TYPE_MAC,
SIR_FILTER_HDR_TYPE_ARP,
SIR_FILTER_HDR_TYPE_IPV4,
SIR_FILTER_HDR_TYPE_IPV6,
SIR_FILTER_HDR_TYPE_UDP,
SIR_FILTER_HDR_TYPE_MAX
} eSirRcvPktFltProtocolType;
typedef enum {
SIR_FILTER_CMP_TYPE_INVALID,
SIR_FILTER_CMP_TYPE_EQUAL,
SIR_FILTER_CMP_TYPE_MASK_EQUAL,
SIR_FILTER_CMP_TYPE_NOT_EQUAL,
SIR_FILTER_CMP_TYPE_MASK_NOT_EQUAL,
SIR_FILTER_CMP_TYPE_MAX
} eSirRcvPktFltCmpFlagType;
typedef struct sSirRcvPktFilterFieldParams {
eSirRcvPktFltProtocolType protocolLayer;
eSirRcvPktFltCmpFlagType cmpFlag;
/* Length of the data to compare */
uint16_t dataLength;
/* from start of the respective frame header */
uint8_t dataOffset;
/* Reserved field */
uint8_t reserved;
/* Data to compare */
uint8_t compareData[SIR_MAX_FILTER_TEST_DATA_LEN];
/* Mask to be applied on the received packet data before compare */
uint8_t dataMask[SIR_MAX_FILTER_TEST_DATA_LEN];
} tSirRcvPktFilterFieldParams, *tpSirRcvPktFilterFieldParams;
typedef struct sSirRcvPktFilterCfg {
uint8_t filterId;
eSirReceivePacketFilterType filterType;
uint32_t numFieldParams;
uint32_t coalesceTime;
struct qdf_mac_addr self_macaddr;
struct qdf_mac_addr bssid; /* Bssid of the connected AP */
tSirRcvPktFilterFieldParams paramsData[SIR_MAX_NUM_TESTS_PER_FILTER];
} tSirRcvPktFilterCfgType, *tpSirRcvPktFilterCfgType;
/* */
/* Filter Packet Match Count Parameters */
/* */
typedef struct sSirRcvFltPktMatchCnt {
uint8_t filterId;
uint32_t matchCnt;
} tSirRcvFltPktMatchCnt, tpSirRcvFltPktMatchCnt;
typedef struct sSirRcvFltPktMatchRsp {
uint16_t mesgType;
uint16_t mesgLen;
/* Success or Failure */
uint32_t status;
tSirRcvFltPktMatchCnt filterMatchCnt[SIR_MAX_NUM_FILTERS];
struct qdf_mac_addr bssid;
} tSirRcvFltPktMatchRsp, *tpSirRcvFltPktMatchRsp;
/* */
/* Receive Filter Clear Parameters */
/* */
typedef struct sSirRcvFltPktClearParam {
uint32_t status; /* only valid for response message */
uint8_t filterId;
struct qdf_mac_addr self_macaddr;
struct qdf_mac_addr bssid;
} tSirRcvFltPktClearParam, *tpSirRcvFltPktClearParam;
/* */
/* Multicast Address List Parameters */
/* */
typedef struct sSirRcvFltMcAddrList {
uint32_t ulMulticastAddrCnt;
struct qdf_mac_addr multicastAddr[SIR_MAX_NUM_MULTICAST_ADDRESS];
struct qdf_mac_addr self_macaddr;
struct qdf_mac_addr bssid;
uint8_t action;
} tSirRcvFltMcAddrList, *tpSirRcvFltMcAddrList;
#endif /* WLAN_FEATURE_PACKET_FILTERING */
/* */
/* Generic version information */
/* */
typedef struct {
uint8_t revision;
uint8_t version;
uint8_t minor;
uint8_t major;
} tSirVersionType;
#ifdef WLAN_FEATURE_GTK_OFFLOAD
/*---------------------------------------------------------------------------
* WMA_GTK_OFFLOAD_REQ
*--------------------------------------------------------------------------*/
typedef struct {
uint32_t ulFlags; /* optional flags */
uint8_t aKCK[SIR_KCK_KEY_LEN]; /* Key confirmation key */
uint8_t aKEK[SIR_KEK_KEY_LEN_FILS]; /* key encryption key */
uint32_t kek_len;
uint64_t ullKeyReplayCounter; /* replay counter */
struct qdf_mac_addr bssid;
} tSirGtkOffloadParams, *tpSirGtkOffloadParams;
/*---------------------------------------------------------------------------
* WMA_GTK_OFFLOAD_GETINFO_REQ
*--------------------------------------------------------------------------*/
typedef struct {
uint16_t mesgType;
uint16_t mesgLen;
uint32_t ulStatus; /* success or failure */
uint64_t ullKeyReplayCounter; /* current replay counter value */
uint32_t ulTotalRekeyCount; /* total rekey attempts */
uint32_t ulGTKRekeyCount; /* successful GTK rekeys */
uint32_t ulIGTKRekeyCount; /* successful iGTK rekeys */
struct qdf_mac_addr bssid;
} tSirGtkOffloadGetInfoRspParams, *tpSirGtkOffloadGetInfoRspParams;
#endif /* WLAN_FEATURE_GTK_OFFLOAD */
/**
* struct sir_wifi_start_log - Structure to store the params sent to start/
* stop logging
* @name: Attribute which indicates the type of logging like per packet
* statistics, connectivity etc.
* @verbose_level: Verbose level which can be 0,1,2,3
* @is_iwpriv_command: Set 1 for iwpriv command
* @ini_triggered: triggered using ini
* @user_triggered: triggered by user
* @size: pktlog buffer size
* @is_pktlog_buff_clear: clear the pktlog buffer
*/
struct sir_wifi_start_log {
uint32_t ring_id;
uint32_t verbose_level;
uint32_t is_iwpriv_command;
bool ini_triggered;
uint8_t user_triggered;
int size;
bool is_pktlog_buff_clear;
};
/**
* enum hw_mode_bandwidth - bandwidth of wifi channel.
*
* @HW_MODE_5_MHZ: 5 Mhz bandwidth
* @HW_MODE_10_MHZ: 10 Mhz bandwidth
* @HW_MODE_20_MHZ: 20 Mhz bandwidth
* @HW_MODE_40_MHZ: 40 Mhz bandwidth
* @HW_MODE_80_MHZ: 80 Mhz bandwidth
* @HW_MODE_80_PLUS_80_MHZ: 80 Mhz plus 80 Mhz bandwidth
* @HW_MODE_160_MHZ: 160 Mhz bandwidth
* @HW_MODE_MAX_BANDWIDTH: Max place holder
*
* These are generic IDs that identify the various roles
* in the software system
*/
enum hw_mode_bandwidth {
HW_MODE_BW_NONE,
HW_MODE_5_MHZ,
HW_MODE_10_MHZ,
HW_MODE_20_MHZ,
HW_MODE_40_MHZ,
HW_MODE_80_MHZ,
HW_MODE_80_PLUS_80_MHZ,
HW_MODE_160_MHZ,
HW_MODE_MAX_BANDWIDTH
};
/**
* struct sir_pcl_list - Format of PCL
* @pcl_list: List of preferred channels
* @weight_list: Weights of the PCL
* @pcl_len: Number of channels in the PCL
*/
struct sir_pcl_list {
uint8_t pcl_list[128];
uint8_t weight_list[128];
uint32_t pcl_len;
};
/**
* struct sir_pcl_chan_weights - Params to get the valid weighed list
* @pcl_list: Preferred channel list already sorted in the order of preference
* @pcl_len: Length of the PCL
* @saved_chan_list: Valid channel list updated as part of
* WMA_UPDATE_CHAN_LIST_REQ
* @saved_num_chan: Length of the valid channel list
* @weighed_valid_list: Weights of the valid channel list. This will have one
* to one mapping with valid_chan_list. FW expects channel order and size to be
* as per the list provided in WMI_SCAN_CHAN_LIST_CMDID.
* @weight_list: Weights assigned by policy manager
*/
struct sir_pcl_chan_weights {
uint8_t pcl_list[128];
uint32_t pcl_len;
uint8_t saved_chan_list[128];
uint32_t saved_num_chan;
uint8_t weighed_valid_list[128];
uint8_t weight_list[128];
};
/**
* struct sir_hw_mode_params - HW mode params
* @mac0_tx_ss: MAC0 Tx spatial stream
* @mac0_rx_ss: MAC0 Rx spatial stream
* @mac1_tx_ss: MAC1 Tx spatial stream
* @mac1_rx_ss: MAC1 Rx spatial stream
* @mac0_bw: MAC0 bandwidth
* @mac1_bw: MAC1 bandwidth
* @dbs_cap: DBS capabality
* @agile_dfs_cap: Agile DFS capabality
*/
struct sir_hw_mode_params {
uint8_t mac0_tx_ss;
uint8_t mac0_rx_ss;
uint8_t mac1_tx_ss;
uint8_t mac1_rx_ss;
uint8_t mac0_bw;
uint8_t mac1_bw;
uint8_t dbs_cap;
uint8_t agile_dfs_cap;
uint8_t sbs_cap;
};
/**
* struct sir_vdev_mac_map - vdev id-mac id map
* @vdev_id: VDEV id
* @mac_id: MAC id
*/
struct sir_vdev_mac_map {
uint32_t vdev_id;
uint32_t mac_id;
};
/**
* struct sir_set_hw_mode_resp - HW mode response
* @status: Status
* @cfgd_hw_mode_index: Configured HW mode index
* @num_vdev_mac_entries: Number of vdev-mac id entries
* @vdev_mac_map: vdev id-mac id map
*/
struct sir_set_hw_mode_resp {
uint32_t status;
uint32_t cfgd_hw_mode_index;
uint32_t num_vdev_mac_entries;
struct sir_vdev_mac_map vdev_mac_map[MAX_VDEV_SUPPORTED];
};
/**
* struct sir_hw_mode_trans_ind - HW mode transition indication
* @old_hw_mode_index: Index of old HW mode
* @new_hw_mode_index: Index of new HW mode
* @num_vdev_mac_entries: Number of vdev-mac id entries
* @vdev_mac_map: vdev id-mac id map
*/
struct sir_hw_mode_trans_ind {
uint32_t old_hw_mode_index;
uint32_t new_hw_mode_index;
uint32_t num_vdev_mac_entries;
struct sir_vdev_mac_map vdev_mac_map[MAX_VDEV_SUPPORTED];
};
/**
* struct sir_dual_mac_config_resp - Dual MAC config response
* @status: Status of setting the dual mac configuration
*/
struct sir_dual_mac_config_resp {
uint32_t status;
};
/**
* enum set_antenna_mode_status - Status of set antenna mode
* command
* @SET_ANTENNA_MODE_STATUS_OK: command successful
* @SET_ANTENNA_MODE_STATUS_EINVAL: invalid antenna mode
* @SET_ANTENNA_MODE_STATUS_ECANCELED: mode change cancelled
* @SET_ANTENNA_MODE_STATUS_ENOTSUP: mode not supported
*/
enum set_antenna_mode_status {
SET_ANTENNA_MODE_STATUS_OK,
SET_ANTENNA_MODE_STATUS_EINVAL,
SET_ANTENNA_MODE_STATUS_ECANCELED,
SET_ANTENNA_MODE_STATUS_ENOTSUP,
};
/**
* struct sir_antenna_mode_resp - set antenna mode response
* @status: Status of setting the antenna mode
*/
struct sir_antenna_mode_resp {
enum set_antenna_mode_status status;
};
#ifdef WLAN_WAKEUP_EVENTS
/*---------------------------------------------------------------------------
tSirWakeReasonInd
---------------------------------------------------------------------------*/
typedef struct {
uint16_t mesgType;
uint16_t mesgLen;
uint32_t ulReason; /* see tWakeReasonType */
uint32_t ulReasonArg; /* argument specific to the reason type */
/* length of optional data stored in this message, in case
* HAL truncates the data (i.e. data packets) this length
* will be less than the actual length
*/
uint32_t ulStoredDataLen;
uint32_t ulActualDataLen; /* actual length of data */
/* variable length start of data (length == storedDataLen)
* see specific wake type
*/
uint8_t aDataStart[1];
} tSirWakeReasonInd, *tpSirWakeReasonInd;
#endif /* WLAN_WAKEUP_EVENTS */
/*---------------------------------------------------------------------------
sAniSetTmLevelReq
---------------------------------------------------------------------------*/
typedef struct sAniSetTmLevelReq {
uint16_t tmMode;
uint16_t newTmLevel;
} tAniSetTmLevelReq, *tpAniSetTmLevelReq;
/* access categories */
enum sir_wifi_traffic_ac {
WIFI_AC_VO = 0,
WIFI_AC_VI = 1,
WIFI_AC_BE = 2,
WIFI_AC_BK = 3,
WIFI_AC_MAX = 4,
};
#ifdef FEATURE_WLAN_TDLS
/* TDLS Request struct SME-->PE */
typedef struct sSirTdlsSendMgmtReq {
uint16_t messageType; /* eWNI_SME_TDLS_DISCOVERY_START_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
uint8_t reqType;
uint8_t dialog;
uint16_t statusCode;
uint8_t responder;
uint32_t peerCapability;
/* For multi-session, for PE to locate peSession ID */
struct qdf_mac_addr bssid;
struct qdf_mac_addr peer_mac;
enum sir_wifi_traffic_ac ac;
/* Variable length. Dont add any field after this. */
uint8_t addIe[1];
} tSirTdlsSendMgmtReq, *tpSirSmeTdlsSendMgmtReq;
typedef enum TdlsAddOper {
TDLS_OPER_NONE,
TDLS_OPER_ADD,
TDLS_OPER_UPDATE
} eTdlsAddOper;
/* TDLS Request struct SME-->PE */
typedef struct sSirTdlsAddStaReq {
uint16_t messageType; /* eWNI_SME_TDLS_DISCOVERY_START_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
/* For multi-session, for PE to locate peSession ID */
struct qdf_mac_addr bssid;
eTdlsAddOper tdlsAddOper;
struct qdf_mac_addr peermac;
uint16_t capability;
uint8_t extn_capability[SIR_MAC_MAX_EXTN_CAP];
uint8_t supported_rates_length;
uint8_t supported_rates[SIR_MAC_MAX_SUPP_RATES];
uint8_t htcap_present;
tSirHTCap htCap;
uint8_t vhtcap_present;
tSirVHTCap vhtCap;
uint8_t uapsd_queues;
uint8_t max_sp;
} tSirTdlsAddStaReq, *tpSirSmeTdlsAddStaReq;
/* TDLS Response struct PE-->SME */
typedef struct sSirTdlsAddStaRsp {
uint16_t messageType;
uint16_t length;
tSirResultCodes statusCode;
struct qdf_mac_addr peermac;
uint8_t sessionId; /* Session ID */
uint16_t staId;
uint16_t staType;
uint8_t ucastSig;
uint8_t bcastSig;
eTdlsAddOper tdlsAddOper;
} tSirTdlsAddStaRsp;
/* TDLS Request struct SME-->PE */
typedef struct {
uint16_t messageType; /* eWNI_SME_TDLS_LINK_ESTABLISH_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
uint8_t uapsdQueues; /* Peer's uapsd Queues Information */
uint8_t maxSp; /* Peer's Supported Maximum Service Period */
uint8_t isBufSta; /* Does Peer Support as Buffer Station. */
/* Does Peer Support as TDLS Off Channel. */
uint8_t isOffChannelSupported;
uint8_t isResponder; /* Is Peer a responder. */
/* For multi-session, for PE to locate peSession ID */
struct qdf_mac_addr bssid;
struct qdf_mac_addr peermac;
uint8_t supportedChannelsLen;
uint8_t supportedChannels[SIR_MAC_MAX_SUPP_CHANNELS];
uint8_t supportedOperClassesLen;
uint8_t supportedOperClasses[CDS_MAX_SUPP_OPER_CLASSES];
} tSirTdlsLinkEstablishReq, *tpSirTdlsLinkEstablishReq;
/* TDLS Request struct SME-->PE */
typedef struct {
uint16_t messageType; /* eWNI_SME_TDLS_LINK_ESTABLISH_RSP */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
tSirResultCodes statusCode;
struct qdf_mac_addr peermac;
} tSirTdlsLinkEstablishReqRsp, *tpSirTdlsLinkEstablishReqRsp;
/* TDLS Request struct SME-->PE */
typedef struct sSirTdlsDelStaReq {
uint16_t messageType; /* eWNI_SME_TDLS_DISCOVERY_START_REQ */
uint16_t length;
uint8_t sessionId; /* Session ID */
uint16_t transactionId; /* Transaction ID for cmd */
/* For multi-session, for PE to locate peSession ID */
struct qdf_mac_addr bssid;
struct qdf_mac_addr peermac;
} tSirTdlsDelStaReq, *tpSirSmeTdlsDelStaReq;
/* TDLS Response struct PE-->SME */
typedef struct sSirTdlsDelStaRsp {
uint16_t messageType;
uint16_t length;
uint8_t sessionId; /* Session ID */
tSirResultCodes statusCode;
struct qdf_mac_addr peermac;
uint16_t staId;
} tSirTdlsDelStaRsp, *tpSirTdlsDelStaRsp;
/* TDLS Delete Indication struct PE-->SME */
typedef struct sSirTdlsDelStaInd {
uint16_t messageType;
uint16_t length;
uint8_t sessionId; /* Session ID */
struct qdf_mac_addr peermac;
uint16_t staId;
uint16_t reasonCode;
} tSirTdlsDelStaInd, *tpSirTdlsDelStaInd;
typedef struct sSirTdlsDelAllPeerInd {
uint16_t messageType;
uint16_t length;
uint8_t sessionId; /* Session ID */
} tSirTdlsDelAllPeerInd, *tpSirTdlsDelAllPeerInd;
typedef struct sSirMgmtTxCompletionInd {
uint16_t messageType;
uint16_t length;
uint8_t sessionId; /* Session ID */
uint32_t txCompleteStatus;
} tSirMgmtTxCompletionInd, *tpSirMgmtTxCompletionInd;
typedef struct sSirTdlsEventnotify {
uint8_t sessionId;
struct qdf_mac_addr peermac;
uint16_t messageType;
uint32_t peer_reason;
} tSirTdlsEventnotify;
/**
* struct sir_sme_tdls_notify_set_state_disable - notify set state disable
* @session_id: session id
*/
struct sir_tdls_notify_set_state_disable {
uint32_t session_id;
};
#endif /* FEATURE_WLAN_TDLS */
typedef struct sSirActiveModeSetBcnFilterReq {
uint16_t messageType;
uint16_t length;
uint8_t seesionId;
struct qdf_mac_addr bssid;
} tSirSetActiveModeSetBncFilterReq, *tpSirSetActiveModeSetBncFilterReq;
/* Reset AP Caps Changed */
typedef struct sSirResetAPCapsChange {
uint16_t messageType;
uint16_t length;
struct qdf_mac_addr bssId;
} tSirResetAPCapsChange, *tpSirResetAPCapsChange;
/* / Definition for Candidate found indication from FW */
typedef struct sSirSmeCandidateFoundInd {
uint16_t messageType; /* eWNI_SME_CANDIDATE_FOUND_IND */
uint16_t length;
uint8_t sessionId; /* Session Identifier */
} tSirSmeCandidateFoundInd, *tpSirSmeCandidateFoundInd;
#ifdef WLAN_FEATURE_11W
typedef struct sSirWlanExcludeUnencryptParam {
bool excludeUnencrypt;
struct qdf_mac_addr bssid;
} tSirWlanExcludeUnencryptParam, *tpSirWlanExcludeUnencryptParam;
#endif
typedef enum {
P2P_SCAN_TYPE_SEARCH = 1, /* P2P Search */
P2P_SCAN_TYPE_LISTEN /* P2P Listen */
} tSirP2pScanType;
typedef struct sAniHandoffReq {
/* Common for all types are requests */
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t sessionId;
uint8_t bssid[QDF_MAC_ADDR_SIZE];
uint8_t channel;
uint8_t handoff_src;
} tAniHandoffReq, *tpAniHandoffReq;
/*
* @scan_id:
* @scan_requestor_id:
* Scan id and scan requestor id are used by firmware to track each scan
* request. A new scan id is generated for each request. Requestor id
* shows the purpose of scan.
*
* @USER_SCAN_REQUESTOR_ID: Normal scan request from supplicant to HDD/SME.
* @ROC_SCAN_REQUESTOR_ID: Remain on channel usage for P2P action frames.
* @PREAUTH_REQUESTOR_ID: Used by LIM for preauth operation.
*
*/
#define USER_SCAN_REQUESTOR_ID 0xA000
#define ROC_SCAN_REQUESTOR_ID 0xB000
#define PREAUTH_REQUESTOR_ID 0xC000
typedef struct sSirScanOffloadReq {
uint8_t sessionId;
struct qdf_mac_addr bssId;
uint8_t numSsid;
tSirMacSSid ssId[SIR_SCAN_MAX_NUM_SSID];
uint8_t hiddenSsid;
struct qdf_mac_addr selfMacAddr;
tSirBssType bssType;
uint8_t dot11mode;
tSirScanType scanType;
uint32_t minChannelTime;
uint32_t maxChannelTime;
uint32_t scan_probe_repeat_time;
uint32_t scan_num_probes;
uint32_t scan_id;
uint32_t scan_requestor_id;
/* in units of milliseconds, ignored when not connected */
uint32_t restTime;
/*in units of milliseconds, ignored when not connected*/
uint32_t min_rest_time;
/*in units of milliseconds, ignored when not connected*/
uint32_t idle_time;
tSirP2pScanType p2pScanType;
enum wmi_dwelltime_adaptive_mode scan_adaptive_dwell_mode;
uint16_t uIEFieldLen;
uint16_t uIEFieldOffset;
uint32_t scan_ctrl_flags_ext;
uint32_t burst_scan_duration;
/* mac address randomization attributes */
bool enable_scan_randomization;
uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
uint8_t mac_addr_mask[QDF_MAC_ADDR_SIZE];
/* probe req ie whitelisting attrs */
bool ie_whitelist;
uint32_t probe_req_ie_bitmap[PROBE_REQ_BITMAP_LEN];
uint32_t num_vendor_oui;
uint32_t oui_field_len;
uint32_t oui_field_offset;
tSirChannelList channelList;
/*-----------------------------
sSirScanOffloadReq....
-----------------------------
uIEFieldLen
-----------------------------
uIEFieldOffset ----+
----------------------------- |
channelList.numChannels |
----------------------------- |
... variable size up to |
channelNumber[numChannels-1] |
This can be zero, if |
numChannel is zero. |
----------------------------- <--+
... variable size uIEField
up to uIEFieldLen (can be 0)
-----------------------------
... variable size upto num_vendor_oui
of type uint32_t
------------------------*/
} tSirScanOffloadReq, *tpSirScanOffloadReq;
/**
* sir_scan_event_type - scan event types used in LIM
* @SIR_SCAN_EVENT_STARTED - scan command accepted by FW
* @SIR_SCAN_EVENT_COMPLETED - scan has been completed by FW
* @SIR_SCAN_EVENT_BSS_CHANNEL - FW is going to move to HOME channel
* @SIR_SCAN_EVENT_FOREIGN_CHANNEL - FW is going to move to FORIEGN channel
* @SIR_SCAN_EVENT_DEQUEUED - scan request got dequeued
* @SIR_SCAN_EVENT_PREEMPTED - preempted by other high priority scan
* @SIR_SCAN_EVENT_START_FAILED - scan start failed
* @SIR_SCAN_EVENT_RESTARTED - scan restarted
* @SIR_SCAN_EVENT_MAX - max value for event type
*/
enum sir_scan_event_type {
SIR_SCAN_EVENT_STARTED = 0x1,
SIR_SCAN_EVENT_COMPLETED = 0x2,
SIR_SCAN_EVENT_BSS_CHANNEL = 0x4,
SIR_SCAN_EVENT_FOREIGN_CHANNEL = 0x8,
SIR_SCAN_EVENT_DEQUEUED = 0x10,
SIR_SCAN_EVENT_PREEMPTED = 0x20,
SIR_SCAN_EVENT_START_FAILED = 0x40,
SIR_SCAN_EVENT_RESTARTED = 0x80,
SIR_SCAN_EVENT_MAX = 0x8000
};
typedef struct sSirScanOffloadEvent {
enum sir_scan_event_type event;
tSirResultCodes reasonCode;
uint32_t chanFreq;
uint32_t requestor;
uint32_t scanId;
tSirP2pScanType p2pScanType;
uint8_t sessionId;
} tSirScanOffloadEvent, *tpSirScanOffloadEvent;
/**
* struct sSirUpdateChanParam - channel parameters
* @chanId: ID of the channel
* @pwr: power level
* @dfsSet: is dfs supported or not
* @half_rate: is the channel operating at 10MHz
* @quarter_rate: is the channel operating at 5MHz
*/
typedef struct sSirUpdateChanParam {
uint8_t chanId;
uint8_t pwr;
bool dfsSet;
bool half_rate;
bool quarter_rate;
} tSirUpdateChanParam, *tpSirUpdateChanParam;
typedef struct sSirUpdateChan {
uint8_t numChan;
uint8_t ht_en;
uint8_t vht_en;
uint8_t vht_24_en;
tSirUpdateChanParam chanParam[1];
} tSirUpdateChanList, *tpSirUpdateChanList;
typedef enum eSirAddonPsReq {
eSIR_ADDON_NOTHING,
eSIR_ADDON_ENABLE_UAPSD,
eSIR_ADDON_DISABLE_UAPSD
} tSirAddonPsReq;
#ifdef FEATURE_WLAN_LPHB
#define SIR_LPHB_FILTER_LEN 64
typedef enum {
LPHB_SET_EN_PARAMS_INDID,
LPHB_SET_TCP_PARAMS_INDID,
LPHB_SET_TCP_PKT_FILTER_INDID,
LPHB_SET_UDP_PARAMS_INDID,
LPHB_SET_UDP_PKT_FILTER_INDID,
LPHB_SET_NETWORK_INFO_INDID,
} LPHBIndType;
typedef struct sSirLPHBEnableStruct {
uint8_t enable;
uint8_t item;
uint8_t session;
} tSirLPHBEnableStruct;
typedef struct sSirLPHBTcpParamStruct {
uint32_t srv_ip;
uint32_t dev_ip;
uint16_t src_port;
uint16_t dst_port;
uint16_t timeout;
uint8_t session;
struct qdf_mac_addr gateway_mac;
uint16_t timePeriodSec; /* in seconds */
uint32_t tcpSn;
} tSirLPHBTcpParamStruct;
typedef struct sSirLPHBTcpFilterStruct {
uint16_t length;
uint8_t offset;
uint8_t session;
uint8_t filter[SIR_LPHB_FILTER_LEN];
} tSirLPHBTcpFilterStruct;
typedef struct sSirLPHBUdpParamStruct {
uint32_t srv_ip;
uint32_t dev_ip;
uint16_t src_port;
uint16_t dst_port;
uint16_t interval;
uint16_t timeout;
uint8_t session;
struct qdf_mac_addr gateway_mac;
} tSirLPHBUdpParamStruct;
typedef struct sSirLPHBUdpFilterStruct {
uint16_t length;
uint8_t offset;
uint8_t session;
uint8_t filter[SIR_LPHB_FILTER_LEN];
} tSirLPHBUdpFilterStruct;
typedef struct sSirLPHBReq {
uint16_t cmd;
uint16_t dummy;
union {
tSirLPHBEnableStruct lphbEnableReq;
tSirLPHBTcpParamStruct lphbTcpParamReq;
tSirLPHBTcpFilterStruct lphbTcpFilterReq;
tSirLPHBUdpParamStruct lphbUdpParamReq;
tSirLPHBUdpFilterStruct lphbUdpFilterReq;
} params;
} tSirLPHBReq;
typedef struct sSirLPHBInd {
uint8_t sessionIdx;
uint8_t protocolType; /*TCP or UDP */
uint8_t eventReason;
} tSirLPHBInd;
#endif /* FEATURE_WLAN_LPHB */
#ifdef FEATURE_WLAN_CH_AVOID
typedef struct sSirChAvoidUpdateReq {
uint32_t reserved_param;
} tSirChAvoidUpdateReq;
#endif /* FEATURE_WLAN_CH_AVOID */
typedef struct sSirLinkSpeedInfo {
/* MAC Address for the peer */
struct qdf_mac_addr peer_macaddr;
uint32_t estLinkSpeed; /* Linkspeed from firmware */
} tSirLinkSpeedInfo, *tpSirLinkSpeedInfo;
/**
* struct sir_peer_info_req - peer info request struct
* @peer_macaddr: MAC address
* @sessionid: vdev id
*
* peer info request message's struct
*/
struct sir_peer_info_req {
struct qdf_mac_addr peer_macaddr;
uint8_t sessionid;
};
/**
* struct sir_peer_info - peer information struct
* @peer_macaddr: MAC address
* @rssi: rssi
* @tx_rate: last tx rate
* @rx_rate: last rx rate
*
* a station's information
*/
struct sir_peer_info {
struct qdf_mac_addr peer_macaddr;
int8_t rssi;
uint32_t tx_rate;
uint32_t rx_rate;
};
/**
* struct sir_peer_info_resp - all peers information struct
* @count: peer's number
* @info: peer information
*
* all station's information
*/
struct sir_peer_info_resp {
uint8_t count;
struct sir_peer_info info[0];
};
/**
* struct sir_peer_info_ext_req - peer info request struct
* @peer_macaddr: MAC address
* @sessionid: vdev id
* @reset_after_request: fw reset statistics after query
*
* peer info request message's struct
*/
struct sir_peer_info_ext_req {
struct qdf_mac_addr peer_macaddr;
uint8_t sessionid;
uint8_t reset_after_request;
};
/**
* struct sir_peer_info_ext - peer info information struct
* (refer to station_info struct in Kernel)
* @peer_macaddr: MAC address
* @tx_packets: packets transmitted to this station
* @tx_bytes: bytes transmitted to this station
* @rx_packets: packets received from this station
* @rx_bytes: bytes received from this station
* @rx_retries: cumulative retry counts
* @tx_failed: number of failed transmissions
* @rssi: The signal strength
* @tx_rate: last used tx bitrate (kbps)
* @tx_rate_code: last tx rate code (last_tx_rate_code of wmi_peer_stats_info)
* @rx_rate: last used rx bitrate (kbps)
* @rx_rate_code: last rx rate code (last_rx_rate_code of wmi_peer_stats_info)
*
* a station's information
*/
struct sir_peer_info_ext {
struct qdf_mac_addr peer_macaddr;
uint32_t tx_packets;
uint64_t tx_bytes;
uint32_t rx_packets;
uint64_t rx_bytes;
uint32_t tx_retries;
uint32_t tx_failed;
int32_t rssi;
uint32_t tx_rate;
uint32_t tx_rate_code;
uint32_t rx_rate;
uint32_t rx_rate_code;
};
/**
* struct sir_peer_info_ext_resp - all peers' information struct
* @count: peer's number
* @info: peer information
*
* all station's information
*/
struct sir_peer_info_ext_resp {
uint8_t count;
struct sir_peer_info_ext info[0];
};
/**
* @sta_num: number of peer station which has valid info
* @info: peer information
*
* all SAP peer station's information saved in adapter
*/
struct sir_peer_sta_info {
uint8_t sta_num;
struct sir_peer_info info[MAX_PEER_STA];
};
typedef struct sSirAddPeriodicTxPtrn {
/* MAC Address for the adapter */
struct qdf_mac_addr mac_address;
uint8_t ucPtrnId; /* Pattern ID */
uint16_t ucPtrnSize; /* Pattern size */
uint32_t usPtrnIntervalMs; /* In msec */
uint8_t ucPattern[PERIODIC_TX_PTRN_MAX_SIZE]; /* Pattern buffer */
} tSirAddPeriodicTxPtrn, *tpSirAddPeriodicTxPtrn;
typedef struct sSirDelPeriodicTxPtrn {
/* MAC Address for the adapter */
struct qdf_mac_addr mac_address;
/* Bitmap of pattern IDs that need to be deleted */
uint32_t ucPatternIdBitmap;
uint8_t ucPtrnId; /* Pattern ID */
} tSirDelPeriodicTxPtrn, *tpSirDelPeriodicTxPtrn;
/*---------------------------------------------------------------------------
* tSirIbssGetPeerInfoReqParams
*--------------------------------------------------------------------------*/
typedef struct {
bool allPeerInfoReqd; /* If set, all IBSS peers stats are reported */
uint8_t staIdx; /* If allPeerInfoReqd is not set, only stats */
/* of peer with staIdx is reported */
} tSirIbssGetPeerInfoReqParams, *tpSirIbssGetPeerInfoReqParams;
/**
* typedef struct - tSirIbssGetPeerInfoParams
* @mac_addr: mac address received from target
* @txRate: TX rate
* @mcsIndex: MCS index
* @txRateFlags: TX rate flags
* @rssi: RSSI
*/
typedef struct {
uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
uint32_t txRate;
uint32_t mcsIndex;
uint32_t txRateFlags;
int8_t rssi;
} tSirIbssPeerInfoParams;
typedef struct {
uint32_t status;
uint8_t numPeers;
tSirIbssPeerInfoParams peerInfoParams[32];
} tSirPeerInfoRspParams, *tpSirIbssPeerInfoRspParams;
/*---------------------------------------------------------------------------
* tSirIbssGetPeerInfoRspParams
*--------------------------------------------------------------------------*/
typedef struct {
uint16_t mesgType;
uint16_t mesgLen;
tSirPeerInfoRspParams ibssPeerInfoRspParams;
} tSirIbssGetPeerInfoRspParams, *tpSirIbssGetPeerInfoRspParams;
typedef struct {
uint16_t mesgType;
uint16_t mesgLen;
bool suspended;
} tSirReadyToSuspendInd, *tpSirReadyToSuspendInd;
#ifdef WLAN_FEATURE_EXTWOW_SUPPORT
typedef struct {
uint16_t mesgType;
uint16_t mesgLen;
bool status;
} tSirReadyToExtWoWInd, *tpSirReadyToExtWoWInd;
#endif
typedef struct sSirRateUpdateInd {
uint8_t nss; /* 0: 1x1, 1: 2x2 */
struct qdf_mac_addr bssid;
enum tQDF_ADAPTER_MODE dev_mode;
int32_t bcastDataRate; /* bcast rate unit Mbpsx10, -1:not used */
/*
* 0 implies RA, positive value implies fixed rate, -1 implies ignore
* this param.
*/
int32_t ucastDataRate;
/* TX flag to differentiate between HT20, HT40 etc */
tTxrateinfoflags ucastDataRateTxFlag;
/*
* 0 implies MCAST RA, positive value implies fixed rate,
* -1 implies ignore this param
*/
int32_t reliableMcastDataRate; /* unit Mbpsx10 */
/* TX flag to differentiate between HT20, HT40 etc */
tTxrateinfoflags reliableMcastDataRateTxFlag;
/*
* MCAST(or BCAST) fixed data rate in 2.4 GHz, unit Mbpsx10,
* 0 implies ignore
*/
uint32_t mcastDataRate24GHz;
/* TX flag to differentiate between HT20, HT40 etc */
tTxrateinfoflags mcastDataRate24GHzTxFlag;
/*
* MCAST(or BCAST) fixed data rate in 5 GHz,
* unit Mbpsx10, 0 implies ignore
*/
uint32_t mcastDataRate5GHz;
/* TX flag to differentiate between HT20, HT40 etc */
tTxrateinfoflags mcastDataRate5GHzTxFlag;
} tSirRateUpdateInd, *tpSirRateUpdateInd;
#if defined(FEATURE_WLAN_CH_AVOID) || defined(FEATURE_WLAN_FORCE_SAP_SCC)
#define SIR_CH_AVOID_MAX_RANGE 4
typedef struct sSirChAvoidFreqType {
uint32_t start_freq;
uint32_t end_freq;
} tSirChAvoidFreqType;
typedef struct sSirChAvoidIndType {
uint32_t avoid_range_count;
tSirChAvoidFreqType avoid_freq_range[SIR_CH_AVOID_MAX_RANGE];
} tSirChAvoidIndType;
#endif /* FEATURE_WLAN_CH_AVOID || FEATURE_WLAN_FORCE_SAP_SCC */
#define SIR_DFS_MAX_20M_SUB_CH 8
#define SIR_80MHZ_START_CENTER_CH_DIFF 6
typedef struct sSirSmeDfsChannelList {
uint32_t nchannels;
/* Ch num including bonded channels on which the RADAR is present */
uint8_t channels[SIR_DFS_MAX_20M_SUB_CH];
} tSirSmeDfsChannelList, *tpSirSmeDfsChannelList;
typedef struct sSirSmeDfsEventInd {
uint32_t sessionId;
tSirSmeDfsChannelList chan_list;
uint32_t dfs_radar_status;
int use_nol;
} tSirSmeDfsEventInd, *tpSirSmeDfsEventInd;
typedef struct sSirChanChangeRequest {
uint16_t messageType;
uint16_t messageLen;
uint8_t targetChannel;
uint8_t sec_ch_offset;
enum phy_ch_width ch_width;
uint8_t center_freq_seg_0;
uint8_t center_freq_seg_1;
uint8_t bssid[QDF_MAC_ADDR_SIZE];
uint32_t dot11mode;
tSirNwType nw_type;
tSirMacRateSet operational_rateset;
tSirMacRateSet extended_rateset;
} tSirChanChangeRequest, *tpSirChanChangeRequest;
typedef struct sSirChanChangeResponse {
uint8_t sessionId;
uint8_t newChannelNumber;
uint8_t channelChangeStatus;
} tSirChanChangeResponse, *tpSirChanChangeResponse;
typedef struct sSirStartBeaconIndication {
uint16_t messageType;
uint16_t messageLen;
uint8_t beaconStartStatus;
uint8_t bssid[QDF_MAC_ADDR_SIZE];
} tSirStartBeaconIndication, *tpSirStartBeaconIndication;
/* additional IE type */
typedef enum tUpdateIEsType {
eUPDATE_IE_NONE,
eUPDATE_IE_PROBE_BCN,
eUPDATE_IE_PROBE_RESP,
eUPDATE_IE_ASSOC_RESP,
/* Add type above this line */
/* this is used to reset all buffer */
eUPDATE_IE_ALL,
eUPDATE_IE_MAX
} eUpdateIEsType;
/* Modify particular IE in addition IE for prob resp Bcn */
typedef struct sSirModifyIE {
struct qdf_mac_addr bssid;
uint16_t smeSessionId;
bool notify;
uint8_t ieID;
uint8_t ieIDLen; /*ie length as per spec */
uint16_t ieBufferlength;
uint8_t *pIEBuffer;
int32_t oui_length;
} tSirModifyIE, *tpSirModifyIE;
/* Message format for Update IE message sent to PE */
typedef struct sSirModifyIEsInd {
uint16_t msgType;
uint16_t msgLen;
tSirModifyIE modifyIE;
eUpdateIEsType updateType;
} tSirModifyIEsInd, *tpSirModifyIEsInd;
/* Message format for Update IE message sent to PE */
typedef struct sSirUpdateIE {
struct qdf_mac_addr bssid;
uint16_t smeSessionId;
bool append;
bool notify;
uint16_t ieBufferlength;
uint8_t *pAdditionIEBuffer;
} tSirUpdateIE, *tpSirUpdateIE;
/* Message format for Update IE message sent to PE */
typedef struct sSirUpdateIEsInd {
uint16_t msgType;
uint16_t msgLen;
tSirUpdateIE updateIE;
eUpdateIEsType updateType;
} tSirUpdateIEsInd, *tpSirUpdateIEsInd;
/* Message format for requesting channel switch announcement to lower layers */
typedef struct sSirDfsCsaIeRequest {
uint16_t msgType;
uint16_t msgLen;
uint8_t targetChannel;
uint8_t csaIeRequired;
uint8_t bssid[QDF_MAC_ADDR_SIZE];
struct ch_params_s ch_params;
uint8_t ch_switch_beacon_cnt;
uint8_t ch_switch_mode;
uint8_t dfs_ch_switch_disable;
} tSirDfsCsaIeRequest, *tpSirDfsCsaIeRequest;
/* Indication from lower layer indicating the completion of first beacon send
* after the beacon template update
*/
typedef struct sSirFirstBeaconTxCompleteInd {
uint16_t messageType; /* eWNI_SME_MISSED_BEACON_IND */
uint16_t length;
uint8_t bssIdx;
} tSirFirstBeaconTxCompleteInd, *tpSirFirstBeaconTxCompleteInd;
typedef struct sSirSmeCSAIeTxCompleteRsp {
uint8_t sessionId;
uint8_t chanSwIeTxStatus;
} tSirSmeCSAIeTxCompleteRsp, *tpSirSmeCSAIeTxCompleteRsp;
/* Thermal Mitigation*/
typedef struct {
uint16_t minTempThreshold;
uint16_t maxTempThreshold;
} t_thermal_level_info, *tp_thermal_level_info;
typedef enum {
WLAN_WMA_THERMAL_LEVEL_0,
WLAN_WMA_THERMAL_LEVEL_1,
WLAN_WMA_THERMAL_LEVEL_2,
WLAN_WMA_THERMAL_LEVEL_3,
WLAN_WMA_MAX_THERMAL_LEVELS
} t_thermal_level;
#define WLAN_THROTTLE_DUTY_CYCLE_LEVEL_MAX (4)
typedef struct {
/* Array of thermal levels */
t_thermal_level_info thermalLevels[WLAN_WMA_MAX_THERMAL_LEVELS];
uint8_t thermalCurrLevel;
uint8_t thermalMgmtEnabled;
uint32_t throttlePeriod;
uint8_t throttle_duty_cycle_tbl[WLAN_THROTTLE_DUTY_CYCLE_LEVEL_MAX];
} t_thermal_mgmt, *tp_thermal_mgmt;
typedef struct sSirTxPowerLimit {
/* Thermal limits for 2g and 5g */
uint32_t txPower2g;
uint32_t txPower5g;
} tSirTxPowerLimit;
enum bad_peer_thresh_levels {
WLAN_WMA_IEEE80211_B_LEVEL = 0,
WLAN_WMA_IEEE80211_AG_LEVEL,
WLAN_WMA_IEEE80211_N_LEVEL,
WLAN_WMA_IEEE80211_AC_LEVEL,
WLAN_WMA_IEEE80211_AX_LEVEL,
WLAN_WMA_IEEE80211_MAX_LEVEL,
};
#define NUM_OF_RATE_THRESH_MAX (4)
struct t_bad_peer_info {
uint32_t cond;
uint32_t delta;
uint32_t percentage;
uint32_t thresh[NUM_OF_RATE_THRESH_MAX];
uint32_t txlimit;
};
struct t_bad_peer_txtcl_config {
/* Array of thermal levels */
struct t_bad_peer_info threshold[WLAN_WMA_IEEE80211_MAX_LEVEL];
uint32_t enable;
uint32_t period;
uint32_t txq_limit;
uint32_t tgt_backoff;
uint32_t tgt_report_prd;
};
/* notify MODEM power state to FW */
typedef struct {
uint32_t param;
} tSirModemPowerStateInd, *tpSirModemPowerStateInd;
#ifdef WLAN_FEATURE_STATS_EXT
typedef struct {
uint32_t vdev_id;
uint32_t event_data_len;
uint8_t event_data[];
} tSirStatsExtEvent, *tpSirStatsExtEvent;
#endif
typedef struct {
uint32_t event_data_len;
uint8_t event_data[];
} tSirNanEvent, *tpSirNanEvent;
typedef struct sSirSmeRoamOffloadSynchInd {
uint16_t messageType; /*eWNI_SME_ROAM_OFFLOAD_SYNCH_IND */
uint16_t length;
uint16_t beaconProbeRespOffset;
uint16_t beaconProbeRespLength;
uint16_t reassocRespOffset;
uint16_t reassocRespLength;
uint16_t reassoc_req_offset;
uint16_t reassoc_req_length;
uint8_t isBeacon;
uint8_t roamedVdevId;
struct qdf_mac_addr bssid;
struct qdf_mac_addr self_mac;
int8_t txMgmtPower;
uint32_t authStatus;
uint8_t rssi;
uint8_t roamReason;
uint32_t chan_freq;
uint8_t kck[SIR_KCK_KEY_LEN];
uint32_t kek_len;
uint8_t kek[SIR_KEK_KEY_LEN_FILS];
uint32_t pmk_len;
uint8_t pmk[SIR_PMK_LEN];
uint8_t pmkid[SIR_PMKID_LEN];
bool update_erp_next_seq_num;
uint16_t next_erp_seq_num;
uint8_t replay_ctr[SIR_REPLAY_CTR_LEN];
void *add_bss_params;
tpSirSmeJoinRsp join_rsp;
uint16_t aid;
struct sir_hw_mode_trans_ind hw_mode_trans_ind;
uint8_t nss;
struct qdf_mac_addr dst_mac;
struct qdf_mac_addr src_mac;
uint16_t hlp_data_len;
uint8_t hlp_data[FILS_MAX_HLP_DATA_LEN];
} roam_offload_synch_ind;
#ifdef WLAN_FEATURE_ROAM_OFFLOAD
typedef struct sSirSmeRoamOffloadSynchCnf {
uint8_t sessionId;
} tSirSmeRoamOffloadSynchCnf, *tpSirSmeRoamOffloadSynchCnf;
typedef struct sSirSmeHOFailureInd {
uint8_t sessionId;
} tSirSmeHOFailureInd, *tpSirSmeHOFailureInd;
struct roam_offload_synch_fail {
uint8_t session_id;
};
#endif
#ifdef FEATURE_WLAN_EXTSCAN
/**
* typedef enum wifi_scan_flags - wifi scan flags
* @WIFI_SCAN_FLAG_INTERRUPTED: Indicates that scan results are not complete
* because probes were not sent on some channels
*/
typedef enum {
WIFI_SCAN_FLAG_INTERRUPTED = 1,
} wifi_scan_flags;
typedef enum {
WIFI_BAND_UNSPECIFIED,
WIFI_BAND_BG = 1, /* 2.4 GHz */
WIFI_BAND_A = 2, /* 5 GHz without DFS */
WIFI_BAND_ABG = 3, /* 2.4 GHz + 5 GHz; no DFS */
WIFI_BAND_A_DFS_ONLY = 4, /* 5 GHz DFS only */
/* 5 is reserved */
WIFI_BAND_A_WITH_DFS = 6, /* 5 GHz with DFS */
WIFI_BAND_ABG_WITH_DFS = 7, /* 2.4 GHz + 5 GHz with DFS */
/* Keep it last */
WIFI_BAND_MAX
} tWifiBand;
/**
* enum wifi_extscan_event_type - extscan event type
* @WIFI_EXTSCAN_RESULTS_AVAILABLE: reported when REPORT_EVENTS_EACH_SCAN is set
* and a scan cycle completes. WIFI_SCAN_THRESHOLD_NUM_SCANS or
* WIFI_SCAN_THRESHOLD_PERCENT can be reported instead if the
* reason for the event is available; however, at most one of
* these events should be reported per scan.
* @WIFI_EXTSCAN_THRESHOLD_NUM_SCANS: can be reported when
* REPORT_EVENTS_EACH_SCAN is not set and
* report_threshold_num_scans is reached.
* @WIFI_EXTSCAN_THRESHOLD_PERCENT: can be reported when REPORT_EVENTS_EACH_SCAN
* is not set and report_threshold_percent is reached.
* @WIFI_SCAN_DISABLED: reported when currently executing gscans are disabled
* start_gscan will need to be called again in order to continue
* scanning.
* @WIFI_EXTSCAN_BUCKET_STARTED_EVENT: Bucket started event
* This event is consumed in driver only.
* @WIFI_EXTSCAN_CYCLE_STARTED_EVENT: Cycle started event.
* This event is consumed in driver only.
* @WIFI_EXTSCAN_CYCLE_COMPLETED_EVENT: Cycle complete event. This event
* triggers @WIFI_EXTSCAN_RESULTS_AVAILABLE to the user space.
*/
enum wifi_extscan_event_type {
WIFI_EXTSCAN_RESULTS_AVAILABLE,
WIFI_EXTSCAN_THRESHOLD_NUM_SCANS,
WIFI_EXTSCAN_THRESHOLD_PERCENT,
WIFI_SCAN_DISABLED,
WIFI_EXTSCAN_BUCKET_STARTED_EVENT = 0x10,
WIFI_EXTSCAN_CYCLE_STARTED_EVENT,
WIFI_EXTSCAN_CYCLE_COMPLETED_EVENT,
};
/**
* enum extscan_configuration_flags - extscan config flags
* @EXTSCAN_LP_EXTENDED_BATCHING: extended batching
*/
enum extscan_configuration_flags {
EXTSCAN_LP_EXTENDED_BATCHING = 0x00000001,
};
typedef struct {
struct qdf_mac_addr bssid;
/* Low threshold */
int32_t low;
/* High threshold */
int32_t high;
} tSirAPThresholdParam, *tpSirAPThresholdParam;
typedef struct {
uint32_t requestId;
uint8_t sessionId;
} tSirGetExtScanCapabilitiesReqParams, *tpSirGetExtScanCapabilitiesReqParams;
/**
* struct ext_scan_capabilities_response - extscan capabilities response data
* @requestId: request identifier
* @status: status
* @max_scan_cache_size: total space allocated for scan (in bytes)
* @max_scan_buckets: maximum number of channel buckets
* @max_ap_cache_per_scan: maximum number of APs that can be stored per scan
* @max_rssi_sample_size: number of RSSI samples used for averaging RSSI
* @ax_scan_reporting_threshold: max possible report_threshold
* @max_hotlist_bssids: maximum number of entries for hotlist APs
* @max_significant_wifi_change_aps: maximum number of entries for
* significant wifi change APs
* @max_bssid_history_entries: number of BSSID/RSSI entries that device can hold
* @max_hotlist_ssids: maximum number of entries for hotlist SSIDs
* @max_number_epno_networks: max number of epno entries
* @max_number_epno_networks_by_ssid: max number of epno entries
* if ssid is specified, that is, epno entries for
* which an exact match is required,
* or entries corresponding to hidden ssids
* @max_number_of_white_listed_ssid: max number of white listed SSIDs
* @max_number_of_black_listed_bssid: max number of black listed BSSIDs
*/
struct ext_scan_capabilities_response {
uint32_t requestId;
uint32_t status;
uint32_t max_scan_cache_size;
uint32_t max_scan_buckets;
uint32_t max_ap_cache_per_scan;
uint32_t max_rssi_sample_size;
uint32_t max_scan_reporting_threshold;
uint32_t max_hotlist_bssids;
uint32_t max_significant_wifi_change_aps;
uint32_t max_bssid_history_entries;
uint32_t max_hotlist_ssids;
uint32_t max_number_epno_networks;
uint32_t max_number_epno_networks_by_ssid;
uint32_t max_number_of_white_listed_ssid;
uint32_t max_number_of_black_listed_bssid;
};
typedef struct {
uint32_t requestId;
uint8_t sessionId;
/*
* 1 - return cached results and flush it
* 0 - return cached results and do not flush
*/
bool flush;
} tSirExtScanGetCachedResultsReqParams, *tpSirExtScanGetCachedResultsReqParams;
typedef struct {
uint32_t requestId;
uint32_t status;
} tSirExtScanGetCachedResultsRspParams, *tpSirExtScanGetCachedResultsRspParams;
typedef struct {
/* Time of discovery */
uint64_t ts;
/* Null terminated SSID */
uint8_t ssid[SIR_MAC_MAX_SSID_LENGTH + 1];
struct qdf_mac_addr bssid;
/* Frequency in MHz */
uint32_t channel;
/* RSSI in dBm */
int32_t rssi;
/* RTT in nanoseconds */
uint32_t rtt;
/* Standard deviation in rtt */
uint32_t rtt_sd;
/* Period advertised in the beacon */
uint16_t beaconPeriod;
/* Capabilities advertised in the beacon */
uint16_t capability;
uint16_t ieLength;
uint8_t ieData[];
} tSirWifiScanResult, *tpSirWifiScanResult;
/**
* struct extscan_hotlist_match - extscan hotlist match
* @requestId: request identifier
* @numOfAps: number of bssids retrieved by the scan
* @moreData: 0 - for last fragment
* 1 - still more fragment(s) coming
* @ap: wifi scan result
*/
struct extscan_hotlist_match {
uint32_t requestId;
bool moreData;
bool ap_found;
uint32_t numOfAps;
tSirWifiScanResult ap[];
};
/**
* struct extscan_cached_scan_result - extscan cached scan result
* @scan_id: a unique identifier for the scan unit
* @flags: a bitmask with additional information about scan
* @num_results: number of bssids retrieved by the scan
* @buckets_scanned: bitmask of buckets scanned in current extscan cycle
* @ap: wifi scan bssid results info
*/
struct extscan_cached_scan_result {
uint32_t scan_id;
uint32_t flags;
uint32_t num_results;
uint32_t buckets_scanned;
tSirWifiScanResult *ap;
};
/**
* struct tSirWifiScanResultEvent - wifi scan result event
* @requestId: request identifier
* @ap_found: flag to indicate ap found or not
* true: AP was found
* false: AP was lost
* @numOfAps: number of aps
* @moreData: more data
* @ap: bssid information
*
*/
typedef struct {
uint32_t requestId;
bool ap_found;
uint32_t numOfAps;
bool moreData;
tSirWifiScanResult ap[];
} tSirWifiScanResultEvent, *tpSirWifiScanResultEvent;
/**
* struct extscan_cached_scan_results - extscan cached scan results
* @request_id: request identifier
* @more_data: 0 - for last fragment
* 1 - still more fragment(s) coming
* @num_scan_ids: number of scan ids
* @result: wifi scan result
*/
struct extscan_cached_scan_results {
uint32_t request_id;
bool more_data;
uint32_t num_scan_ids;
struct extscan_cached_scan_result *result;
};
/**
* struct tSirWifiFullScanResultEvent - extscan full scan event
* @request_id: request identifier
* @moreData: 0 - for last fragment
* 1 - still more fragment(s) coming
* @ap: bssid info
*
* Reported when each probe response is received, if reportEvents
* enabled in tSirWifiScanCmdReqParams
*/
typedef struct {
uint32_t requestId;
bool moreData;
tSirWifiScanResult ap;
} tSirWifiFullScanResultEvent, *tpSirWifiFullScanResultEvent;
/**
* struct pno_match_found - epno match found
* @request_id: request identifier
* @moreData: 0 - for last fragment
* 1 - still more fragment(s) coming
* @num_results: number of bssids, driver sends this event to upper layer
* for every beacon, hence %num_results is always set to 1.
* @ap: bssid info
*
* Reported when each beacon probe response is received with
* epno match found tag.
*/
struct pno_match_found {
uint32_t request_id;
bool more_data;
uint32_t num_results;
tSirWifiScanResult ap[];
};
typedef struct {
/* Frequency in MHz */
uint32_t channel;
uint32_t dwellTimeMs;
/* 0 => active
1 => passive scan; ignored for DFS */
bool passive;
uint8_t chnlClass;
} tSirWifiScanChannelSpec, *tpSirWifiScanChannelSpec;
/**
* struct tSirWifiScanBucketSpec - wifi scan bucket spec
* @bucket: bucket identifier
* @band: wifi band
* @period: Desired period, in millisecond; if this is too
* low, the firmware should choose to generate results as fast as
* it can instead of failing the command byte
* for exponential backoff bucket this is the min_period
* @reportEvents: 0 => normal reporting (reporting rssi history
* only, when rssi history buffer is % full)
* 1 => same as 0 + report a scan completion event after scanning
* this bucket
* 2 => same as 1 + forward scan results
* (beacons/probe responses + IEs) in real time to HAL
* @max_period: if max_period is non zero or different than period,
* then this bucket is an exponential backoff bucket and
* the scan period will grow exponentially as per formula:
* actual_period(N) = period ^ (N/(step_count+1)) to a
* maximum period of max_period
* @exponent: for exponential back off bucket: multiplier:
* new_period = old_period * exponent
* @step_count: for exponential back off bucket, number of scans performed
* at a given period and until the exponent is applied
* @numChannels: channels to scan; these may include DFS channels
* Note that a given channel may appear in multiple buckets
* @min_dwell_time_active: per bucket minimum active dwell time
* @max_dwell_time_active: per bucket maximum active dwell time
* @min_dwell_time_passive: per bucket minimum passive dwell time
* @max_dwell_time_passive: per bucket maximum passive dwell time
* @channels: Channel list
*/
typedef struct {
uint8_t bucket;
tWifiBand band;
uint32_t period;
uint32_t reportEvents;
uint32_t max_period;
uint32_t exponent;
uint32_t step_count;
uint32_t numChannels;
uint32_t min_dwell_time_active;
uint32_t max_dwell_time_active;
uint32_t min_dwell_time_passive;
uint32_t max_dwell_time_passive;
tSirWifiScanChannelSpec channels[WLAN_EXTSCAN_MAX_CHANNELS];
} tSirWifiScanBucketSpec, *tpSirWifiScanBucketSpec;
/**
* struct tSirWifiScanCmdReqParams - wifi scan command request params
* @basePeriod: base timer period
* @maxAPperScan: max ap per scan
* @report_threshold_percent: report threshold
* in %, when buffer is this much full, wake up host
* @report_threshold_num_scans: report threshold number of scans
* in number of scans, wake up host after these many scans
* @requestId: request id
* @sessionId: session id
* @numBuckets: number of buckets
* @min_dwell_time_active: per bucket minimum active dwell time
* @max_dwell_time_active: per bucket maximum active dwell time
* @min_dwell_time_passive: per bucket minimum passive dwell time
* @max_dwell_time_passive: per bucket maximum passive dwell time
* @configuration_flags: configuration flags
* @buckets: buckets array
*/
typedef struct {
uint32_t basePeriod;
uint32_t maxAPperScan;
uint32_t report_threshold_percent;
uint32_t report_threshold_num_scans;
uint32_t requestId;
uint8_t sessionId;
uint32_t numBuckets;
uint32_t min_dwell_time_active;
uint32_t max_dwell_time_active;
uint32_t min_dwell_time_passive;
uint32_t max_dwell_time_passive;
uint32_t configuration_flags;
enum wmi_dwelltime_adaptive_mode extscan_adaptive_dwell_mode;
tSirWifiScanBucketSpec buckets[WLAN_EXTSCAN_MAX_BUCKETS];
} tSirWifiScanCmdReqParams, *tpSirWifiScanCmdReqParams;
/**
* struct sir_extscan_generic_response -
* Generic ExtScan Response structure
* @request_id: ID of the request
* @status: operation status returned by firmware
*/
struct sir_extscan_generic_response {
uint32_t request_id;
uint32_t status;
};
typedef struct {
uint32_t requestId;
uint8_t sessionId;
} tSirExtScanStopReqParams, *tpSirExtScanStopReqParams;
/**
* struct tSirExtScanSetBssidHotListReqParams - set hotlist request
* @requestId: request identifier
* @sessionId: session identifier
* @lost_ap_sample_size: number of samples to confirm AP loss
* @numAp: Number of hotlist APs
* @ap: hotlist APs
*/
typedef struct {
uint32_t requestId;
uint8_t sessionId;
uint32_t lost_ap_sample_size;
uint32_t numAp;
tSirAPThresholdParam ap[WLAN_EXTSCAN_MAX_HOTLIST_APS];
} tSirExtScanSetBssidHotListReqParams, *tpSirExtScanSetBssidHotListReqParams;
typedef struct {
uint32_t requestId;
uint8_t sessionId;
} tSirExtScanResetBssidHotlistReqParams,
*tpSirExtScanResetBssidHotlistReqParams;
/**
* struct sir_wisa_params - WISA Mode Parameters
* @mode: WISA mode
* @session_id: Session ID of vdev
*/
struct sir_wisa_params {
bool mode;
uint8_t vdev_id;
};
typedef struct {
uint32_t requestId;
uint8_t sessionId;
/* Number of samples for averaging RSSI */
uint32_t rssiSampleSize;
/* Number of missed samples to confirm AP loss */
uint32_t lostApSampleSize;
/* Number of APs breaching threshold required for firmware
* to generate event
*/
uint32_t minBreaching;
uint32_t numAp;
tSirAPThresholdParam ap[WLAN_EXTSCAN_MAX_SIGNIFICANT_CHANGE_APS];
} tSirExtScanSetSigChangeReqParams, *tpSirExtScanSetSigChangeReqParams;
typedef struct {
struct qdf_mac_addr bssid;
uint32_t channel;
uint32_t numOfRssi;
/* Rssi history in db */
int32_t rssi[];
} tSirWifiSignificantChange, *tpSirWifiSignificantChange;
typedef struct {
uint32_t requestId;
bool moreData;
uint32_t numResults;
tSirWifiSignificantChange ap[];
} tSirWifiSignificantChangeEvent, *tpSirWifiSignificantChangeEvent;
typedef struct {
uint32_t requestId;
uint8_t sessionId;
} tSirExtScanResetSignificantChangeReqParams,
*tpSirExtScanResetSignificantChangeReqParams;
typedef struct {
uint32_t requestId;
uint32_t numResultsAvailable;
} tSirExtScanResultsAvailableIndParams, *tpSirExtScanResultsAvailableIndParams;
typedef struct {
uint32_t requestId;
uint32_t status;
uint8_t scanEventType;
uint32_t buckets_scanned;
} tSirExtScanOnScanEventIndParams, *tpSirExtScanOnScanEventIndParams;
#define MAX_EPNO_NETWORKS 64
/**
* struct wifi_epno_network - enhanced pno network block
* @ssid: ssid
* @flags: WIFI_PNO_FLAG_XXX
* @auth_bit_field: auth bit field for matching WPA IE
*/
struct wifi_epno_network {
tSirMacSSid ssid;
uint8_t flags;
uint8_t auth_bit_field;
};
/**
* struct wifi_epno_params - enhanced pno network params
* @request_id: request id number
* @session_id: session_id number
* @min_5ghz_rssi: minimum 5GHz RSSI for a BSSID to be considered
* @min_24ghz_rssi: minimum 2.4GHz RSSI for a BSSID to be considered
* @initial_score_max: maximum score that a network can have before bonuses
* @current_connection_bonus: only report when there is a network's score this
* much higher than the current connection
* @same_network_bonus: score bonus for all n/w with the same network flag
* @secure_bonus: score bonus for networks that are not open
* @band_5ghz_bonus: 5GHz RSSI score bonus (applied to all 5GHz networks)
* @num_networks: number of ssids
* @networks: EPNO networks
*/
struct wifi_epno_params {
uint32_t request_id;
uint32_t session_id;
uint32_t min_5ghz_rssi;
uint32_t min_24ghz_rssi;
uint32_t initial_score_max;
uint32_t current_connection_bonus;
uint32_t same_network_bonus;
uint32_t secure_bonus;
uint32_t band_5ghz_bonus;
uint32_t num_networks;
struct wifi_epno_network networks[];
};
#define SIR_PASSPOINT_LIST_MAX_NETWORKS 8
#define SIR_PASSPOINT_REALM_LEN 256
#define SIR_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM 16
#define SIR_PASSPOINT_PLMN_LEN 3
/**
* struct wifi_passpoint_network - passpoint network block
* @id: identifier of this network block
* @realm: null terminated UTF8 encoded realm, 0 if unspecified
* @roaming_consortium_ids: roaming consortium ids to match, 0s if unspecified
* @plmn: mcc/mnc combination as per rules, 0s if unspecified
*/
struct wifi_passpoint_network {
uint32_t id;
uint8_t realm[SIR_PASSPOINT_REALM_LEN];
int64_t roaming_consortium_ids[SIR_PASSPOINT_ROAMING_CONSORTIUM_ID_NUM];
uint8_t plmn[SIR_PASSPOINT_PLMN_LEN];
};
/**
* struct wifi_passpoint_req - passpoint request
* @request_id: request identifier
* @num_networks: number of networks
* @networks: passpoint networks
*/
struct wifi_passpoint_req {
uint32_t request_id;
uint32_t session_id;
uint32_t num_networks;
struct wifi_passpoint_network networks[];
};
/**
* struct wifi_passpoint_match - wifi passpoint network match
* @id: network block identifier for the matched network
* @anqp_len: length of ANQP blob
* @ap: scan result, with channel and beacon information
* @anqp: ANQP data, in the information_element format
*/
struct wifi_passpoint_match {
uint32_t request_id;
uint32_t id;
uint32_t anqp_len;
tSirWifiScanResult ap;
uint8_t anqp[];
};
#endif /* FEATURE_WLAN_EXTSCAN */
#ifdef FEATURE_WLAN_AUTO_SHUTDOWN
typedef struct {
uint32_t timer_val;
} tSirAutoShutdownCmdParams;
typedef struct {
uint32_t shutdown_reason;
} tSirAutoShutdownEvtParams;
#endif
#ifdef WLAN_FEATURE_LINK_LAYER_STATS
typedef struct {
uint32_t reqId;
uint8_t staId;
uint32_t mpduSizeThreshold;
uint32_t aggressiveStatisticsGathering;
} tSirLLStatsSetReq, *tpSirLLStatsSetReq;
typedef struct {
uint32_t reqId;
uint8_t staId;
uint32_t paramIdMask;
} tSirLLStatsGetReq, *tpSirLLStatsGetReq;
typedef struct {
uint32_t reqId;
uint8_t staId;
uint32_t statsClearReqMask;
uint8_t stopReq;
} tSirLLStatsClearReq, *tpSirLLStatsClearReq;
#ifdef WLAN_POWER_DEBUGFS
/**
* struct power_stats_response - Power stats response
* @cumulative_sleep_time_ms: cumulative sleep time in ms
* @cumulative_total_on_time_ms: total awake time in ms
* @deep_sleep_enter_counter: deep sleep enter counter
* @last_deep_sleep_enter_tstamp_ms: last deep sleep enter timestamp
* @debug_register_fmt: debug registers format
* @num_debug_register: number of debug registers
* @debug_registers: Pointer to the debug registers buffer
*/
struct power_stats_response {
uint32_t cumulative_sleep_time_ms;
uint32_t cumulative_total_on_time_ms;
uint32_t deep_sleep_enter_counter;
uint32_t last_deep_sleep_enter_tstamp_ms;
uint32_t debug_register_fmt;
uint32_t num_debug_register;
uint32_t *debug_registers;
};
#endif
/**
* struct lfr_firmware_status - LFR status in firmware
* @is_disabled: Is LFR disabled in FW
* @disable_lfr_event: Disable attempt done in FW
*/
struct lfr_firmware_status {
uint32_t is_disabled;
struct completion disable_lfr_event;
};
/**
* struct rso_cmd_status - RSO Command status
* @vdev_id: Vdev ID for which RSO command sent
* @status: Status of RSO command sent to FW
*/
struct rso_cmd_status {
uint32_t vdev_id;
bool status;
};
typedef struct {
uint8_t oui[WIFI_SCANNING_MAC_OUI_LENGTH];
uint32_t vdev_id;
bool enb_probe_req_sno_randomization;
/* probe req ie whitelisting attrs */
bool ie_whitelist;
uint32_t probe_req_ie_bitmap[PROBE_REQ_BITMAP_LEN];
uint32_t num_vendor_oui;
/* Followed by 0 or more vendor_ouis of type uint32_t */
} tSirScanMacOui, *tpSirScanMacOui;
enum {
SIR_AP_RX_DATA_OFFLOAD = 0x00,
SIR_STA_RX_DATA_OFFLOAD = 0x01,
};
struct sir_ipa_offload_enable_disable {
uint32_t offload_type;
uint32_t vdev_id;
uint32_t enable;
};
/**
* struct sir_set_vdev_ies_per_band
* @msg_type: message type
* @len: message length
* @vdev_id: vdev id
* @rx_ldpc_ini: Rx LDPC ini setting
*
* Message wrapper structure for eWNI_SME_SET_VDEV_IES_PER_BAND.
*/
struct sir_set_vdev_ies_per_band {
uint16_t msg_type;
uint16_t len;
uint32_t vdev_id;
uint8_t is_hw_mode_dbs;
};
/**
* struct sir_set_ht_vht_cfg - ht, vht IE config
* @msg_type: message type
* @len: message length
* @pdev_id: pdev id
* @nss: Nss value
* @dot11mode: Dot11 mode.
*
* Message wrapper structure for set HT/VHT IE req.
*/
struct sir_set_ht_vht_cfg {
uint16_t msg_type;
uint16_t len;
uint32_t pdev_id;
uint32_t nss;
uint32_t dot11mode;
};
/*---------------------------------------------------------------------------
WLAN_HAL_LL_NOTIFY_STATS
---------------------------------------------------------------------------*/
/******************************LINK LAYER Statistics**********************/
typedef int tSirWifiRadio;
typedef int tSirWifiChannel;
typedef int tSirwifiTxRate;
/* channel operating width */
typedef enum {
WIFI_CHAN_WIDTH_20 = 0,
WIFI_CHAN_WIDTH_40 = 1,
WIFI_CHAN_WIDTH_80 = 2,
WIFI_CHAN_WIDTH_160 = 3,
WIFI_CHAN_WIDTH_80P80 = 4,
WIFI_CHAN_WIDTH_5 = 5,
WIFI_CHAN_WIDTH_10 = 6,
} tSirWifiChannelWidth;
typedef enum {
WIFI_DISCONNECTED = 0,
WIFI_AUTHENTICATING = 1,
WIFI_ASSOCIATING = 2,
WIFI_ASSOCIATED = 3,
WIFI_EAPOL_STARTED = 4, /* if done by firmware/driver */
WIFI_EAPOL_COMPLETED = 5, /* if done by firmware/driver */
} tSirWifiConnectionState;
typedef enum {
WIFI_ROAMING_IDLE = 0,
WIFI_ROAMING_ACTIVE = 1,
} tSirWifiRoamState;
typedef enum {
WIFI_INTERFACE_STA = 0,
WIFI_INTERFACE_SOFTAP = 1,
WIFI_INTERFACE_IBSS = 2,
WIFI_INTERFACE_P2P_CLIENT = 3,
WIFI_INTERFACE_P2P_GO = 4,
WIFI_INTERFACE_NAN = 5,
WIFI_INTERFACE_MESH = 6,
WIFI_INTERFACE_NDI = 7,
} tSirWifiInterfaceMode;
/* set for QOS association */
#define WIFI_CAPABILITY_QOS 0x00000001
/* set for protected assoc (802.11 beacon frame control protected bit set) */
#define WIFI_CAPABILITY_PROTECTED 0x00000002
/* set if 802.11 Extended Capabilities element interworking bit is set */
#define WIFI_CAPABILITY_INTERWORKING 0x00000004
/* set for HS20 association */
#define WIFI_CAPABILITY_HS20 0x00000008
/* set is 802.11 Extended Capabilities element UTF-8 SSID bit is set */
#define WIFI_CAPABILITY_SSID_UTF8 0x00000010
/* set is 802.11 Country Element is present */
#define WIFI_CAPABILITY_COUNTRY 0x00000020
typedef struct {
/* tSirWifiInterfaceMode */
/* interface mode */
uint8_t mode;
/* interface mac address (self) */
struct qdf_mac_addr macAddr;
/* tSirWifiConnectionState */
/* connection state (valid for STA, CLI only) */
uint8_t state;
/* tSirWifiRoamState */
/* roaming state */
uint32_t roaming;
/* WIFI_CAPABILITY_XXX (self) */
uint32_t capabilities;
/* null terminated SSID */
uint8_t ssid[33];
/* bssid */
struct qdf_mac_addr bssid;
/* country string advertised by AP */
uint8_t apCountryStr[WNI_CFG_COUNTRY_CODE_LEN];
/* country string for this association */
uint8_t countryStr[WNI_CFG_COUNTRY_CODE_LEN];
} tSirWifiInterfaceInfo, *tpSirWifiInterfaceInfo;
/* channel information */
typedef struct {
/* channel width (20, 40, 80, 80+80, 160) */
tSirWifiChannelWidth width;
/* primary 20 MHz channel */
tSirWifiChannel centerFreq;
/* center frequency (MHz) first segment */
tSirWifiChannel centerFreq0;
/* center frequency (MHz) second segment */
tSirWifiChannel centerFreq1;
} tSirWifiChannelInfo, *tpSirWifiChannelInfo;
/* wifi rate info */
typedef struct {
/* 0: OFDM, 1:CCK, 2:HT 3:VHT 4..7 reserved */
uint32_t preamble:3;
/* 0:1x1, 1:2x2, 3:3x3, 4:4x4 */
uint32_t nss:2;
/* 0:20MHz, 1:40Mhz, 2:80Mhz, 3:160Mhz */
uint32_t bw:3;
/* OFDM/CCK rate code would be as per ieee std in units of 0.5mbps */
/* HT/VHT it would be mcs index */
uint32_t rateMcsIdx:8;
/* reserved */
uint32_t reserved:16;
/* units of 100 Kbps */
uint32_t bitrate;
} tSirWifiRate, *tpSirWifiRate;
/* channel statistics */
typedef struct {
/* channel */
tSirWifiChannelInfo channel;
/* msecs the radio is awake (32 bits number accruing over time) */
uint32_t onTime;
/* msecs the CCA register is busy (32 bits number accruing over time) */
uint32_t ccaBusyTime;
} tSirWifiChannelStats, *tpSirWifiChannelStats;
#define MAX_TPC_LEVELS 64
/* radio statistics */
typedef struct {
/* wifi radio (if multiple radio supported) */
tSirWifiRadio radio;
/* msecs the radio is awake (32 bits number accruing over time) */
uint32_t onTime;
/* msecs the radio is transmitting
* (32 bits number accruing over time)
*/
uint32_t txTime;
/* msecs the radio is in active receive
*(32 bits number accruing over time)
*/
uint32_t rxTime;
/* msecs the radio is awake due to all scan
* (32 bits number accruing over time)
*/
uint32_t onTimeScan;
/* msecs the radio is awake due to NAN
* (32 bits number accruing over time)
*/
uint32_t onTimeNbd;
/* msecs the radio is awake due to Gscan
* (32 bits number accruing over time)
*/
uint32_t onTimeGscan;
/* msecs the radio is awake due to roam?scan
* (32 bits number accruing over time)
*/
uint32_t onTimeRoamScan;
/* msecs the radio is awake due to PNO scan
* (32 bits number accruing over time)
*/
uint32_t onTimePnoScan;
/* msecs the radio is awake due to HS2.0 scans and GAS exchange
* (32 bits number accruing over time)
*/
uint32_t onTimeHs20;
/* tx time (in milliseconds) per TPC level (0.5 dBm) */
uint32_t total_num_tx_power_levels;
uint32_t *tx_time_per_power_level;
/* number of channels */
uint32_t numChannels;
/* tx time (in milliseconds) per TPC level (0.5 dBm) */
uint32_t tx_time_per_tpc[MAX_TPC_LEVELS];
uint32_t on_time_host_scan;
uint32_t on_time_lpi_scan;
/* channel statistics tSirWifiChannelStats */
tSirWifiChannelStats *channels;
} tSirWifiRadioStat, *tpSirWifiRadioStat;
/* per rate statistics */
typedef struct {
/* rate information */
tSirWifiRate rate;
/* number of successfully transmitted data pkts (ACK rcvd) */
uint32_t txMpdu;
/* number of received data pkts */
uint32_t rxMpdu;
/* number of data packet losses (no ACK) */
uint32_t mpduLost;
/* total number of data pkt retries * */
uint32_t retries;
/* number of short data pkt retries */
uint32_t retriesShort;
/* number of long data pkt retries */
uint32_t retriesLong;
} tSirWifiRateStat, *tpSirWifiRateStat;
/* wifi peer type */
typedef enum {
WIFI_PEER_STA,
WIFI_PEER_AP,
WIFI_PEER_P2P_GO,
WIFI_PEER_P2P_CLIENT,
WIFI_PEER_NAN,
WIFI_PEER_TDLS,
WIFI_PEER_INVALID,
} tSirWifiPeerType;
/* per peer statistics */
typedef struct {
/* peer type (AP, TDLS, GO etc.) */
enum wmi_peer_type type;
/* mac address */
struct qdf_mac_addr peerMacAddress;
/* peer WIFI_CAPABILITY_XXX */
uint32_t capabilities;
union {
/* peer power saving mode */
uint32_t power_saving;
/* number of rates */
uint32_t numRate;
};
/* per rate statistics, number of entries = num_rate */
tSirWifiRateStat rateStats[0];
} tSirWifiPeerInfo, *tpSirWifiPeerInfo;
/**
* struct wifi_iface_offload_stat - Wifi Iface offload statistics
* @type: type of offload stats (enum wmi_offload_stats_type)
* @rx_count: Number of (MSDUs) frames Received
* @drp_count: Number of frames Dropped
* @fwd_count:
* Number of frames for which FW Responded (Valid for ARP and NS only).(or)
* Number of frames forwarded to Host (Valid for stats type except ARP and NS).
*/
struct wifi_iface_offload_stat {
wmi_offload_stats_type type;
uint32_t rx_count;
uint32_t drp_count;
uint32_t fwd_count;
};
/* per access category statistics */
typedef struct {
/* tSirWifiTrafficAc */
/* access category (VI, VO, BE, BK) */
uint32_t ac;
/* number of successfully transmitted unicast data pkts (ACK rcvd) */
uint32_t txMpdu;
/* number of received unicast mpdus */
uint32_t rxMpdu;
/* number of succesfully transmitted multicast data packets */
/* STA case: implies ACK received from AP for the unicast */
/* packet in which mcast pkt was sent */
uint32_t txMcast;
/* number of received multicast data packets */
uint32_t rxMcast;
/* number of received unicast a-mpdus */
uint32_t rxAmpdu;
/* number of transmitted unicast a-mpdus */
uint32_t txAmpdu;
/* number of data pkt losses (no ACK) */
uint32_t mpduLost;
/* total number of data pkt retries */
uint32_t retries;
/* number of short data pkt retries */
uint32_t retriesShort;
/* number of long data pkt retries */
uint32_t retriesLong;
/* data pkt min contention time (usecs) */
uint32_t contentionTimeMin;
/* data pkt max contention time (usecs) */
uint32_t contentionTimeMax;
/* data pkt avg contention time (usecs) */
uint32_t contentionTimeAvg;
/* num of data pkts used for contention statistics */
uint32_t contentionNumSamples;
} tSirWifiWmmAcStat, *tpSirWifiWmmAcStat;
/* Interface statistics - corresponding to 2nd most
* LSB in wifi statistics bitmap for getting statistics
*/
typedef struct {
/* current state of the interface */
tSirWifiInterfaceInfo info;
/* access point beacon received count from connected AP */
uint32_t beaconRx;
/* access point mgmt frames received count from */
/* connected AP (including Beacon) */
uint32_t mgmtRx;
/* action frames received count */
uint32_t mgmtActionRx;
/* action frames transmit count */
uint32_t mgmtActionTx;
/* access Point Beacon and Management frames RSSI (averaged) */
uint32_t rssiMgmt;
/* access Point Data Frames RSSI (averaged) from connected AP */
uint32_t rssiData;
/* access Point ACK RSSI (averaged) from connected AP */
uint32_t rssiAck;
/* number of peers */
uint32_t num_peers;
/*
* Indicates how many peer_stats events will be sent depending on the
* num_peers.
*/
uint32_t num_peer_events;
/* number of ac */
uint32_t num_ac;
/* Roaming Stat */
uint32_t roam_state;
/*
* Average Beacon spread offset is the averaged time delay between TBTT
* and beacon TSF. Upper 32 bits of averaged 64 bit beacon spread offset
*/
uint32_t avg_bcn_spread_offset_high;
/* Lower 32 bits of averaged 64 bit beacon spread offset */
uint32_t avg_bcn_spread_offset_low;
/*
* Takes value of 1 if AP leaks packets after sending an ACK for PM=1
* otherwise 0
*/
uint32_t is_leaky_ap;
/*
* Average number of frames received from AP after receiving the ACK
* for a frame with PM = 1
*/
uint32_t avg_rx_frms_leaked;
/*
* Rx leak watch window currently in force to minimize data loss
* because of leaky AP. Rx leak window is the
* time driver waits before shutting down the radio or switching
* the channel and after receiving an ACK for
* a data frame with PM bit set.
*/
uint32_t rx_leak_window;
uint32_t tx_rts_succ_cnt;
uint32_t tx_rts_fail_cnt;
uint32_t tx_ppdu_succ_cnt;
uint32_t tx_ppdu_fail_cnt;
uint32_t connected_duration;
uint32_t disconnected_duration;
uint32_t rtt_ranging_duration;
uint32_t rtt_responder_duration;
uint32_t num_probes_tx;
uint32_t num_beacon_miss;
uint32_t rts_succ_cnt;
uint32_t rts_fail_cnt;
uint32_t ppdu_succ_cnt;
uint32_t ppdu_fail_cnt;
/* per ac data packet statistics */
tSirWifiWmmAcStat AccessclassStats[WIFI_AC_MAX];
uint32_t num_offload_stats;
struct wifi_iface_offload_stat offload_stat[WMI_OFFLOAD_STATS_TYPE_MAX];
} tSirWifiIfaceStat, *tpSirWifiIfaceStat;
/* Peer statistics - corresponding to 3rd most LSB in
* wifi statistics bitmap for getting statistics
*/
typedef struct {
/* number of peers */
uint32_t numPeers;
/* per peer statistics */
tSirWifiPeerInfo peerInfo[0];
} tSirWifiPeerStat, *tpSirWifiPeerStat;
/* wifi statistics bitmap for getting statistics */
#define WMI_LINK_STATS_RADIO 0x00000001
#define WMI_LINK_STATS_IFACE 0x00000002
#define WMI_LINK_STATS_ALL_PEER 0x00000004
#define WMI_LINK_STATS_PER_PEER 0x00000008
/* wifi statistics bitmap for clearing statistics */
/* all radio statistics */
#define WIFI_STATS_RADIO 0x00000001
/* cca_busy_time (within radio statistics) */
#define WIFI_STATS_RADIO_CCA 0x00000002
/* all channel statistics (within radio statistics) */
#define WIFI_STATS_RADIO_CHANNELS 0x00000004
/* all scan statistics (within radio statistics) */
#define WIFI_STATS_RADIO_SCAN 0x00000008
/* all interface statistics */
#define WIFI_STATS_IFACE 0x00000010
/* all tx rate statistics (within interface statistics) */
#define WIFI_STATS_IFACE_TXRATE 0x00000020
/* all ac statistics (within interface statistics) */
#define WIFI_STATS_IFACE_AC 0x00000040
/* all contention (min, max, avg) statistics (within ac statistics) */
#define WIFI_STATS_IFACE_CONTENTION 0x00000080
/* All peer stats on this interface */
#define WIFI_STATS_IFACE_ALL_PEER 0x00000100
/* Clear particular peer stats depending on the peer_mac */
#define WIFI_STATS_IFACE_PER_PEER 0x00000200
/**
* struct sir_wifi_iface_tx_fail - TX failure event
* @tid: TX TID
* @msdu_num: TX MSDU failed counter
* @status: TX status from HTT message.
* Only failure status will be involved.
*/
struct sir_wifi_iface_tx_fail {
uint8_t tid;
uint16_t msdu_num;
enum htt_tx_status status;
};
/**
* struct sir_wifi_chan_cca_stats - channal CCA stats
* @vdev_id: vdev ID
* @idle_time: percentage of idle time, no TX, no RX, no interference
* @tx_time: percentage of time transmitting packets
* @rx_in_bss_time: percentage of time receiving packets in current BSS
* @rx_out_bss_time: percentage of time receiving packets not in current BSS
* @rx_busy_time: percentage of time interference detected
* @rx_in_bad_cond_time: percentage of time receiving packets with errors
* or packets flagged as retransmission or seqnum discontinued.
* @tx_in_bad_cond_time: percentage of time the device transmitted packets
* that haven't been ACKed.
* @wlan_not_avail_time: percentage of time the chip is unable to
* work in normal conditions.
*/
struct sir_wifi_chan_cca_stats {
uint32_t vdev_id;
uint32_t idle_time;
uint32_t tx_time;
uint32_t rx_in_bss_time;
uint32_t rx_out_bss_time;
uint32_t rx_busy_time;
uint32_t rx_in_bad_cond_time;
uint32_t tx_in_bad_cond_time;
uint32_t wlan_not_avail_time;
};
#define WIFI_MAX_CHAINS 8
/**
* struct sir_wifi_peer_signal_stats - peer signal stats
* @vdev_id: vdev ID
* @peer_id: peer ID
* @per_ant_snr: per antenna SNR
* @nf: peer background noise
* @per_ant_rx_mpdus: MPDUs received per antenna
* @per_ant_tx_mpdus: MPDUs transferred per antenna
* @num_chain: valid chain count
*/
struct sir_wifi_peer_signal_stats {
uint32_t vdev_id;
uint32_t peer_id;
/* per antenna SNR in current bss */
int32_t per_ant_snr[WIFI_MAX_CHAINS];
/* Background noise */
int32_t nf[WIFI_MAX_CHAINS];
int32_t per_ant_rx_mpdus[WIFI_MAX_CHAINS];
int32_t per_ant_tx_mpdus[WIFI_MAX_CHAINS];
int32_t num_chain;
};
#define WIFI_VDEV_NUM 4
#define WFIF_MCS_NUM 10
#define WIFI_AGGR_NUM 8
#define WIFI_DELAY_SIZE 11
/**
* struct sir_wifi_tx - per AC tx stats
* @msdus: number of totoal MSDUs on MAC layer in the period
* @mpdus: number of totoal MPDUs on MAC layer in the period
* @ppdus: number of totoal PPDUs on PHY layer in the period
* @bytes: bytes of tx data on MAC layer in the period
* @drops: number of TX packets cancelled due to any reason in the period,
* such as WMM limitation/bandwidth limitation/radio congestion
* @drop_bytes: bytes of dropped TX packets in the period
* @retries: number of unacked transmissions of MPDUs
* @failed: number of packets have not been ACKed despite retried
* @aggr_len: length of the MPDU aggregation size buffer
* @mpdu_aggr_size: histogram of MPDU aggregation size
* @success_mcs_len: length of success mcs buffer
* @success_mcs: histogram of successed received MPDUs encoding rate
* @fail_mcs_len: length of failed mcs buffer
* @fail_mcs: histogram of failed received MPDUs encoding rate
* @delay_len: length of the delay histofram buffer
* @delay: histogram of delays on MAC layer
*/
struct sir_wifi_tx {
uint32_t msdus;
uint32_t mpdus;
uint32_t ppdus;
uint32_t bytes;
uint32_t drops;
uint32_t drop_bytes;
uint32_t retries;
uint32_t failed;
uint32_t aggr_len;
uint32_t *mpdu_aggr_size;
uint32_t success_mcs_len;
uint32_t *success_mcs;
uint32_t fail_mcs_len;
uint32_t *fail_mcs;
uint32_t delay_len;
uint32_t *delay;
};
/**
* struct sir_wifi_rx - per AC rx stats
* @mpdus: number of RX packets on MAC layer
* @bytes: bytes of RX packets on MAC layer
* @ppdus: number of RX packets on PHY layer
* @ppdu_bytes: bytes of RX packets on PHY layer
* @mpdu_lost: number of discontinuity in seqnum
* @mpdu_retry: number of RX packets flagged as retransmissions
* @mpdu_dup: number of RX packets identified as duplicates
* @mpdu_discard: number of RX packets discarded
* @aggr_len: length of MPDU aggregation histogram buffer
* @mpdu_aggr: histogram of MPDU aggregation size
* @mcs_len: length of mcs histogram buffer
* @mcs: histogram of encoding rate.
*/
struct sir_wifi_rx {
uint32_t mpdus;
uint32_t bytes;
uint32_t ppdus;
uint32_t ppdu_bytes;
uint32_t mpdu_lost;
uint32_t mpdu_retry;
uint32_t mpdu_dup;
uint32_t mpdu_discard;
uint32_t aggr_len;
uint32_t *mpdu_aggr;
uint32_t mcs_len;
uint32_t *mcs;
};
/**
* struct sir_wifi_ll_ext_wmm_ac_stats - stats for WMM AC
* @type: WMM AC type
* @tx_stats: pointer to TX stats
* @rx_stats: pointer to RX stats
*/
struct sir_wifi_ll_ext_wmm_ac_stats {
uint32_t type;
struct sir_wifi_tx *tx_stats;
struct sir_wifi_rx *rx_stats;
};
#define WIFI_INVALID_PEER_ID (-1)
#define WIFI_INVALID_VDEV_ID (-1)
#define WIFI_MAX_AC (4)
/**
* struct sir_wifi_ll_ext_peer_stats - per peer stats
* @peer_id: peer ID
* @vdev_id: VDEV ID
* mac_address: MAC address
* @sta_ps_inds: how many times STAs go to sleep
* @sta_ps_durs: total sleep time of STAs (units in ms)
* @rx_probe_reqs: number of probe requests received
* @rx_oth_mgmts: number of other management frames received,
* not including probe requests
* @peer_signal_stat: signal stats
* @ac_stats: WMM BE/BK/VI/VO stats
*/
struct sir_wifi_ll_ext_peer_stats {
uint32_t peer_id;
uint32_t vdev_id;
tSirMacAddr mac_address;
uint32_t sta_ps_inds;
uint32_t sta_ps_durs;
uint32_t rx_probe_reqs;
uint32_t rx_oth_mgmts;
struct sir_wifi_peer_signal_stats peer_signal_stats;
struct sir_wifi_ll_ext_wmm_ac_stats ac_stats[WIFI_MAX_AC];
};
/**
* struct sir_wifi_ll_ext_stats - link layer stats report
* @trigger_cond_id: Indicate what triggered this event.
* 1: timeout. 2: threshold
* @cca_chgd_bitmap: Bitmap to indicate changed channel CCA stats
* which exceeded the thresholds
* @sig_chgd_bitmap: Bitmap to indicate changed peer signal stats
* which exceeded the thresholds
* @tx_chgd_bitmap: Bitmap to indicate changed TX counters
* which exceeded the thresholds
* @rx_chgd_bitmap: Bitmap to indicate changed RX counters
* which exceeded the thresholds
* @chan_cca_stats: channel CCA stats
* @peer_signal_stats: peer signal stats
* @tx_mpdu_aggr_array_len: length of TX MPDU aggregation buffer
* @tx_succ_mcs_array_len: length of mcs buffer for ACKed MPDUs
* @tx_fail_mcs_array_len: length of mcs buffer for no-ACKed MPDUs
* @tx_delay_array_len: length of delay stats buffer
* @rx_mpdu_aggr_array_len: length of RX MPDU aggregation buffer
* @rx_mcs_array_len: length of RX mcs stats buffer
* @peer_stats: peer stats
* @cca: physical channel CCA stats
* @stats: pointer to stats data buffer.
*
* Structure of the whole statictics is like this:
* ---------------------------------
* | trigger_cond_i |
* +-------------------------------+
* | cca_chgd_bitmap |
* +-------------------------------+
* | sig_chgd_bitmap |
* +-------------------------------+
* | tx_chgd_bitmap |
* +-------------------------------+
* | rx_chgd_bitmap |
* +-------------------------------+
* | peer_num |
* +-------------------------------+
* | channel_num |
* +-------------------------------+
* | tx_mpdu_aggr_array_len |
* +-------------------------------+
* | tx_succ_mcs_array_len |
* +-------------------------------+
* | tx_fail_mcs_array_len |
* +-------------------------------+
* | tx_delay_array_len |
* +-------------------------------+
* | rx_mpdu_aggr_array_len |
* +-------------------------------+
* | rx_mcs_array_len |
* +-------------------------------+
* | pointer to CCA stats |
* +-------------------------------+
* | pointer to peer stats |
* +-------------------------------+
* | CCA stats |
* +-------------------------------+
* | peer_stats |----+
* +-------------------------------+ |
* | per peer signals stats |<---+
* | peer0 ~ peern | |
* +-------------------------------+ |
* | TX aggr/mcs parameters array | |
* | Length of this buffer is | |
* | configurable for user layer. |<-+ |
* +-------------------------------+ | |
* | per peer tx stats |--+ |
* | BE | <--+
* | BK | |
* | VI | |
* | VO | |
* +-------------------------------+ |
* | TX aggr/mcs parameters array | |
* | Length of this buffer is | |
* | configurable for user layer. |<-+ |
* +-------------------------------+ | |
* | peer peer rx stats |--+ |
* | BE | <--+
* | BE |
* | BK |
* | VI |
* | VO |
* ---------------------------------
*/
struct sir_wifi_ll_ext_stats {
uint32_t trigger_cond_id;
uint32_t cca_chgd_bitmap;
uint32_t sig_chgd_bitmap;
uint32_t tx_chgd_bitmap;
uint32_t rx_chgd_bitmap;
uint8_t peer_num;
uint8_t channel_num;
uint32_t tx_mpdu_aggr_array_len;
uint32_t tx_succ_mcs_array_len;
uint32_t tx_fail_mcs_array_len;
uint32_t tx_delay_array_len;
uint32_t rx_mpdu_aggr_array_len;
uint32_t rx_mcs_array_len;
struct sir_wifi_ll_ext_peer_stats *peer_stats;
struct sir_wifi_chan_cca_stats *cca;
uint8_t stats[];
};
/**
* struct sir_channel_cca_threshold - threshold for channel CCA
* @idle_time: idle time, no TX, no RX, no interference
* @tx_time: time transmitting packets
* @rx_in_bss_time: time receiving packets in current BSSs
* @rx_out_bss_time: time receiving packets not in current BSSs
* @rx_busy_time: time interference detected
* @rx_in_bad_cond_time: receiving packets with errors
* @tx_in_bad_cond_time: time transmitted packets not been ACKed
* @wlan_not_avail_time: wlan card cannot work
*/
struct sir_channel_cca_threshold {
uint32_t idle_time;
uint32_t tx_time;
uint32_t rx_in_bss_time;
uint32_t rx_out_bss_time;
uint32_t rx_busy_time;
uint32_t rx_in_bad_cond_time;
uint32_t tx_in_bad_cond_time;
uint32_t wlan_not_avail_time;
};
/**
* struct sir_signal_threshold - threshold for per peer sigbal
* @snr: signal to noise rate
* @nf: noise floor
*/
struct sir_signal_threshold {
uint32_t snr;
uint32_t nf;
};
/**
* struct sir_tx_threshold - threshold for TX
* @msdu: TX MSDUs on MAC layer
* @mpdu: TX MPDUs on MAC layer
* @ppdu: TX PPDUs on MAC layer
* @bytes: TX bytes on MAC layer
* @msdu_drop: drooped MSDUs
* @byte_drop: dropped Bytes
* @mpdu_retry: MPDU not acked
* @ppdu_fail: PPDUs which received no block ack
* @aggregation: aggregation size
* @succ_mcs: histogram of encoding rate for acked PPDUs
* @fail_mcs: histogram of encoding rate for no-acked PPDUs
*/
struct sir_tx_threshold {
uint32_t msdu;
uint32_t mpdu;
uint32_t ppdu;
uint32_t bytes;
uint32_t msdu_drop;
uint32_t byte_drop;
uint32_t mpdu_retry;
uint32_t mpdu_fail;
uint32_t ppdu_fail;
uint32_t aggregation;
uint32_t succ_mcs;
uint32_t fail_mcs;
uint32_t delay;
};
/**
* struct sir_rx_threshold - threshold for RX
* @mpdu: RX MPDUs on MAC layer
* @bytes: RX bytes on MAC layer
* @ppdu: RX PPDU on PHY layer
* @ppdu_bytes: RX bytes on PHY layer
* @disorder: discontinuity in seqnum
* @mpdu_retry: MPDUs flagged as retry
* @mpdu_dup: MPDUs identified as duplicated
* @aggregation: aggregation size
* @mcs: histogram of encoding rate for PPDUs
* @ps_inds: power save indication
* @ps_durs: total time in power save
* @probe_reqs: probe request received
* @other_mgmt: other MGMT frames received
*/
struct sir_rx_threshold {
uint32_t mpdu;
uint32_t bytes;
uint32_t ppdu;
uint32_t ppdu_bytes;
uint32_t disorder;
uint32_t mpdu_lost;
uint32_t mpdu_retry;
uint32_t mpdu_dup;
uint32_t mpdu_discard;
uint32_t aggregation;
uint32_t mcs;
uint32_t ps_inds;
uint32_t ps_durs;
uint32_t probe_reqs;
uint32_t other_mgmt;
};
/**
* struct sir_wifi_ll_ext_stats_threshold - Threshold for stats update
* @period: MAC counter indication period (unit in ms)
* @enable: if threshold mechnism is enabled or disabled
* @enable_bitmap: whether dedicated threshold is enabed.
* Every MAC counter has a dedicated threshold. If the dedicated
* threshold is not set in the bitmap, global threshold will take
* effect.
* @global: whether clobal threshold is enabled.
* When both global and dedicated threshold are diabled, MAC counter
* will indicate stats periodically.
* @global_threshold: global threshold value
* @cca_bitmap: bitmap for CCA.
* Bit0: idle time
* Bit1: tx time
* Bit2: RX in BSS
* Bit3: RX out of BSS
* Bit4: medium busy
* Bit5: RX bad
* Bit6: TX bad
* Bit7: WLAN card not available
* @signal_bitmap:
* Bit0: Per channel SNR counter
* Bit1: Per channel noise floor counter
* @tx_bitmap: bitmap for TX counters
* Bit0: TX counter unit in MSDU
* Bit1: TX counter unit in MPDU
* Bit2: TX counter unit in PPDU
* Bit3: TX counter unit in byte
* Bit4: Dropped MSDUs
* Bit5: Dropped Bytes
* Bit6: MPDU retry counter
* Bit7: MPDU failure counter
* Bit8: PPDU failure counter
* Bit9: MPDU aggregation counter
* Bit10: MCS counter for ACKed MPDUs
* Bit11: MCS counter for Failed MPDUs
* Bit12: TX Delay counter
* @rx_bitmap:bitmap for RX counters
* Bit0: MAC RX counter unit in MPDU
* Bit1: MAC RX counter unit in byte
* Bit2: PHY RX counter unit in PPDU
* Bit3: PHY RX counter unit in byte
* Bit4: Disorder counter
* Bit5: Retry counter
* Bit6: Duplication counter
* Bit7: Discard counter
* Bit8: MPDU aggregation size counter
* Bit9: MCS counter
* Bit10: Peer STA power state change (wake to sleep) counter
* Bit11: Peer STA power save counter, total time in PS mode
* Bit12: Probe request counter
* Bit13: Other management frames counter
* @cca_thresh: CCA threshold
* @signal_thresh: signal threshold
* @tx_thresh: TX threshold
* @rx_thresh: RX threshold
*
* Generally, Link layer statistics is reported periodically. But if the
* variation of one stats of compared to the pervious notification exceeds
* a threshold, FW will report the new stats immediately.
* This structure contains threshold for different counters.
*/
struct sir_ll_ext_stats_threshold {
uint32_t period;
uint32_t enable;
uint32_t enable_bitmap;
uint32_t global;
uint32_t global_threshold;
uint32_t cca_bitmap;
uint32_t signal_bitmap;
uint32_t tx_bitmap;
uint32_t rx_bitmap;
struct sir_channel_cca_threshold cca;
struct sir_signal_threshold signal;
struct sir_tx_threshold tx;
struct sir_rx_threshold rx;
};
#define LL_STATS_MIN_PERIOD 10
#define LL_STATS_INVALID_PERIOD 0xFFFFFFFF
typedef struct {
uint32_t paramId;
uint8_t ifaceId;
uint32_t rspId;
uint32_t moreResultToFollow;
uint32_t nr_received;
union {
uint32_t num_peers;
uint32_t num_radio;
};
uint32_t peer_event_number;
/* Variable length field - Do not add anything after this */
uint8_t results[0];
} tSirLLStatsResults, *tpSirLLStatsResults;
/* Result ID for LL stats extension */
#define WMI_LL_STATS_EXT_PS_CHG 0x00000100
#define WMI_LL_STATS_EXT_TX_FAIL 0x00000200
#define WMI_LL_STATS_EXT_MAC_COUNTER 0x00000400
#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
typedef struct sAniGetLinkStatus {
uint16_t msgType; /* message type is same as the request type */
uint16_t msgLen; /* length of the entire request */
uint8_t linkStatus;
uint8_t sessionId;
} tAniGetLinkStatus, *tpAniGetLinkStatus;
#ifdef DHCP_SERVER_OFFLOAD
typedef struct {
uint32_t vdev_id;
uint32_t dhcpSrvOffloadEnabled;
uint32_t dhcpClientNum;
uint32_t dhcpSrvIP;
} tSirDhcpSrvOffloadInfo, *tpSirDhcpSrvOffloadInfo;
#endif /* DHCP_SERVER_OFFLOAD */
#ifdef WLAN_FEATURE_GPIO_LED_FLASHING
typedef struct {
uint32_t reqId;
/* pattern identifier. 0: disconnected 1: connected */
uint32_t pattern_id;
uint32_t led_x0; /* led flashing parameter0 */
uint32_t led_x1; /* led flashing parameter1 */
} tSirLedFlashingReq, *tpSirLedFlashingReq;
#endif
/**
* struct sir_lost_link_info - lost link information structure.
*
* @vdev_id: vdev_id from WMA. some modules call sessionId.
* @rssi: rssi at disconnection time.
*
* driver uses this structure to communicate information collected at
* disconnection time.
*/
struct sir_lost_link_info {
uint32_t vdev_id;
int32_t rssi;
};
/* find the size of given member within a structure */
#ifndef member_size
#define member_size(type, member) (sizeof(((type *)0)->member))
#endif
#define RTT_INVALID 0x00
#define RTT_TIMING_MEAS_CAPABILITY 0x01
#define RTT_FINE_TIME_MEAS_INITIATOR_CAPABILITY 0x02
#define RTT_FINE_TIME_MEAS_RESPONDER_CAPABILITY 0x03
/**
* enum fine_time_meas_mask - bit mask to identify device's
* fine timing measurement capability
* @FINE_TIME_MEAS_STA_INITIATOR - STA role, Initiator capability is supported
* @FINE_TIME_MEAS_STA_RESPONDER - STA role, Responder capability is supported
* @FINE_TIME_MEAS_P2PCLI_INITIATOR - P2P-CLI supports initiator capability
* @FINE_TIME_MEAS_P2PCLI_RESPONDER - P2P-CLI supports responder capability
* @FINE_TIME_MEAS_P2PGO_INITIATOR - P2P-GO supports initiator capability
* @FINE_TIME_MEAS_P2PGO_RESPONDER - P2P-GO supports responder capability
* @FINE_TIME_MEAS_SAP_INITIATOR - SAP role, Initiator capability is supported
* @FINE_TIME_MEAS_SAP_RESPONDER - SAP role, Responder capability is supported
*/
enum fine_time_meas_mask {
FINE_TIME_MEAS_STA_INITIATOR = (1 << (0)),
FINE_TIME_MEAS_STA_RESPONDER = (1 << (1)),
FINE_TIME_MEAS_P2PCLI_INITIATOR = (1 << (2)),
FINE_TIME_MEAS_P2PCLI_RESPONDER = (1 << (3)),
FINE_TIME_MEAS_P2PGO_INITIATOR = (1 << (4)),
FINE_TIME_MEAS_P2PGO_RESPONDER = (1 << (5)),
FINE_TIME_MEAS_SAP_INITIATOR = (1 << (6)),
FINE_TIME_MEAS_SAP_RESPONDER = (1 << (7)),
};
/* number of neighbor reports that we can handle in Neighbor Report Response */
#define MAX_SUPPORTED_NEIGHBOR_RPT 15
/**
* struct sir_stats_avg_factor
* @vdev_id: session id
* @stats_avg_factor: average factor
*/
struct sir_stats_avg_factor {
uint8_t vdev_id;
uint16_t stats_avg_factor;
};
/**
* struct sir_guard_time_request
* @vdev_id: session id
* @guard_time: guard time
*/
struct sir_guard_time_request {
uint8_t vdev_id;
uint32_t guard_time;
};
/* Max number of rates allowed in Supported Rates IE */
#define MAX_NUM_SUPPORTED_RATES (8)
/*
* struct rssi_monitor_req - rssi monitoring
* @request_id: request id
* @session_id: session id
* @min_rssi: minimum rssi
* @max_rssi: maximum rssi
* @control: flag to indicate start or stop
*/
struct rssi_monitor_req {
uint32_t request_id;
uint32_t session_id;
int8_t min_rssi;
int8_t max_rssi;
bool control;
};
/**
* struct rssi_breach_event - rssi breached event structure
* @request_id: request id
* @session_id: session id
* @curr_rssi: current rssi
* @curr_bssid: current bssid
*/
struct rssi_breach_event {
uint32_t request_id;
uint32_t session_id;
int8_t curr_rssi;
struct qdf_mac_addr curr_bssid;
};
/**
* struct chip_pwr_save_fail_detected_params - chip power save failure detected
* event params
* @failure_reason_code:failure reason code
* @wake_lock_bitmap:bitmap for modules voting against sleep for long duration.
*/
struct chip_pwr_save_fail_detected_params {
uint32_t failure_reason_code;
uint32_t wake_lock_bitmap[4];
};
#define MAX_NUM_FW_SEGMENTS 4
/**
* DEFAULT_SCAN_IE_ID - Identifier for the collection of IE's added
* by default to the probe request
*/
#define DEFAULT_SCAN_IE_ID 256
/* MAX_DEFAULT_SCAN_IE_LEN - Maxmimum length of Default Scan IE's */
#define MAX_DEFAULT_SCAN_IE_LEN 2048
/* Extended Capabilities IE header(IE Id + IE Length) length */
#define EXT_CAP_IE_HDR_LEN 2
/**
* struct hdd_default_scan_ie - HDD default scan IE structure
* @message_type: message type to be set with eWNI_SME_DEFAULT_SCAN_IE
* @length: length of the struct hdd_default_scan_ie
* @session_id: Session Id
* @ie_len: Default scan IE length
* @ie_data: Pointer to default scan IE data
*/
struct hdd_default_scan_ie {
uint16_t message_type;
uint16_t length;
uint16_t session_id;
uint16_t ie_len;
uint8_t ie_data[MAX_DEFAULT_SCAN_IE_LEN];
};
/**
* struct vdev_ie_info - IE info
* @vdev_id - vdev for which the IE is being sent
* @ie_id - ID of the IE
* @length - length of the IE data
* @band - indicates IE is intended for which band
* @data - IE data
*
* This structure is used to store the IE information.
*/
struct vdev_ie_info {
uint32_t vdev_id;
uint32_t ie_id;
uint32_t length;
uint32_t band;
uint8_t *data;
};
/**
* struct send_extcap_ie - used to pass send_extcap_ie msg from SME to PE
* @type - MSG type
* @length - length of the message
* @seesion_id - session_id for which the message is intended for
*
* This structure is used to pass send_extcap_ie msg from SME to PE
*/
struct send_extcap_ie {
uint16_t msg_type; /* eWNI_SME_SET_IE_REQ */
uint16_t length;
uint8_t session_id;
};
typedef void (*hw_mode_cb)(uint32_t status, uint32_t cfgd_hw_mode_index,
uint32_t num_vdev_mac_entries,
struct sir_vdev_mac_map *vdev_mac_map);
typedef void (*hw_mode_transition_cb)(uint32_t old_hw_mode_index,
uint32_t new_hw_mode_index,
uint32_t num_vdev_mac_entries,
struct sir_vdev_mac_map *vdev_mac_map);
typedef void (*antenna_mode_cb)(uint32_t status);
/**
* struct sir_nss_update_request
* @msgType: nss update msg type
* @msgLen: length of the msg
* @new_nss: new spatial stream value
* @vdev_id: session id
*/
struct sir_nss_update_request {
uint16_t msgType;
uint16_t msgLen;
uint8_t new_nss;
uint32_t vdev_id;
};
/**
* struct sir_beacon_tx_complete_rsp
*
* @session_id: session for which beacon update happened
* @tx_status: status of the beacon tx from FW
*/
struct sir_beacon_tx_complete_rsp {
uint8_t session_id;
uint8_t tx_status;
};
typedef void (*nss_update_cb)(void *context, uint8_t tx_status, uint8_t vdev_id,
uint8_t next_action, enum sir_conn_update_reason reason);
/**
* OCB structures
*/
#define NUM_AC (4)
#define OCB_CHANNEL_MAX (5)
struct sir_qos_params {
uint8_t aifsn;
uint8_t cwmin;
uint8_t cwmax;
};
/**
* struct sir_ocb_set_config_response
* @status: response status
*/
struct sir_ocb_set_config_response {
uint8_t status;
};
/** Callback for the dcc_stats_event */
typedef void (*dcc_stats_event_callback_t)(void *hdd_ctx, uint32_t vdev_id,
uint32_t num_channels, uint32_t stats_per_channel_array_len,
const void *stats_per_channel_array);
/**
* struct sir_ocb_config_channel
* @chan_freq: frequency of the channel
* @bandwidth: bandwidth of the channel, either 10 or 20 MHz
* @mac_address: MAC address assigned to this channel
* @qos_params: QoS parameters
* @max_pwr: maximum transmit power of the channel (dBm)
* @min_pwr: minimum transmit power of the channel (dBm)
* @reg_pwr: maximum transmit power specified by the regulatory domain (dBm)
* @antenna_max: maximum antenna gain specified by the regulatory domain (dB)
*/
struct sir_ocb_config_channel {
uint32_t chan_freq;
uint32_t bandwidth;
struct qdf_mac_addr mac_address;
struct sir_qos_params qos_params[MAX_NUM_AC];
uint32_t max_pwr;
uint32_t min_pwr;
uint8_t reg_pwr;
uint8_t antenna_max;
uint16_t flags;
};
/**
* OCB_CHANNEL_FLAG_NO_RX_HDR - Don't add the RX stats header to packets
* received on this channel.
*/
#define OCB_CHANNEL_FLAG_DISABLE_RX_STATS_HDR (1 << 0)
/**
* struct sir_ocb_config_sched
* @chan_freq: frequency of the channel
* @total_duration: duration of the schedule
* @guard_interval: guard interval on the start of the schedule
*/
struct sir_ocb_config_sched {
uint32_t chan_freq;
uint32_t total_duration;
uint32_t guard_interval;
};
/**
* struct sir_ocb_config
* @session_id: session id
* @channel_count: number of channels
* @schedule_size: size of the channel schedule
* @flags: reserved
* @channels: array of OCB channels
* @schedule: array of OCB schedule elements
* @dcc_ndl_chan_list_len: size of the ndl_chan array
* @dcc_ndl_chan_list: array of dcc channel info
* @dcc_ndl_active_state_list_len: size of the active state array
* @dcc_ndl_active_state_list: array of active states
* @def_tx_param: default TX parameters
* @def_tx_param_size: size of the default TX parameters
*/
struct sir_ocb_config {
uint8_t session_id;
uint32_t channel_count;
uint32_t schedule_size;
uint32_t flags;
struct sir_ocb_config_channel *channels;
struct sir_ocb_config_sched *schedule;
uint32_t dcc_ndl_chan_list_len;
void *dcc_ndl_chan_list;
uint32_t dcc_ndl_active_state_list_len;
void *dcc_ndl_active_state_list;
void *def_tx_param;
uint32_t def_tx_param_size;
};
/* The size of the utc time in bytes. */
#define SIZE_UTC_TIME (10)
/* The size of the utc time error in bytes. */
#define SIZE_UTC_TIME_ERROR (5)
/**
* struct sir_ocb_utc
* @vdev_id: session id
* @utc_time: number of nanoseconds from Jan 1st 1958
* @time_error: the error in the UTC time. All 1's for unknown
*/
struct sir_ocb_utc {
uint32_t vdev_id;
uint8_t utc_time[SIZE_UTC_TIME];
uint8_t time_error[SIZE_UTC_TIME_ERROR];
};
/**
* struct sir_ocb_timing_advert
* @vdev_id: session id
* @chan_freq: frequency on which to advertise
* @repeat_rate: the number of times it will send TA in 5 seconds
* @timestamp_offset: offset of the timestamp field in the TA frame
* @time_value_offset: offset of the time_value field in the TA frame
* @template_length: size in bytes of the TA frame
* @template_value: the TA frame
*/
struct sir_ocb_timing_advert {
uint32_t vdev_id;
uint32_t chan_freq;
uint32_t repeat_rate;
uint32_t timestamp_offset;
uint32_t time_value_offset;
uint32_t template_length;
uint8_t *template_value;
};
/**
* struct sir_ocb_get_tsf_timer_response
* @vdev_id: session id
* @timer_high: higher 32-bits of the timer
* @timer_low: lower 32-bits of the timer
*/
struct sir_ocb_get_tsf_timer_response {
uint32_t vdev_id;
uint32_t timer_high;
uint32_t timer_low;
};
/**
* struct sir_ocb_get_tsf_timer
* @vdev_id: session id
*/
struct sir_ocb_get_tsf_timer {
uint32_t vdev_id;
};
/**
* struct sir_dcc_get_stats_response
* @vdev_id: session id
* @num_channels: number of dcc channels
* @channel_stats_array_len: size in bytes of the stats array
* @channel_stats_array: the stats array
*/
struct sir_dcc_get_stats_response {
uint32_t vdev_id;
uint32_t num_channels;
uint32_t channel_stats_array_len;
void *channel_stats_array;
};
/**
* struct sir_dcc_get_stats
* @vdev_id: session id
* @channel_count: number of dcc channels
* @request_array_len: size in bytes of the request array
* @request_array: the request array
*/
struct sir_dcc_get_stats {
uint32_t vdev_id;
uint32_t channel_count;
uint32_t request_array_len;
void *request_array;
};
/**
* struct sir_dcc_clear_stats
* @vdev_id: session id
* @dcc_stats_bitmap: bitmap of clear option
*/
struct sir_dcc_clear_stats {
uint32_t vdev_id;
uint32_t dcc_stats_bitmap;
};
/**
* struct sir_dcc_update_ndl_response
* @vdev_id: session id
* @status: response status
*/
struct sir_dcc_update_ndl_response {
uint32_t vdev_id;
uint32_t status;
};
/**
* struct sir_dcc_update_ndl
* @vdev_id: session id
* @channel_count: number of channels to be updated
* @dcc_ndl_chan_list_len: size in bytes of the ndl_chan array
* @dcc_ndl_chan_list: the ndl_chan array
* @dcc_ndl_active_state_list_len: size in bytes of the active_state array
* @dcc_ndl_active_state_list: the active state array
*/
struct sir_dcc_update_ndl {
uint32_t vdev_id;
uint32_t channel_count;
uint32_t dcc_ndl_chan_list_len;
void *dcc_ndl_chan_list;
uint32_t dcc_ndl_active_state_list_len;
void *dcc_ndl_active_state_list;
};
/**
* enum powersave_qpower_mode: QPOWER modes
* @QPOWER_DISABLED: Qpower is disabled
* @QPOWER_ENABLED: Qpower is enabled
* @QPOWER_DUTY_CYCLING: Qpower is enabled with duty cycling
*/
enum powersave_qpower_mode {
QPOWER_DISABLED = 0,
QPOWER_ENABLED = 1,
QPOWER_DUTY_CYCLING = 2
};
/**
* enum powersave_qpower_mode: powersave_mode
* @PS_NOT_SUPPORTED: Power save is not supported
* @PS_LEGACY_NODEEPSLEEP: Legacy power save enabled and deep sleep disabled
* @PS_QPOWER_NODEEPSLEEP: QPOWER enabled and deep sleep disabled
* @PS_LEGACY_DEEPSLEEP: Legacy power save enabled and deep sleep enabled
* @PS_QPOWER_DEEPSLEEP: QPOWER enabled and deep sleep enabled
* @PS_DUTY_CYCLING_QPOWER: QPOWER enabled in duty cycling mode
*/
enum powersave_mode {
PS_NOT_SUPPORTED = 0,
PS_LEGACY_NODEEPSLEEP = 1,
PS_QPOWER_NODEEPSLEEP = 2,
PS_LEGACY_DEEPSLEEP = 3,
PS_QPOWER_DEEPSLEEP = 4,
PS_DUTY_CYCLING_QPOWER = 5
};
#ifdef FEATURE_LFR_SUBNET_DETECTION
/**
* struct gateway_param_update_req - gateway parameter update request
* @request_id: request id
* @session_id: session id
* @max_retries: Max ARP/NS retry attempts
* @timeout: Retry interval
* @ipv4_addr_type: on ipv4 network
* @ipv6_addr_type: on ipv6 network
* @gw_mac_addr: gateway mac addr
* @ipv4_addr: ipv4 addr
* @ipv6_addr: ipv6 addr
*/
struct gateway_param_update_req {
uint32_t request_id;
uint32_t session_id;
uint32_t max_retries;
uint32_t timeout;
uint32_t ipv4_addr_type;
uint32_t ipv6_addr_type;
struct qdf_mac_addr gw_mac_addr;
uint8_t ipv4_addr[QDF_IPV4_ADDR_SIZE];
uint8_t ipv6_addr[QDF_IPV6_ADDR_SIZE];
};
#else
struct gateway_param_update_req;
#endif /* FEATURE_LFR_SUBNET_DETECTION */
/**
* struct sir_sme_ext_change_chan_req - channel change request
* @message_type: message id
* @length: msg length
* @new_channel: new channel
* @session_id: session id
*/
struct sir_sme_ext_cng_chan_req {
uint16_t message_type; /* eWNI_SME_EXT_CHANGE_CHANNEL */
uint16_t length;
uint32_t new_channel;
uint8_t session_id;
};
/**
* struct sir_sme_ext_change_chan_ind.
* @session_id: session id
* @new_channel: new channel to change
*/
struct sir_sme_ext_cng_chan_ind {
uint8_t session_id;
uint8_t new_channel;
};
/**
* struct stsf - the basic stsf structure
*
* @vdev_id: vdev id
* @tsf_low: low 32bits of tsf
* @tsf_high: high 32bits of tsf
* @soc_timer_low: low 32bits of synced SOC timer value
* @soc_timer_high: high 32bits of synced SOC timer value
*
* driver use this struct to store the tsf info
*/
struct stsf {
uint32_t vdev_id;
uint32_t tsf_low;
uint32_t tsf_high;
uint32_t soc_timer_low;
uint32_t soc_timer_high;
};
/**
* struct egap_params - the enhanced green ap params
* @vdev_id: vdev id
* @enable: enable or disable the enhance green ap in firmware
* @inactivity_time: inactivity timeout value
* @wait_time: wait timeout value
* @flags: feature flag in bitmask
*
*/
struct egap_conf_params {
uint32_t vdev_id;
bool enable;
uint32_t inactivity_time;
uint32_t wait_time;
uint32_t flags;
};
#define SIR_BCN_FLT_MAX_ELEMS_IE_LIST 8
/**
* struct beacon_filter_param - parameters for beacon filtering
* @vdev_id: vdev id
* @ie_map: bitwise map of IEs that needs to be filtered
*
*/
struct beacon_filter_param {
uint32_t vdev_id;
uint32_t ie_map[SIR_BCN_FLT_MAX_ELEMS_IE_LIST];
};
/**
* struct adaptive_dwelltime_params - the adaptive dwelltime params
* @vdev_id: vdev id
* @is_enabled: Adaptive dwell time is enabled/disabled
* @dwelltime_mode: global default adaptive dwell mode
* @lpf_weight: weight to calculate the average low pass
* filter for channel congestion
* @passive_mon_intval: intval to monitor wifi activity in passive scan in msec
* @wifi_act_threshold: % of wifi activity used in passive scan 0-100
*
*/
struct adaptive_dwelltime_params {
uint32_t vdev_id;
bool is_enabled;
uint8_t dwelltime_mode;
uint8_t lpf_weight;
uint8_t passive_mon_intval;
uint8_t wifi_act_threshold;
};
/**
* struct csa_offload_params - CSA offload request parameters
* @channel: channel
* @switch_mode: switch mode
* @sec_chan_offset: second channel offset
* @new_ch_width: new channel width
* @new_ch_freq_seg1: channel center freq 1
* @new_ch_freq_seg2: channel center freq 2
* @ies_present_flag: IE present flag
*/
struct csa_offload_params {
uint8_t channel;
uint8_t switch_mode;
uint8_t sec_chan_offset;
uint8_t new_ch_width;
uint8_t new_op_class;
uint8_t new_ch_freq_seg1;
uint8_t new_ch_freq_seg2;
uint32_t ies_present_flag;
tSirMacAddr bssId;
};
/**
* enum obss_ht40_scancmd_type - obss scan command type
* @HT40_OBSS_SCAN_PARAM_START: OBSS scan start
* @HT40_OBSS_SCAN_PARAM_UPDATE: OBSS scan param update
*/
enum obss_ht40_scancmd_type {
HT40_OBSS_SCAN_PARAM_START,
HT40_OBSS_SCAN_PARAM_UPDATE
};
/**
* struct sme_obss_ht40_scanind_msg - sme obss scan params
* @msg_type: message type
* @length: message length
* @mac_addr: mac address
*/
struct sme_obss_ht40_scanind_msg {
uint16_t msg_type;
uint16_t length;
struct qdf_mac_addr mac_addr;
};
/**
* struct obss_ht40_scanind - ht40 obss scan request
* @cmd: message type
* @scan_type: message length
* @obss_passive_dwelltime: obss passive dwelltime
* @obss_active_dwelltime: obss active dwelltime
* @obss_width_trigger_interval: scan interval
* @obss_passive_total_per_channel: total passive scan time per channel
* @obss_active_total_per_channel: total active scan time per channel
* @bsswidth_ch_trans_delay: OBSS transition delay time
* @obss_activity_threshold: OBSS activity threshold
* @self_sta_id: self sta identification
* @bss_id: BSS index
* @fortymhz_intolerent: Ht40mhz intolerance
* @channel_count: channel count
* @channels: channel information
* @current_operatingclass: operating class
* @iefield_len: ie's length
* @iefiled: ie's information
*/
struct obss_ht40_scanind {
enum obss_ht40_scancmd_type cmd;
enum eSirScanType scan_type;
/* In TUs */
uint16_t obss_passive_dwelltime;
uint16_t obss_active_dwelltime;
/* In seconds */
uint16_t obss_width_trigger_interval;
/* In TU's */
uint16_t obss_passive_total_per_channel;
uint16_t obss_active_total_per_channel;
uint16_t bsswidth_ch_trans_delay;
uint16_t obss_activity_threshold;
uint8_t self_sta_idx;
uint8_t bss_id;
uint8_t fortymhz_intolerent;
uint8_t channel_count;
uint8_t channels[SIR_ROAM_MAX_CHANNELS];
uint8_t current_operatingclass;
uint16_t iefield_len;
uint8_t iefield[SIR_ROAM_SCAN_MAX_PB_REQ_SIZE];
};
/**
* struct obss_scanparam - OBSS scan parameters
* @obss_passive_dwelltime: message type
* @obss_active_dwelltime: message length
* @obss_width_trigger_interval: obss passive dwelltime
* @obss_passive_total_per_channel: obss passive total scan time
* @obss_active_total_per_channel: obss active total scan time
* @bsswidth_ch_trans_delay: OBSS transition delay time
* @obss_activity_threshold: OBSS activity threshold
*/
struct obss_scanparam {
uint16_t obss_passive_dwelltime;
uint16_t obss_active_dwelltime;
uint16_t obss_width_trigger_interval;
uint16_t obss_passive_total_per_channel;
uint16_t obss_active_total_per_channel;
uint16_t bsswidth_ch_trans_delay;
uint16_t obss_activity_threshold;
};
/**
* struct sir_apf_set_offload - set apf filter instructions
* @session_id: session identifier
* @version: host apf version
* @filter_id: Filter ID for APF filter
* @total_length: The total length of the full instruction
* total_length equal to 0 means reset
* @current_offset: current offset, 0 means start a new setting
* @current_length: Length of current @program
* @program: APF instructions
*/
struct sir_apf_set_offload {
uint8_t session_id;
uint32_t version;
uint32_t filter_id;
uint32_t total_length;
uint32_t current_offset;
uint32_t current_length;
uint8_t *program;
};
/**
* struct sir_apf_offload_capabilities - get apf Capabilities
* @apf_version: fw's implement version
* @max_apf_filters: max filters that fw supports
* @max_bytes_for_apf_inst: the max bytes that can be used as apf instructions
* @remaining_bytes_for_apf_inst: remaining bytes for apf instructions
*
*/
struct sir_apf_get_offload {
uint32_t apf_version;
uint32_t max_apf_filters;
uint32_t max_bytes_for_apf_inst;
uint32_t remaining_bytes_for_apf_inst;
};
/**
* struct sir_wake_lock_stats - wake lock stats structure
* @wow_unspecified_wake_up_count: number of non-wow related wake ups
* @wow_ucast_wake_up_count: Unicast wakeup count
* @wow_bcast_wake_up_count: Broadcast wakeup count
* @wow_ipv4_mcast_wake_up_count: ipv4 multicast wakeup count
* @wow_ipv6_mcast_wake_up_count: ipv6 multicast wakeup count
* @wow_ipv6_mcast_ra_stats: ipv6 multicast ra stats
* @wow_ipv6_mcast_ns_stats: ipv6 multicast ns stats
* @wow_ipv6_mcast_na_stats: ipv6 multicast na stats
* @wow_icmpv4_count: ipv4 icmp packet count
* @wow_icmpv6_count: ipv6 icmp packet count
* @wow_rssi_breach_wake_up_count: rssi breach wakeup count
* @wow_low_rssi_wake_up_count: low rssi wakeup count
* @wow_gscan_wake_up_count: gscan wakeup count
* @wow_pno_complete_wake_up_count: pno complete wakeup count
* @wow_pno_match_wake_up_count: pno match wakeup count
* @wow_oem_response_wake_up_count: oem response wakeup count
*/
struct sir_wake_lock_stats {
uint32_t wow_unspecified_wake_up_count;
uint32_t wow_ucast_wake_up_count;
uint32_t wow_bcast_wake_up_count;
uint32_t wow_ipv4_mcast_wake_up_count;
uint32_t wow_ipv6_mcast_wake_up_count;
uint32_t wow_ipv6_mcast_ra_stats;
uint32_t wow_ipv6_mcast_ns_stats;
uint32_t wow_ipv6_mcast_na_stats;
uint32_t wow_icmpv4_count;
uint32_t wow_icmpv6_count;
uint32_t wow_rssi_breach_wake_up_count;
uint32_t wow_low_rssi_wake_up_count;
uint32_t wow_gscan_wake_up_count;
uint32_t wow_pno_complete_wake_up_count;
uint32_t wow_pno_match_wake_up_count;
uint32_t wow_oem_response_wake_up_count;
};
/**
* struct sir_vdev_wow_stats - container for per vdev wow related stat counters
* @ucast: Unicast wakeup count
* @bcast: Broadcast wakeup count
* @ipv4_mcast: ipv4 multicast wakeup count
* @ipv6_mcast: ipv6 multicast wakeup count
* @ipv6_mcast_ra: ipv6 multicast ra stats
* @ipv6_mcast_ns: ipv6 multicast ns stats
* @ipv6_mcast_na: ipv6 multicast na stats
* @icmpv4: ipv4 icmp packet count
* @icmpv6: ipv6 icmp packet count
* @rssi_breach: rssi breach wakeup count
* @low_rssi: low rssi wakeup count
* @gscan: gscan wakeup count
* @pno_complete: pno complete wakeup count
* @pno_match: pno match wakeup count
* @oem_response: oem response wakeup count
* @pwr_save_fail_detected: pwr save fail detected wakeup count
*/
struct sir_vdev_wow_stats {
uint32_t ucast;
uint32_t bcast;
uint32_t ipv4_mcast;
uint32_t ipv6_mcast;
uint32_t ipv6_mcast_ra;
uint32_t ipv6_mcast_ns;
uint32_t ipv6_mcast_na;
uint32_t icmpv4;
uint32_t icmpv6;
uint32_t rssi_breach;
uint32_t low_rssi;
uint32_t gscan;
uint32_t pno_complete;
uint32_t pno_match;
uint32_t oem_response;
uint32_t pwr_save_fail_detected;
};
/**
* enum ht_capability_fields - HT Capabilities bit fields
* @HT_CAPS_LDPC: ldpc coding capability bit field
* @HT_CAPS_SUPPORTED_CHANNEL_SET: channel width set bit field
* @HT_CAPS_SM_PWR_SAVE: SM power save bit field
* @HT_CAPS_GREENFIELD: greenfield capability bit field
* @HT_CAPS_SHORT_GI20: short GI 20 bit field
* @HT_CAPS_SHORT_GI40: short GI 40 bit field
* @HT_CAPS_TX_STBC: Tx STBC bit field
* @HT_CAPS_RX_STBC: Rx STBC bit fields
*/
enum ht_capability_fields {
HT_CAPS_LDPC = 0x0001,
HT_CAPS_SUPPORTED_CHANNEL_SET = 0x0002,
HT_CAPS_SM_PWR_SAVE = 0x000c,
HT_CAPS_GREENFIELD = 0x0010,
HT_CAPS_SHORT_GI20 = 0x0020,
HT_CAPS_SHORT_GI40 = 0x0040,
HT_CAPS_TX_STBC = 0x0080,
HT_CAPS_RX_STBC = 0x0300
};
#ifdef WLAN_FEATURE_NAN_DATAPATH
#define IFACE_NAME_SIZE 64
/**
* enum ndp_accept_policy - nan data path accept policy
* @NDP_ACCEPT_POLICY_NONE: the framework will decide the policy
* @NDP_ACCEPT_POLICY_ALL: accept policy offloaded to fw
*
*/
enum ndp_accept_policy {
NDP_ACCEPT_POLICY_NONE = 0,
NDP_ACCEPT_POLICY_ALL = 1,
};
/**
* enum ndp_self_role - nan data path role
* @NDP_ROLE_INITIATOR: initiator of nan data path request
* @NDP_ROLE_RESPONDER: responder to nan data path request
*
*/
enum ndp_self_role {
NDP_ROLE_INITIATOR = 0,
NDP_ROLE_RESPONDER = 1,
};
/**
* enum ndp_response_code - responder's response code to nan data path request
* @NDP_RESPONSE_ACCEPT: ndp request accepted
* @NDP_RESPONSE_REJECT: ndp request rejected
* @NDP_RESPONSE_DEFER: ndp request deferred until later (response to follow
* any time later)
*
*/
enum ndp_response_code {
NDP_RESPONSE_ACCEPT = 0,
NDP_RESPONSE_REJECT = 1,
NDP_RESPONSE_DEFER = 2,
};
/**
* enum ndp_end_type - NDP end type
* @NDP_END_TYPE_UNSPECIFIED: type is unspecified
* @NDP_END_TYPE_PEER_UNAVAILABLE: type is peer unavailable
* @NDP_END_TYPE_OTA_FRAME: NDP end frame received from peer
*
*/
enum ndp_end_type {
NDP_END_TYPE_UNSPECIFIED = 0x00,
NDP_END_TYPE_PEER_UNAVAILABLE = 0x01,
NDP_END_TYPE_OTA_FRAME = 0x02,
};
/**
* enum ndp_end_reason_code - NDP end reason code
* @NDP_END_REASON_UNSPECIFIED: reason is unspecified
* @NDP_END_REASON_INACTIVITY: reason is peer inactivity
* @NDP_END_REASON_PEER_DATA_END: data end indication received from peer
*
*/
enum ndp_end_reason_code {
NDP_END_REASON_UNSPECIFIED = 0x00,
NDP_END_REASON_INACTIVITY = 0x01,
NDP_END_REASON_PEER_DATA_END = 0x02,
};
/**
* enum nan_status_type - NDP status type
* @NDP_RSP_STATUS_SUCCESS: request was successful
* @NDP_RSP_STATUS_ERROR: request failed
*/
enum nan_status_type {
NDP_RSP_STATUS_SUCCESS = 0x00,
NDP_RSP_STATUS_ERROR = 0x01,
};
/**
* enum nan_reason_code - NDP command rsp reason code value
* @NDP_UNSUPPORTED_CONCURRENCY: Will be used in unsupported concurrency cases
* @NDP_NAN_DATA_IFACE_CREATE_FAILED: ndi create failed
* @NDP_NAN_DATA_IFACE_DELETE_FAILED: ndi delete failed
* @NDP_DATA_INITIATOR_REQ_FAILED: data initiator request failed
* @NDP_DATA_RESPONDER_REQ_FAILED: data responder request failed
* @NDP_INVALID_SERVICE_INSTANCE_ID: invalid service instance id
* @NDP_INVALID_NDP_INSTANCE_ID: invalid ndp instance id
* @NDP_INVALID_RSP_CODE: invalid response code in ndp responder request
* @NDP_INVALID_APP_INFO_LEN: invalid app info length
* @NDP_NMF_REQ_FAIL: OTA nan mgmt frame failure for data request
* @NDP_NMF_RSP_FAIL: OTA nan mgmt frame failure for data response
* @NDP_NMF_CNF_FAIL: OTA nan mgmt frame failure for confirm
* @NDP_END_FAILED: ndp end failed
* @NDP_NMF_END_REQ_FAIL: OTA nan mgmt frame failure for data end
* @NDP_VENDOR_SPECIFIC_ERROR: other vendor specific failures
*/
enum nan_reason_code {
NDP_UNSUPPORTED_CONCURRENCY = 9000,
NDP_NAN_DATA_IFACE_CREATE_FAILED = 9001,
NDP_NAN_DATA_IFACE_DELETE_FAILED = 9002,
NDP_DATA_INITIATOR_REQ_FAILED = 9003,
NDP_DATA_RESPONDER_REQ_FAILED = 9004,
NDP_INVALID_SERVICE_INSTANCE_ID = 9005,
NDP_INVALID_NDP_INSTANCE_ID = 9006,
NDP_INVALID_RSP_CODE = 9007,
NDP_INVALID_APP_INFO_LEN = 9008,
NDP_NMF_REQ_FAIL = 9009,
NDP_NMF_RSP_FAIL = 9010,
NDP_NMF_CNF_FAIL = 9011,
NDP_END_FAILED = 9012,
NDP_NMF_END_REQ_FAIL = 9013,
/* 9500 onwards vendor specific error codes */
NDP_VENDOR_SPECIFIC_ERROR = 9500,
};
/**
* struct ndp_cfg - ndp configuration
* @tag: unique identifier
* @ndp_cfg_len: ndp configuration length
* @ndp_cfg: variable length ndp configuration
*
*/
struct ndp_cfg {
uint32_t tag;
uint32_t ndp_cfg_len;
uint8_t *ndp_cfg;
};
/**
* struct ndp_qos_cfg - ndp qos configuration
* @tag: unique identifier
* @ndp_qos_cfg_len: ndp qos configuration length
* @ndp_qos_cfg: variable length ndp qos configuration
*
*/
struct ndp_qos_cfg {
uint32_t tag;
uint32_t ndp_qos_cfg_len;
uint8_t ndp_qos_cfg[];
};
/**
* struct ndp_app_info - application info shared during ndp setup
* @tag: unique identifier
* @ndp_app_info_len: ndp app info length
* @ndp_app_info: variable length application information
*
*/
struct ndp_app_info {
uint32_t tag;
uint32_t ndp_app_info_len;
uint8_t *ndp_app_info;
};
/**
* struct ndp_scid - structure to hold sceurity context identifier
* @scid_len: length of scid
* @scid: scid
*
*/
struct ndp_scid {
uint32_t scid_len;
uint8_t *scid;
};
/**
* struct ndp_pmk - structure to hold pairwise master key
* @pmk_len: length of pairwise master key
* @pmk: buffer containing pairwise master key
*
*/
struct ndp_pmk {
uint32_t pmk_len;
uint8_t *pmk;
};
/**
* struct ndp_passphrase - structure to hold passphrase
* @passphrase_len: length of passphrase
* @passphrase: buffer containing passphrase
*
*/
struct ndp_passphrase {
uint32_t passphrase_len;
uint8_t *passphrase;
};
/**
* struct ndp_service_name - structure to hold service_name
* @service_name_len: length of service_name
* @service_name: buffer containing service_name
*
*/
struct ndp_service_name {
uint32_t service_name_len;
uint8_t *service_name;
};
/**
* struct ndi_create_req - ndi create request params
* @transaction_id: unique identifier
* @iface_name: interface name
*
*/
struct ndi_create_req {
uint32_t transaction_id;
char iface_name[IFACE_NAME_SIZE];
};
/**
* struct ndi_create_rsp - ndi create response params
* @status: request status
* @reason: reason if any
*
*/
struct ndi_create_rsp {
uint32_t status;
uint32_t reason;
uint8_t sta_id;
};
/**
* struct ndi_delete_rsp - ndi delete response params
* @status: request status
* @reason: reason if any
*
*/
struct ndi_delete_rsp {
uint32_t status;
uint32_t reason;
};
/**
* struct ndp_initiator_req - ndp initiator request params
* @transaction_id: unique identifier
* @vdev_id: session id of the interface over which ndp is being created
* @channel: suggested channel for ndp creation
* @channel_cfg: channel config, 0=no channel, 1=optional, 2=mandatory
* @service_instance_id: Service identifier
* @peer_discovery_mac_addr: Peer's discovery mac address
* @self_ndi_mac_addr: self NDI mac address
* @ndp_config: ndp configuration params
* @ndp_info: ndp application info
* @ncs_sk_type: indicates NCS_SK_128 or NCS_SK_256
* @pmk: pairwise master key
*
*/
struct ndp_initiator_req {
uint32_t transaction_id;
uint32_t vdev_id;
uint32_t channel;
uint32_t channel_cfg;
uint32_t service_instance_id;
struct qdf_mac_addr peer_discovery_mac_addr;
struct qdf_mac_addr self_ndi_mac_addr;
struct ndp_cfg ndp_config;
struct ndp_app_info ndp_info;
uint32_t ncs_sk_type;
struct ndp_pmk pmk;
struct ndp_passphrase passphrase;
struct ndp_service_name service_name;
};
/**
* struct ndp_initiator_rsp - response event from FW
* @transaction_id: unique identifier
* @vdev_id: session id of the interface over which ndp is being created
* @ndp_instance_id: locally created NDP instance ID
* @status: status of the ndp request
* @reason: reason for failure if any
*
*/
struct ndp_initiator_rsp {
uint32_t transaction_id;
uint32_t vdev_id;
uint32_t ndp_instance_id;
uint32_t status;
uint32_t reason;
};
/**
* struct ndp_indication_event - create ndp indication on the responder
* @vdev_id: session id of the interface over which ndp is being created
* @service_instance_id: Service identifier
* @peer_discovery_mac_addr: Peer's discovery mac address
* @peer_mac_addr: Peer's NDI mac address
* @ndp_initiator_mac_addr: NDI mac address of the peer initiating NDP
* @ndp_instance_id: locally created NDP instance ID
* @role: self role for NDP
* @ndp_accept_policy: accept policy configured by the upper layer
* @ndp_config: ndp configuration params
* @ndp_info: ndp application info
* @ncs_sk_type: indicates NCS_SK_128 or NCS_SK_256
* @scid: security context identifier
*
*/
struct ndp_indication_event {
uint32_t vdev_id;
uint32_t service_instance_id;
struct qdf_mac_addr peer_discovery_mac_addr;
struct qdf_mac_addr peer_mac_addr;
uint32_t ndp_instance_id;
enum ndp_self_role role;
enum ndp_accept_policy policy;
struct ndp_cfg ndp_config;
struct ndp_app_info ndp_info;
uint32_t ncs_sk_type;
struct ndp_scid scid;
};
/**
* struct ndp_responder_req - responder's response to ndp create request
* @transaction_id: unique identifier
* @vdev_id: session id of the interface over which ndp is being created
* @ndp_instance_id: locally created NDP instance ID
* @ndp_rsp: response to the ndp create request
* @ndp_config: ndp configuration params
* @ndp_info: ndp application info
* @pmk: pairwise master key
* @ncs_sk_type: indicates NCS_SK_128 or NCS_SK_256
*
*/
struct ndp_responder_req {
uint32_t transaction_id;
uint32_t vdev_id;
uint32_t ndp_instance_id;
enum ndp_response_code ndp_rsp;
struct ndp_cfg ndp_config;
struct ndp_app_info ndp_info;
struct ndp_pmk pmk;
uint32_t ncs_sk_type;
struct ndp_passphrase passphrase;
struct ndp_service_name service_name;
};
/**
* struct ndp_responder_rsp_event - response to responder's request
* @transaction_id: unique identifier
* @vdev_id: session id of the interface over which ndp is being created
* @status: command status
* @reason: reason for failure if any
* @peer_mac_addr: Peer's mac address
*
*/
struct ndp_responder_rsp_event {
uint32_t transaction_id;
uint32_t vdev_id;
uint32_t status;
uint32_t reason;
struct qdf_mac_addr peer_mac_addr;
bool create_peer;
};
/**
* struct ndp_channel_info - ndp channel and channel bandwidth
* @channel: channel freq in mhz of the ndp connection
* @ch_width: channel width (wmi_channel_width) of the ndp connection
* @nss: nss used for ndp connection
*
*/
struct ndp_channel_info {
uint32_t channel;
uint32_t ch_width;
uint32_t nss;
};
/**
* struct ndp_confirm_event - ndp confirmation event from FW
* @vdev_id: session id of the interface over which ndp is being created
* @ndp_instance_id: ndp instance id for which confirm is being generated
* @reason_code : reason code(opaque to driver)
* @num_active_ndps_on_peer: number of ndp instances on peer
* @peer_ndi_mac_addr: peer NDI mac address
* @rsp_code: ndp response code
* @num_channels: num channels
* @ch: channel info struct array
* @ndp_info: ndp application info
*
*/
struct ndp_confirm_event {
uint32_t vdev_id;
uint32_t ndp_instance_id;
uint32_t reason_code;
uint32_t num_active_ndps_on_peer;
struct qdf_mac_addr peer_ndi_mac_addr;
enum ndp_response_code rsp_code;
uint32_t num_channels;
struct ndp_channel_info ch[SIR_NAN_CH_INFO_MAX_CHANNELS];
struct ndp_app_info ndp_info;
};
/**
* struct ndp_end_req - ndp end request
* @transaction_id: unique transaction identifier
* @num_ndp_instances: number of ndp instances to be terminated
* @ndp_ids: pointer to array of ndp_instance_id to be terminated
*
*/
struct ndp_end_req {
uint32_t transaction_id;
uint32_t num_ndp_instances;
uint32_t *ndp_ids;
};
/**
* struct peer_ndp_map - mapping of NDP instances to peer to VDEV
* @vdev_id: session id of the interface over which ndp is being created
* @peer_ndi_mac_addr: peer NDI mac address
* @num_active_ndp_sessions: number of active NDP sessions on the peer
* @type: NDP end indication type
* @reason_code: NDP end indication reason code
* @ndp_instance_id: NDP instance ID
*
*/
struct peer_ndp_map {
uint32_t vdev_id;
struct qdf_mac_addr peer_ndi_mac_addr;
uint32_t num_active_ndp_sessions;
enum ndp_end_type type;
enum ndp_end_reason_code reason_code;
uint32_t ndp_instance_id;
};
/**
* struct ndp_end_rsp_event - firmware response to ndp end request
* @transaction_id: unique identifier for the request
* @status: status of operation
* @reason: reason(opaque to host driver)
*
*/
struct ndp_end_rsp_event {
uint32_t transaction_id;
uint32_t status;
uint32_t reason;
};
/**
* struct ndp_end_indication_event - ndp termination notification from FW
* @num_ndp_ids: number of NDP ids
* @ndp_map: mapping of NDP instances to peer and vdev
*
*/
struct ndp_end_indication_event {
uint32_t num_ndp_ids;
struct peer_ndp_map ndp_map[];
};
/**
* struct ndp_schedule_update_req - ndp schedule update request
* @transaction_id: unique identifier
* @vdev_id: session id of the interface over which ndp is being created
* @ndp_instance_id: ndp instance id for which schedule update is requested
* @ndp_qos: new set of qos parameters
*
*/
struct ndp_schedule_update_req {
uint32_t transaction_id;
uint32_t vdev_id;
uint32_t ndp_instance_id;
struct ndp_qos_cfg ndp_qos;
};
/**
* struct ndp_schedule_update_rsp - ndp schedule update response
* @transaction_id: unique identifier
* @vdev_id: session id of the interface over which ndp is being created
* @status: status of the request
* @reason: reason code for failure if any
*
*/
struct ndp_schedule_update_rsp {
uint32_t transaction_id;
uint32_t vdev_id;
uint32_t status;
uint32_t reason;
};
/**
* struct ndp_sch_update_event - ndp schedule update indication
* @vdev_id: vdev id on which ndp schedule update was received
* @peer_addr: peer for which schedule update was received
* @flags: reason for sch update
* @num_channels: num of channels
* @num_ndp_instances: num of ndp instances
* @ch: channel info array
* @ndp_instances: array of ndp instances
*
*/
struct ndp_sch_update_event {
uint32_t vdev_id;
struct qdf_mac_addr peer_addr;
uint32_t flags;
uint32_t num_channels;
uint32_t num_ndp_instances;
struct ndp_channel_info ch[SIR_NAN_CH_INFO_MAX_CHANNELS];
uint32_t *ndp_instances;
};
/**
* struct sme_ndp_peer_ind - ndp peer indication
* @msg_type: message id
* @msg_len: message length
* @session_id: session id
* @peer_mac_addr: peer mac address
* @sta_id: station id
*
*/
struct sme_ndp_peer_ind {
uint16_t msg_type;
uint16_t msg_len;
uint8_t session_id;
struct qdf_mac_addr peer_mac_addr;
uint16_t sta_id;
};
#endif /* WLAN_FEATURE_NAN_DATAPATH */
/**
* struct sir_set_tx_rx_aggregation_size - sets tx rx aggregation size
* @vdev_id: vdev id of the session
* @tx_aggregation_size: Tx aggregation size
* @rx_aggregation_size: Rx aggregation size
*/
struct sir_set_tx_rx_aggregation_size {
uint8_t vdev_id;
uint32_t tx_aggregation_size;
uint32_t rx_aggregation_size;
};
/**
* struct sir_p2p_lo_start - p2p listen offload start
* @vdev_id: vdev identifier
* @ctl_flags: control flag
* @freq: p2p listen frequency
* @period: listen offload period
* @interval: listen offload interval
* @count: number listen offload intervals
* @device_types: device types
* @dev_types_len: device types length
* @probe_resp_tmplt: probe response template
* @probe_resp_len: probe response template length
*/
struct sir_p2p_lo_start {
uint32_t vdev_id;
uint32_t ctl_flags;
uint32_t freq;
uint32_t period;
uint32_t interval;
uint32_t count;
uint8_t *device_types;
uint32_t dev_types_len;
uint8_t *probe_resp_tmplt;
uint32_t probe_resp_len;
};
/**
* struct sir_p2p_lo_event - P2P listen offload stop event
* @vdev_id: vdev identifier
* @reason_code: P2P listen offload stop reason
*/
struct sir_p2p_lo_event {
uint32_t vdev_id;
uint32_t reason_code;
};
/**
* struct sir_hal_pwr_dbg_cmd - unit test command parameters
* @pdev_id: pdev id
* @module_id: module id
* @num_args: number of arguments
* @args: arguments
*/
struct sir_mac_pwr_dbg_cmd {
uint32_t pdev_id;
uint32_t module_id;
uint32_t num_args;
uint32_t args[MAX_POWER_DBG_ARGS_SUPPORTED];
};
/**
* struct sme_send_disassoc_frm_req - send disassoc request frame
* @msg_type: message type
* @length: length of message
* @session_id: session id
* @trans_id: transaction id
* @peer_mac: peer mac address
* @reason: reason for disassoc
* @wait_for_ack: wait for acknowledgment
**/
struct sme_send_disassoc_frm_req {
uint16_t msg_type;
uint16_t length;
uint8_t session_id;
uint16_t trans_id;
uint8_t peer_mac[6];
uint16_t reason;
uint8_t wait_for_ack;
};
/**
* struct sme_update_access_policy_vendor_ie - update vendor ie and access
* policy
* @msg_type: message id
* @msg_len: message length
* @sme_session_id: sme session id
* @ie: vendor ie
* @access_policy: access policy for vendor ie
*/
struct sme_update_access_policy_vendor_ie {
uint16_t msg_type;
uint16_t length;
uint32_t sme_session_id;
uint8_t ie[SIR_MAC_MAX_IE_LENGTH];
uint8_t access_policy;
};
/**
* struct sir_encrypt_decrypt_rsp_params - encrypt/decrypt rsp params
* @vdev_id: vdev id
* @status: status
* @data_length: data length
* @data: data pointer
*/
struct sir_encrypt_decrypt_rsp_params {
uint32_t vdev_id;
int32_t status;
uint32_t data_length;
uint8_t *data;
};
/**
* struct sme_tx_fail_cnt_threshold - tx failure count for disconnect to fw
* @session_id: Session id
* @tx_fail_cnt_threshold: Tx failure count to do disconnect
*/
struct sme_tx_fail_cnt_threshold {
uint8_t session_id;
uint32_t tx_fail_cnt_threshold;
};
/**
* struct sme_short_retry_limit - transmission retry limit for short frames.
* @session_id: Session id
* @short_retry_limit: tranmission retry limit for short frame.
*
*/
struct sme_short_retry_limit {
uint8_t session_id;
uint32_t short_retry_limit;
};
/**
* struct sme_long_retry_limit - tranmission retry limit for long frames
* @session_id: Session id
* @short_retry_limit: tranmission retry limit for long frames.
*
*/
struct sme_long_retry_limit {
uint8_t session_id;
uint32_t long_retry_limit;
};
/**
* struct sme_sta_inactivity_timeout - set sta_inactivity_timeout
* @session_id: session Id.
* @sta_inactivity_timeout: Timeout to disconnect STA after there
* is no activity.
*/
struct sme_sta_inactivity_timeout {
uint8_t session_id;
uint32_t sta_inactivity_timeout;
};
/*
* struct wow_pulse_mode - WoW Pulse set cmd struct
* @wow_pulse_enable: enable or disable this feature
* @wow_pulse_pin: GPIO PIN for Pulse
* @wow_pulse_interval_low: Pulse interval low
* @wow_pulse_interval_high: Pulse interval high
*
* SME uses this structure to configure wow pulse info
* and send it to WMA
*/
struct wow_pulse_mode {
bool wow_pulse_enable;
uint8_t wow_pulse_pin;
uint16_t wow_pulse_interval_high;
uint16_t wow_pulse_interval_low;
};
/*
* struct udp_resp_offload - the basic info structure
* @vdev_id: vdev id
* @dest_port: specific UDP dest port
* @udp_payload_filter: specific UDP payload filter
* @udp_response_payload: response UDP oayload
*
* driver use this structure to configure fw specific
* udp offload filter and response udp info
*/
struct udp_resp_offload {
uint32_t vdev_id;
uint32_t enable;
uint32_t dest_port;
char udp_payload_filter[MAX_LEN_UDP_RESP_OFFLOAD];
char udp_response_payload[MAX_LEN_UDP_RESP_OFFLOAD];
};
typedef void (*sme_rcpi_callback)(void *context, struct qdf_mac_addr mac_addr,
int32_t rcpi, QDF_STATUS status);
/**
* struct sme_rcpi_req - structure for querying rcpi info
* @session_id: session for which rcpi is required
* @measurement_type: type of measurement from enum rcpi_measurement_type
* @rcpi_callback: callback function to be invoked for rcpi response
* @rcpi_context: context info for rcpi callback
* @mac_addr: peer addr for which rcpi is required
*/
struct sme_rcpi_req {
uint32_t session_id;
enum rcpi_measurement_type measurement_type;
sme_rcpi_callback rcpi_callback;
void *rcpi_context;
struct qdf_mac_addr mac_addr;
};
/**
* struct rsp_stats - arp packet stats
* @arp_req_enqueue: fw tx count
* @arp_req_tx_success: tx ack count
* @arp_req_tx_failure: tx ack fail count
* @arp_rsp_recvd: rx fw count
* @out_of_order_arp_rsp_drop_cnt: out of order count
* @dad_detected: dad detected
* @connect_status: connection status
* @ba_session_establishment_status: BA session status
* @connect_stats_present: connectivity stats present or not
* @tcp_ack_recvd: tcp syn ack's count
* @icmpv4_rsp_recvd: icmpv4 responses count
*/
struct rsp_stats {
uint32_t vdev_id;
uint32_t arp_req_enqueue;
uint32_t arp_req_tx_success;
uint32_t arp_req_tx_failure;
uint32_t arp_rsp_recvd;
uint32_t out_of_order_arp_rsp_drop_cnt;
uint32_t dad_detected;
uint32_t connect_status;
uint32_t ba_session_establishment_status;
bool connect_stats_present;
uint32_t tcp_ack_recvd;
uint32_t icmpv4_rsp_recvd;
};
/**
* struct set_arp_stats_params - set/reset arp stats
* @vdev_id: session id
* @flag: enable/disable stats
* @pkt_type: type of packet(1 - arp)
* @ip_addr: subnet ipv4 address in case of encrypted packets
* @pkt_type_bitmap: pkt bitmap
* @tcp_src_port: tcp src port for pkt tracking
* @tcp_dst_port: tcp dst port for pkt tracking
* @icmp_ipv4: target ipv4 address to track ping packets
* @reserved: reserved
*/
struct set_arp_stats_params {
uint32_t vdev_id;
uint8_t flag;
uint8_t pkt_type;
uint32_t ip_addr;
uint32_t pkt_type_bitmap;
uint32_t tcp_src_port;
uint32_t tcp_dst_port;
uint32_t icmp_ipv4;
uint32_t reserved;
};
/**
* struct get_arp_stats_params - get arp stats from firmware
* @pkt_type: packet type(1 - ARP)
* @vdev_id: session id
*/
struct get_arp_stats_params {
uint8_t pkt_type;
uint32_t vdev_id;
};
/**
* struct sir_del_all_tdls_peers - delete all tdls peers
* @msg_type: type of message
* @msg_len: length of message
* @bssid: bssid of peer device
*/
struct sir_del_all_tdls_peers {
uint16_t msg_type;
uint16_t msg_len;
struct qdf_mac_addr bssid;
bool disable_tdls_state;
};
/**
* enum action_filter_type - Type of action frame filter
* @SME_ACTION_FRAME_RANDOM_MAC_SET: Set filter
* @SME_ACTION_FRAME_RANDOM_MAC_CLEAR: Clear filter
*/
enum action_filter_type {
SME_ACTION_FRAME_RANDOM_MAC_SET,
SME_ACTION_FRAME_RANDOM_MAC_CLEAR,
};
typedef void (*action_frame_random_filter_callback)(bool set_random_addr,
void *context);
/**
* struct action_frame_random_filter - Random mac filter attrs for set/clear
* @session_id: Session interface
* @filter_type: Type of filter from action_filter_type
* @callback: Invoked from wmi
* @context: Parameter to be used with callback
* @mac_addr: Random mac addr for which filter is to be set
* @freq: Channel frequency
*/
struct action_frame_random_filter {
uint32_t session_id;
enum action_filter_type filter_type;
action_frame_random_filter_callback callback;
void *context;
uint8_t mac_addr[QDF_MAC_ADDR_SIZE];
uint32_t freq;
};
/**
* struct chain_rssi_result - chain rssi result
* @chain_rssi: chain rssi result
*/
struct chain_rssi_result {
#define CHAIN_RSSI_NUM 8
uint32_t chain_rssi[CHAIN_RSSI_NUM];
};
/**
* struct get_chain_rssi_req_params - get chain rssi req params
* @peer_macaddr: specific peer mac address
* @session_id: session id
*/
struct get_chain_rssi_req_params {
struct qdf_mac_addr peer_macaddr;
uint8_t session_id;
};
struct INTERF_RSP {
uint8_t interf_type;
uint16_t interf_min_freq;
uint16_t interf_max_freq;
};
#define MAX_INTERF 10 /* 5 categories x (lower + upper) bands */
#define MAX_NUM_BINS 520
#define MAX_SPECTRAL_CHAINS 4
struct INTERF_SRC_RSP {
uint16_t count;
struct INTERF_RSP interf[MAX_INTERF];
};
struct samp_msg_data {
int16_t spectral_data_len;
int16_t spectral_data_len_sec80;
int16_t spectral_rssi;
int16_t spectral_rssi_sec80;
int8_t spectral_combined_rssi;
int8_t spectral_upper_rssi;
int8_t spectral_lower_rssi;
int8_t spectral_chain_ctl_rssi[MAX_SPECTRAL_CHAINS];
int8_t spectral_chain_ext_rssi[MAX_SPECTRAL_CHAINS];
uint8_t spectral_max_scale;
int16_t spectral_bwinfo;
int32_t spectral_tstamp;
int16_t spectral_max_index;
int16_t spectral_max_index_sec80;
int16_t spectral_max_mag;
int16_t spectral_max_mag_sec80;
uint8_t spectral_max_exp;
int32_t spectral_last_tstamp;
int16_t spectral_upper_max_index;
int16_t spectral_lower_max_index;
uint8_t spectral_nb_upper;
uint8_t spectral_nb_lower;
uint16_t bin_pwr_count;
uint8_t lb_edge_extrabins;
uint8_t rb_edge_extrabins;
uint16_t bin_pwr_count_sec80;
uint8_t bin_pwr[MAX_NUM_BINS];
uint8_t bin_pwr_sec80[MAX_NUM_BINS];
struct INTERF_SRC_RSP interf_list;
int16_t noise_floor;
int16_t noise_floor_sec80;
uint32_t ch_width;
};
enum dcs_int_type {
SPECTRAL_DCS_INT_NONE,
SPECTRAL_DCS_INT_CW,
SPECTRAL_DCS_INT_WIFI
};
/**
* struct spectral_samp_msg - FFT sampling data
* @signature: flag indicating it is a samp message
* @freq: frequency of the samplings
* @vhtop_ch_freq_seg1: VHT channel frequency segment 1
* @vhtop_ch_freq_seg2: VHT channel frequency segment 2
* @freq_loading: spectral scan frequency loading
* @dcs_enabled: if DCS is enabled
* @int_type: DCS interface type
* @macaddr: interface mac address
* @samp_data: sampling data
*/
struct spectral_samp_msg {
uint32_t signature;
uint16_t freq;
uint16_t vhtop_ch_freq_seg1;
uint16_t vhtop_ch_freq_seg2;
uint16_t freq_loading;
uint8_t dcs_enabled;
enum dcs_int_type int_type;
uint8_t macaddr[6];
struct samp_msg_data samp_data;
};
/**
* sir_sme_rx_aggr_hole_ind - sme rx aggr hole indication
* @hole_cnt: num of holes detected
* @hole_info_array: hole info
*/
struct sir_sme_rx_aggr_hole_ind {
uint32_t hole_cnt;
uint32_t hole_info_array[];
};
/**
* struct sir_set_rx_reorder_timeout_val - rx reorder timeout
* @rx_timeout_pri: reorder timeout for AC
* rx_timeout_pri[0] : AC_VO
* rx_timeout_pri[1] : AC_VI
* rx_timeout_pri[2] : AC_BE
* rx_timeout_pri[3] : AC_BK
*/
struct sir_set_rx_reorder_timeout_val {
uint32_t rx_timeout_pri[4];
};
/**
* struct sir_peer_set_rx_blocksize - set rx blocksize
* @vdev_id: vdev id
* @peer_macaddr: peer mac address
* @rx_block_ack_win_limit: windows size limitation
*/
struct sir_peer_set_rx_blocksize {
uint32_t vdev_id;
struct qdf_mac_addr peer_macaddr;
uint32_t rx_block_ack_win_limit;
};
/**
* struct sir_rssi_disallow_lst - Structure holding Rssi based avoid candidate
* list
* @node: Node pointer
* @bssid: BSSID of the AP
* @retry_delay: Retry delay received during last rejection in ms
* @ expected_rssi: RSSI at which STA can initate
* @time_during_rejection: Timestamp during last rejection in millisec
*/
struct sir_rssi_disallow_lst {
qdf_list_node_t node;
struct qdf_mac_addr bssid;
uint32_t retry_delay;
int8_t expected_rssi;
qdf_time_t time_during_rejection;
};
/*
* struct scan_chan_info - channel info
* @freq: radio frequence
* @cmd flag: cmd flag
* @noise_floor: noise floor
* @cycle_count: cycle count
* @rx_clear_count: rx clear count
* @tx_frame_count: TX frame count
* @clock_freq: clock frequency MHZ
*/
struct scan_chan_info {
uint32_t freq;
uint32_t cmd_flag;
uint32_t noise_floor;
uint32_t cycle_count;
uint32_t rx_clear_count;
uint32_t tx_frame_count;
uint32_t clock_freq;
};
/**
* struct sir_limit_off_chan - limit off-channel command parameters
* @vdev_id: vdev id
* @is_tos_active: status of the traffic (active/inactive)
* @max_off_chan_time: max allowed off channel time
* @rest_time: home channel time
* @skip_dfs_chans: skip dfs channels during scan
*/
struct sir_limit_off_chan {
uint8_t vdev_id;
bool is_tos_active;
uint32_t max_off_chan_time;
uint32_t rest_time;
bool skip_dfs_chans;
};
#endif /* __SIR_API_H */