nuttx/drivers/wireless/ieee80211/bcmf_ioctl.h

2771 lines
110 KiB
C

/*
* Copyright (c) 2015 Broadcom
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this
* list of conditions and the following disclaimer in the documentation and/or
* other materials provided with the distribution.
*
* 3. Neither the name of Broadcom nor the names of other contributors to this
* software may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* 4. This software may not be used as a standalone product, and may only be used as
* incorporated in your product or device that incorporates Broadcom wireless connectivity
* products and solely for the purpose of enabling the functionalities of such Broadcom products.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT, ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Custom OID/ioctl definitions for
* Broadcom 802.11abg Networking Device Driver
*/
#ifndef _wlioctl_h_
#define _wlioctl_h_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
#define ACTION_FRAME_SIZE 1040
typedef uint16_t wl_chanspec_t;
typedef uint16_t chanspec_t;
#define ETHER_ADDR_LEN 6
typedef struct ether_addr_dup
{
uint8_t octet[ETHER_ADDR_LEN];
} wl_ether_addr_t;
struct wl_ether_header
{
uint8_t ether_dhost[ETHER_ADDR_LEN];
uint8_t ether_shost[ETHER_ADDR_LEN];
uint16_t ether_type;
};
typedef struct wl_action_frame
{
wl_ether_addr_t da;
uint16_t len;
uint32_t packetId;
uint8_t data[ACTION_FRAME_SIZE];
} wl_action_frame_t;
/* ether types */
#define ETHER_TYPE_LEN 2
#define ETHER_TYPE_MIN 0x0600 /* Anything less than MIN is a length */
#define ETHER_TYPE_IP 0x0800 /* IP */
#define ETHER_TYPE_ARP 0x0806 /* ARP */
#define ETHER_TYPE_8021Q 0x8100 /* 802.1Q */
#define ETHER_TYPE_802_1X 0x888e /* 802.1x */
#ifdef BCMWAPI_WPI
#define ETHER_TYPE_WAI 0x88b4 /* WAPI WAI */
#endif /* BCMWAPI_WPI */
#define ETHER_TYPE_802_1X_PREAUTH 0x88c7 /* 802.1x preauthentication */
#define WL_WIFI_ACTION_FRAME_SIZE sizeof(struct wl_action_frame)
#define BWL_DEFAULT_PACKING
#define RWL_ACTION_WIFI_CATEGORY 127
#define RWL_WIFI_OUI_BYTE1 0x90
#define RWL_WIFI_OUI_BYTE2 0x4C
#define RWL_WIFI_OUI_BYTE3 0x0F
#define RWL_WIFI_ACTION_FRAME_SIZE sizeof(struct dot11_action_wifi_vendor_specific)
#define RWL_WIFI_DEFAULT 0x00
#define RWL_WIFI_FIND_MY_PEER 0x09
#define RWL_WIFI_FOUND_PEER 0x0A
#define RWL_ACTION_WIFI_FRAG_TYPE 0x55
typedef struct ssid_info
{
uint8_t ssid_len;
uint8_t ssid[32];
} ssid_info_t;
typedef struct cnt_rx
{
uint32_t cnt_rxundec;
uint32_t cnt_rxframe;
} cnt_rx_t;
#define RWL_REF_MAC_ADDRESS_OFFSET 17
#define RWL_DUT_MAC_ADDRESS_OFFSET 23
#define RWL_WIFI_CLIENT_CHANNEL_OFFSET 50
#define RWL_WIFI_SERVER_CHANNEL_OFFSET 51
#define WL_BSS_INFO_VERSION 108
#define MCSSET_LEN 16
typedef struct {
uint32_t version; /* version field */
uint32_t length; /* byte length of data in this record, */
/* starting at version and including IEs */
wl_ether_addr_t BSSID;
uint16_t beacon_period; /* units are Kusec */
uint16_t capability; /* Capability information */
uint8_t SSID_len;
uint8_t SSID[32];
struct {
uint32_t count; /* # rates in this set */
uint8_t rates[16]; /* rates in 500kbps units w/hi bit set if basic */
} rateset; /* supported rates */
wl_chanspec_t chanspec; /* chanspec for bss */
uint16_t atim_window; /* units are Kusec */
uint8_t dtim_period; /* DTIM period */
int16_t RSSI; /* receive signal strength (in dBm) */
int8_t phy_noise; /* noise (in dBm) */
uint8_t n_cap; /* BSS is 802.11N Capable */
uint32_t nbss_cap; /* 802.11N BSS Capabilities (based on HT_CAP_*) */
uint8_t ctl_ch; /* 802.11N BSS control channel number */
uint32_t reserved32[1]; /* Reserved for expansion of BSS properties */
uint8_t flags; /* flags */
uint8_t reserved[3]; /* Reserved for expansion of BSS properties */
uint8_t basic_mcs[MCSSET_LEN]; /* 802.11N BSS required MCS set */
uint16_t ie_offset; /* offset at which IEs start, from beginning */
uint32_t ie_length; /* byte length of Information Elements */
int16_t SNR; /* average SNR of during frame reception */
/* Add new fields here */
/* variable length Information Elements */
} wl_bss_info_t;
typedef struct wlc_ssid
{
uint32_t SSID_len;
uint8_t SSID[32];
} wlc_ssid_t;
#define WL_BSSTYPE_INFRA 1
#define WL_BSSTYPE_INDEP 0
#define WL_BSSTYPE_ANY 2
#define WL_SCANFLAGS_PASSIVE 0x01
#define WL_SCANFLAGS_PROHIBITED 0x04
typedef struct wl_scan_params
{
wlc_ssid_t ssid;
wl_ether_addr_t bssid;
int8_t bss_type;
int8_t scan_type;
int32_t nprobes;
int32_t active_time;
int32_t passive_time;
int32_t home_time;
int32_t channel_num;
uint16_t channel_list[1];
} wl_scan_params_t;
#define WL_SCAN_PARAMS_FIXED_SIZE (64)
#define WL_SCAN_PARAMS_COUNT_MASK (0x0000ffff)
#define WL_SCAN_PARAMS_NSSID_SHIFT (16)
#define WL_SCAN_ACTION_START (1)
#define WL_SCAN_ACTION_CONTINUE (2)
#define WL_SCAN_ACTION_ABORT (3)
#define ISCAN_REQ_VERSION (1)
typedef struct wl_iscan_params
{
uint32_t version;
uint16_t action;
uint16_t scan_duration;
wl_scan_params_t params;
} wl_iscan_params_t;
#define WL_ISCAN_PARAMS_FIXED_SIZE (offsetof(wl_iscan_params_t, params) + sizeof(wlc_ssid_t))
typedef struct wl_scan_results
{
uint32_t buflen;
uint32_t version;
uint32_t count;
wl_bss_info_t bss_info[1];
} wl_scan_results_t;
#define WL_SCAN_RESULTS_FIXED_SIZE (12)
#define WL_SCAN_RESULTS_SUCCESS (0)
#define WL_SCAN_RESULTS_PARTIAL (1)
#define WL_SCAN_RESULTS_PENDING (2)
#define WL_SCAN_RESULTS_ABORTED (3)
#define WL_SCAN_RESULTS_NO_MEM (4)
#define ESCAN_REQ_VERSION 1
typedef struct wl_escan_params
{
uint32_t version;
uint16_t action;
uint16_t sync_id;
wl_scan_params_t params;
} wl_escan_params_t;
#define WL_ESCAN_PARAMS_FIXED_SIZE (offsetof(wl_escan_params_t, params) + sizeof(wlc_ssid_t))
typedef struct wl_escan_result
{
uint32_t buflen;
uint32_t version;
uint16_t sync_id;
uint16_t bss_count;
wl_bss_info_t bss_info[1];
} wl_escan_result_t;
#define WL_ESCAN_RESULTS_FIXED_SIZE (sizeof(wl_escan_result_t) - sizeof(wl_bss_info_t))
typedef struct wl_iscan_results
{
uint32_t status;
wl_scan_results_t results;
} wl_iscan_results_t;
#define WL_ISCAN_RESULTS_FIXED_SIZE \
(WL_SCAN_RESULTS_FIXED_SIZE + offsetof(wl_iscan_results_t, results))
#define WL_MAXRATES_IN_SET 16 /* max # of rates in a rateset */
typedef struct wl_rateset
{
uint32_t count; /* # rates in this set */
uint8_t rates[WL_MAXRATES_IN_SET]; /* rates in 500kbps units w/hi bit set if basic */
} wl_rateset_t;
typedef struct wl_uint32_list
{
uint32_t count;
uint32_t element[1];
} wl_uint32_list_t;
typedef struct wl_join_scan_params {
uint8_t scan_type; /* 0 use default, active or passive scan */
int32_t nprobes; /* -1 use default, number of probes per channel */
int32_t active_time; /* -1 use default, dwell time per channel for
* active scanning
*/
int32_t passive_time; /* -1 use default, dwell time per channel
* for passive scanning
*/
int32_t home_time; /* -1 use default, dwell time for the home channel
* between channel scans
*/
} wl_join_scan_params_t;
#if !defined(ESTA_POSTMOGRIFY_REMOVAL)
#define NRATE_MCS_INUSE (0x00000080)
#define NRATE_RATE_MASK (0x0000007f)
#define NRATE_STF_MASK (0x0000ff00)
#define NRATE_STF_SHIFT (8)
#define NRATE_OVERRIDE (0x80000000)
#define NRATE_OVERRIDE_MCS_ONLY (0x40000000)
#define NRATE_SGI_MASK (0x00800000)
#define NRATE_SGI_SHIFT (23)
#define NRATE_LDPC_CODING (0x00400000)
#define NRATE_LDPC_SHIFT (22)
#define NRATE_BCMC_OVERRIDE (0x00200000)
#define NRATE_BCMC_SHIFT (21)
#define NRATE_STF_SISO (0)
#define NRATE_STF_CDD (1)
#define NRATE_STF_STBC (2)
#define NRATE_STF_SDM (3)
#define ANTENNA_NUM_1 (1)
#define ANTENNA_NUM_2 (2)
#define ANTENNA_NUM_3 (3)
#define ANTENNA_NUM_4 (4)
#define ANT_SELCFG_AUTO (0x80)
#define ANT_SELCFG_MASK (0x33)
#define ANT_SELCFG_MAX (4)
#define ANT_SELCFG_TX_UNICAST (0)
#define ANT_SELCFG_RX_UNICAST (1)
#define ANT_SELCFG_TX_DEF (2)
#define ANT_SELCFG_RX_DEF (3)
typedef struct
{
uint8_t ant_config[ANT_SELCFG_MAX];
uint8_t num_antcfg;
} wlc_antselcfg_t;
#define HIGHEST_SINGLE_STREAM_MCS (7)
#define WLC_CNTRY_BUF_SZ (4)
typedef struct wl_country
{
int8_t country_abbrev[WLC_CNTRY_BUF_SZ];
int32_t rev;
int8_t ccode[WLC_CNTRY_BUF_SZ];
} wl_country_t;
typedef struct wl_channels_in_country
{
uint32_t buflen;
uint32_t band;
int8_t country_abbrev[WLC_CNTRY_BUF_SZ];
uint32_t count;
uint32_t channel[1];
} wl_channels_in_country_t;
typedef struct wl_country_list
{
uint32_t buflen;
uint32_t band_set;
uint32_t band;
uint32_t count;
int8_t country_abbrev[1];
} wl_country_list_t;
#define WL_NUM_RPI_BINS 8
#define WL_RM_TYPE_BASIC 1
#define WL_RM_TYPE_CCA 2
#define WL_RM_TYPE_RPI 3
#define WL_RM_FLAG_PARALLEL (1<<0)
#define WL_RM_FLAG_LATE (1<<1)
#define WL_RM_FLAG_INCAPABLE (1<<2)
#define WL_RM_FLAG_REFUSED (1<<3)
typedef struct wl_rm_req_elt
{
int8_t type;
int8_t flags;
wl_chanspec_t chanspec;
uint32_t token;
uint32_t tsf_h;
uint32_t tsf_l;
uint32_t dur;
} wl_rm_req_elt_t;
typedef struct wl_rm_req
{
uint32_t token;
uint32_t count;
void* cb;
void* cb_arg;
wl_rm_req_elt_t req[1];
} wl_rm_req_t;
#define WL_RM_REQ_FIXED_LEN offsetof(wl_rm_req_t, req)
typedef struct wl_rm_rep_elt
{
int8_t type;
int8_t flags;
wl_chanspec_t chanspec;
uint32_t token;
uint32_t tsf_h;
uint32_t tsf_l;
uint32_t dur;
uint32_t len;
uint8_t data[1];
} wl_rm_rep_elt_t;
#define WL_RM_REP_ELT_FIXED_LEN 24
#define WL_RPI_REP_BIN_NUM 8
typedef struct wl_rm_rpi_rep
{
uint8_t rpi[WL_RPI_REP_BIN_NUM];
int8_t rpi_max[WL_RPI_REP_BIN_NUM];
} wl_rm_rpi_rep_t;
typedef struct wl_rm_rep
{
uint32_t token;
uint32_t len;
wl_rm_rep_elt_t rep[1];
} wl_rm_rep_t;
#define WL_RM_REP_FIXED_LEN 8
#endif
#define CRYPTO_ALGO_OFF 0
#define CRYPTO_ALGO_WEP1 1
#define CRYPTO_ALGO_TKIP 2
#define CRYPTO_ALGO_WEP128 3
#define CRYPTO_ALGO_AES_CCM 4
#define CRYPTO_ALGO_AES_OCB_MSDU 5
#define CRYPTO_ALGO_AES_OCB_MPDU 6
#define CRYPTO_ALGO_NALG 7
#define WSEC_GEN_MIC_ERROR 0x0001
#define WSEC_GEN_REPLAY 0x0002
#define WSEC_GEN_ICV_ERROR 0x0004
#define WL_SOFT_KEY (1 << 0)
#define WL_PRIMARY_KEY (1 << 1)
#define WL_KF_RES_4 (1 << 4)
#define WL_KF_RES_5 (1 << 5)
#define WL_IBSS_PEER_GROUP_KEY (1 << 6)
#define DOT11_MAX_KEY_SIZE 32
typedef struct wl_wsec_key
{
uint32_t index;
uint32_t len;
uint8_t data[DOT11_MAX_KEY_SIZE];
uint32_t pad_1[18];
uint32_t algo;
uint32_t flags;
uint32_t pad_2[2];
int32_t pad_3;
int32_t iv_initialized;
int32_t pad_4;
struct
{
uint32_t hi;
uint16_t lo;
} rxiv;
uint32_t pad_5[2];
wl_ether_addr_t ea;
} wl_wsec_key_t;
#define WSEC_MIN_PSK_LEN 8
#define WSEC_MAX_PSK_LEN 64
#define WSEC_PASSPHRASE (1<<0)
typedef struct
{
uint16_t key_len;
uint16_t flags;
uint8_t key[WSEC_MAX_PSK_LEN];
} wsec_pmk_t;
#define OPEN_AUTH 0x0000
#define SHARED_AUTH 0x0001
#define WEP_ENABLED 0x0001
#define TKIP_ENABLED 0x0002
#define AES_ENABLED 0x0004
#define WSEC_SWFLAG 0x0008
#ifdef BCMCCX
#define CKIP_KP_ENABLED 0x0010
#define CKIP_MIC_ENABLED 0x0020
#endif
#define SES_OW_ENABLED 0x0040
#ifdef WLFIPS
#define FIPS_ENABLED 0x0080
#endif
#ifdef BCMWAPI_WPI
#define SMS4_ENABLED 0x0100
#endif
#define WPA_AUTH_DISABLED 0x0000
#define WPA_AUTH_NONE 0x0001
#define WPA_AUTH_UNSPECIFIED 0x0002
#define WPA_AUTH_PSK 0x0004
#if defined(BCMCCX) || defined(BCMEXTCCX)
#define WPA_AUTH_CCKM 0x0008
#define WPA2_AUTH_CCKM 0x0010
#endif
#define WPA2_AUTH_UNSPECIFIED 0x0040
#define WPA2_AUTH_PSK 0x0080
#define BRCM_AUTH_PSK 0x0100
#define BRCM_AUTH_DPT 0x0200
#ifdef BCMWAPI_WPI
#define WPA_AUTH_WAPI 0x0400
#endif
#define WPA_AUTH_PFN_ANY 0xffffffff
#define MAXPMKID 16
#define WPA2_PMKID_LEN 16
typedef struct _pmkid
{
wl_ether_addr_t BSSID;
uint8_t PMKID[WPA2_PMKID_LEN];
} pmkid_t;
typedef struct _pmkid_list
{
uint32_t npmkid;
pmkid_t pmkid[1];
} pmkid_list_t;
typedef struct _pmkid_cand
{
wl_ether_addr_t BSSID;
uint8_t preauth;
} pmkid_cand_t;
typedef struct _pmkid_cand_list
{
uint32_t npmkid_cand;
pmkid_cand_t pmkid_cand[1];
} pmkid_cand_list_t;
#if !defined(ESTA_POSTMOGRIFY_REMOVAL)
typedef struct wl_led_info
{
uint32_t index;
uint32_t behavior;
uint8_t activehi;
} wl_led_info_t;
struct wl_dot11_assoc_req
{
uint16_t capability;
uint16_t listen;
};
struct wl_dot11_assoc_resp
{
uint16_t capability;
uint16_t status;
uint16_t aid;
};
typedef struct wl_assoc_info
{
uint32_t req_len;
uint32_t resp_len;
uint32_t flags;
struct wl_dot11_assoc_req req;
wl_ether_addr_t reassoc_bssid;
struct wl_dot11_assoc_resp resp;
} wl_assoc_info_t;
#define WLC_ASSOC_REQ_IS_REASSOC 0x01
typedef struct
{
uint32_t byteoff;
uint32_t nbytes;
uint16_t buf[1];
} srom_rw_t;
typedef struct
{
uint32_t source;
uint32_t byteoff;
uint32_t nbytes;
} cis_rw_t;
#define WLC_CIS_DEFAULT 0
#define WLC_CIS_SROM 1
#define WLC_CIS_OTP 2
typedef struct
{
uint32_t byteoff;
uint32_t val;
uint32_t size;
uint32_t band;
} rw_reg_t;
#define WL_ATTEN_APP_INPUT_PCL_OFF 0
#define WL_ATTEN_PCL_ON 1
#define WL_ATTEN_PCL_OFF 2
typedef struct
{
uint16_t auto_ctrl;
uint16_t bb;
uint16_t radio;
uint16_t txctl1;
} atten_t;
struct wme_tx_params_s
{
uint8_t short_retry;
uint8_t short_fallback;
uint8_t long_retry;
uint8_t long_fallback;
uint16_t max_rate;
};
typedef struct wme_tx_params_s wme_tx_params_t;
#define WL_WME_TX_PARAMS_IO_BYTES (sizeof(wme_tx_params_t) * AC_COUNT)
#define WL_PWRIDX_PCL_OFF -2
#define WL_PWRIDX_PCL_ON -1
#define WL_PWRIDX_LOWER_LIMIT -2
#define WL_PWRIDX_UPPER_LIMIT 63
#endif
typedef struct
{
uint32_t val;
wl_ether_addr_t ea;
} scb_val_t;
#if !defined(ESTA_POSTMOGRIFY_REMOVAL)
#define BCM_MAC_STATUS_INDICATION (0x40010200L)
typedef struct
{
uint16_t ver;
uint16_t len;
uint16_t cap;
uint32_t flags;
uint32_t idle;
wl_ether_addr_t ea;
wl_rateset_t rateset;
uint32_t in;
uint32_t listen_interval_inms;
uint32_t tx_pkts;
uint32_t tx_failures;
uint32_t rx_ucast_pkts;
uint32_t rx_mcast_pkts;
uint32_t tx_rate;
uint32_t rx_rate;
} sta_info_t;
#define WL_OLD_STAINFO_SIZE offsetof(sta_info_t, tx_pkts)
#define WL_STA_VER 2
#define WL_STA_BRCM 0x1
#define WL_STA_WME 0x2
#define WL_STA_ABCAP 0x4
#define WL_STA_AUTHE 0x8
#define WL_STA_ASSOC 0x10
#define WL_STA_AUTHO 0x20
#define WL_STA_WDS 0x40
#define WL_STA_WDS_LINKUP 0x80
#define WL_STA_PS 0x100
#define WL_STA_APSD_BE 0x200
#define WL_STA_APSD_BK 0x400
#define WL_STA_APSD_VI 0x800
#define WL_STA_APSD_VO 0x1000
#define WL_STA_N_CAP 0x2000
#define WL_STA_SCBSTATS 0x4000
#define WL_WDS_LINKUP WL_STA_WDS_LINKUP
#endif
typedef struct channel_info
{
int32_t hw_channel;
int32_t target_channel;
int32_t scan_channel;
} channel_info_t;
struct mac_list
{
uint32_t count;
wl_ether_addr_t ea[1];
};
typedef struct get_pktcnt
{
uint32_t rx_good_pkt;
uint32_t rx_bad_pkt;
uint32_t tx_good_pkt;
uint32_t tx_bad_pkt;
uint32_t rx_ocast_good_pkt;
} get_pktcnt_t;
typedef struct wl_ioctl
{
uint32_t cmd;
void* buf;
uint32_t len;
uint8_t set;
uint32_t used;
uint32_t needed;
} wl_ioctl_t;
#if !defined(ESTA_POSTMOGRIFY_REMOVAL)
typedef struct wlc_rev_info
{
uint32_t vendorid;
uint32_t deviceid;
uint32_t radiorev;
uint32_t chiprev;
uint32_t corerev;
uint32_t boardid;
uint32_t boardvendor;
uint32_t boardrev;
uint32_t driverrev;
uint32_t ucoderev;
uint32_t bus;
uint32_t chipnum;
uint32_t phytype;
uint32_t phyrev;
uint32_t anarev;
} wlc_rev_info_t;
#define WL_REV_INFO_LEGACY_LENGTH 48
#define WL_BRAND_MAX 10
typedef struct wl_instance_info
{
uint32_t instance;
int8_t brand[WL_BRAND_MAX];
} wl_instance_info_t;
typedef struct wl_txfifo_sz
{
uint8_t fifo;
uint8_t size;
} wl_txfifo_sz_t;
#define WLC_IOV_NAME_LEN 30
typedef struct wlc_iov_trx_s
{
uint8_t module;
uint8_t type;
int8_t name[WLC_IOV_NAME_LEN];
} wlc_iov_trx_t;
#endif
#define IOVAR_STR_BSSCFG_WPA_AUTH "bsscfg:wpa_auth"
#define IOVAR_STR_BSSCFG_WSEC "bsscfg:wsec"
#define IOVAR_STR_BSSCFG_SSID "bsscfg:ssid"
#define IOVAR_STR_BSSCFG_EVENT_MSGS "bsscfg:event_msgs"
#define IOVAR_STR_BSSCFG_CUR_ETHERADDR "bsscfg:cur_etheraddr"
#define IOVAR_STR_BSSCFG_ACTFRAME "bsscfg:actframe"
#define IOVAR_STR_BSSCFG_ACTION_FRAME "bsscfg:wifiaction"
#define IOVAR_STR_BSSCFG_VENDOR_IE "bsscfg:vndr_ie"
#define IOVAR_STR_BSS "bss"
#define IOVAR_STR_BSS_RATESET "bss_rateset"
#define IOVAR_STR_CSA "csa"
#define IOVAR_STR_AMPDU_TID "ampdu_tid"
#define IOVAR_STR_APSTA "apsta"
#define IOVAR_STR_ALLMULTI "allmulti"
#define IOVAR_STR_COUNTRY "country"
#define IOVAR_STR_EVENT_MSGS "event_msgs"
#define IOVAR_STR_ESCAN "escan"
#define IOVAR_STR_SUP_WPA "sup_wpa"
#define IOVAR_STR_CUR_ETHERADDR "cur_etheraddr"
#define IOVAR_STR_QTXPOWER "qtxpower"
#define IOVAR_STR_MCAST_LIST "mcast_list"
#define IOVAR_STR_PM2_SLEEP_RET "pm2_sleep_ret"
#define IOVAR_STR_PM_LIMIT "pm_limit"
#define IOVAR_STR_LISTEN_INTERVAL_BEACON "bcn_li_bcn"
#define IOVAR_STR_LISTEN_INTERVAL_DTIM "bcn_li_dtim"
#define IOVAR_STR_LISTEN_INTERVAL_ASSOC "assoc_listen"
#define IOVAR_PSPOLL_PERIOD "pspoll_prd"
#define IOVAR_STR_VENDOR_IE "vndr_ie"
#define IOVAR_STR_TX_GLOM "bus:txglom"
#define IOVAR_STR_ACTION_FRAME "wifiaction"
#define IOVAR_STR_AC_PARAMS_STA "wme_ac_sta"
#define IOVAR_STR_COUNTERS "counters"
#define IOVAR_STR_PKT_FILTER_ADD "pkt_filter_add"
#define IOVAR_STR_PKT_FILTER_DELETE "pkt_filter_delete"
#define IOVAR_STR_PKT_FILTER_ENABLE "pkt_filter_enable"
#define IOVAR_STR_PKT_FILTER_MODE "pkt_filter_mode"
#define IOVAR_STR_PKT_FILTER_LIST "pkt_filter_list"
#define IOVAR_STR_PKT_FILTER_STATS "pkt_filter_stats"
#define IOVAR_STR_PKT_FILTER_CLEAR_STATS "pkt_filter_clear_stats"
#define IOVAR_STR_DUTY_CYCLE_CCK "dutycycle_cck"
#define IOVAR_STR_DUTY_CYCLE_OFDM "dutycycle_ofdm"
#define IOVAR_STR_MKEEP_ALIVE "mkeep_alive"
#define IOVAR_STR_VERSION "ver"
#define IOVAR_STR_SUP_WPA2_EAPVER "sup_wpa2_eapver"
#define IOVAR_STR_ROAM_OFF "roam_off"
#define IOVAR_STR_CLOSEDNET "closednet"
#define IOVAR_STR_P2P_DISC "p2p_disc"
#define IOVAR_STR_P2P_DEV "p2p_dev"
#define IOVAR_STR_P2P_IFADD "p2p_ifadd"
#define IOVAR_STR_P2P_IFDEL "p2p_ifdel"
#define IOVAR_STR_P2P_IFUPD "p2p_ifupd"
#define IOVAR_STR_P2P_SCAN "p2p_scan"
#define IOVAR_STR_P2P_STATE "p2p_state"
#define IOVAR_STR_P2P_SSID "p2p_ssid"
#define IOVAR_STR_NRATE "nrate"
#define IOVAR_STR_BGRATE "bg_rate"
#define IOVAR_STR_ARATE "a_rate"
#define IOVAR_STR_NMODE "nmode"
#define IOVAR_STR_MAX_ASSOC "maxassoc"
#define IOVAR_STR_2G_MULTICAST_RATE "2g_mrate"
#define IOVAR_STR_MPC "mpc"
#define IOVAR_STR_AMPDU_BA_WINDOW_SIZE "ampdu_ba_wsize"
#define IOVAR_STR_AMPDU_MPDU "ampdu_mpdu"
#define IOVAR_STR_AMPDU_RX_FACTOR "ampdu_rx_factor"
#define IOVAR_STR_MIMO_BW_CAP "mimo_bw_cap"
#define WLC_IOCTL_MAGIC ( 0x14e46c77 )
#define WLC_IOCTL_VERSION ( 1 )
#define WLC_IOCTL_SMLEN ( 256 )
#define WLC_IOCTL_MEDLEN ( 1536 )
#define WLC_IOCTL_MAXLEN ( 8192 )
#define WLC_GET_MAGIC ( (uint32_t) 0 )
#define WLC_GET_VERSION ( (uint32_t) 1 )
#define WLC_UP ( (uint32_t) 2 )
#define WLC_DOWN ( (uint32_t) 3 )
#define WLC_GET_LOOP ( (uint32_t) 4 )
#define WLC_SET_LOOP ( (uint32_t) 5 )
#define WLC_DUMP ( (uint32_t) 6 )
#define WLC_GET_MSGLEVEL ( (uint32_t) 7 )
#define WLC_SET_MSGLEVEL ( (uint32_t) 8 )
#define WLC_GET_PROMISC ( (uint32_t) 9 )
#define WLC_SET_PROMISC ( (uint32_t) 10 )
#define WLC_GET_RATE ( (uint32_t) 12 )
#define WLC_GET_INSTANCE ( (uint32_t) 14 )
#define WLC_GET_INFRA ( (uint32_t) 19 )
#define WLC_SET_INFRA ( (uint32_t) 20 )
#define WLC_GET_AUTH ( (uint32_t) 21 )
#define WLC_SET_AUTH ( (uint32_t) 22 )
#define WLC_GET_BSSID ( (uint32_t) 23 )
#define WLC_SET_BSSID ( (uint32_t) 24 )
#define WLC_GET_SSID ( (uint32_t) 25 )
#define WLC_SET_SSID ( (uint32_t) 26 )
#define WLC_RESTART ( (uint32_t) 27 )
#define WLC_GET_CHANNEL ( (uint32_t) 29 )
#define WLC_SET_CHANNEL ( (uint32_t) 30 )
#define WLC_GET_SRL ( (uint32_t) 31 )
#define WLC_SET_SRL ( (uint32_t) 32 )
#define WLC_GET_LRL ( (uint32_t) 33 )
#define WLC_SET_LRL ( (uint32_t) 34 )
#define WLC_GET_PLCPHDR ( (uint32_t) 35 )
#define WLC_SET_PLCPHDR ( (uint32_t) 36 )
#define WLC_GET_RADIO ( (uint32_t) 37 )
#define WLC_SET_RADIO ( (uint32_t) 38 )
#define WLC_GET_PHYTYPE ( (uint32_t) 39 )
#define WLC_DUMP_RATE ( (uint32_t) 40 )
#define WLC_SET_RATE_PARAMS ( (uint32_t) 41 )
#define WLC_GET_KEY ( (uint32_t) 44 )
#define WLC_SET_KEY ( (uint32_t) 45 )
#define WLC_GET_REGULATORY ( (uint32_t) 46 )
#define WLC_SET_REGULATORY ( (uint32_t) 47 )
#define WLC_GET_PASSIVE_SCAN ( (uint32_t) 48 )
#define WLC_SET_PASSIVE_SCAN ( (uint32_t) 49 )
#define WLC_SCAN ( (uint32_t) 50 )
#define WLC_SCAN_RESULTS ( (uint32_t) 51 )
#define WLC_DISASSOC ( (uint32_t) 52 )
#define WLC_REASSOC ( (uint32_t) 53 )
#define WLC_GET_ROAM_TRIGGER ( (uint32_t) 54 )
#define WLC_SET_ROAM_TRIGGER ( (uint32_t) 55 )
#define WLC_GET_ROAM_DELTA ( (uint32_t) 56 )
#define WLC_SET_ROAM_DELTA ( (uint32_t) 57 )
#define WLC_GET_ROAM_SCAN_PERIOD ( (uint32_t) 58 )
#define WLC_SET_ROAM_SCAN_PERIOD ( (uint32_t) 59 )
#define WLC_EVM ( (uint32_t) 60 )
#define WLC_GET_TXANT ( (uint32_t) 61 )
#define WLC_SET_TXANT ( (uint32_t) 62 )
#define WLC_GET_ANTDIV ( (uint32_t) 63 )
#define WLC_SET_ANTDIV ( (uint32_t) 64 )
#define WLC_GET_CLOSED ( (uint32_t) 67 )
#define WLC_SET_CLOSED ( (uint32_t) 68 )
#define WLC_GET_MACLIST ( (uint32_t) 69 )
#define WLC_SET_MACLIST ( (uint32_t) 70 )
#define WLC_GET_RATESET ( (uint32_t) 71 )
#define WLC_SET_RATESET ( (uint32_t) 72 )
#define WLC_LONGTRAIN ( (uint32_t) 74 )
#define WLC_GET_BCNPRD ( (uint32_t) 75 )
#define WLC_SET_BCNPRD ( (uint32_t) 76 )
#define WLC_GET_DTIMPRD ( (uint32_t) 77 )
#define WLC_SET_DTIMPRD ( (uint32_t) 78 )
#define WLC_GET_SROM ( (uint32_t) 79 )
#define WLC_SET_SROM ( (uint32_t) 80 )
#define WLC_GET_WEP_RESTRICT ( (uint32_t) 81 )
#define WLC_SET_WEP_RESTRICT ( (uint32_t) 82 )
#define WLC_GET_COUNTRY ( (uint32_t) 83 )
#define WLC_SET_COUNTRY ( (uint32_t) 84 )
#define WLC_GET_PM ( (uint32_t) 85 )
#define WLC_SET_PM ( (uint32_t) 86 )
#define WLC_GET_WAKE ( (uint32_t) 87 )
#define WLC_SET_WAKE ( (uint32_t) 88 )
#define WLC_GET_FORCELINK ( (uint32_t) 90 )
#define WLC_SET_FORCELINK ( (uint32_t) 91 )
#define WLC_FREQ_ACCURACY ( (uint32_t) 92 )
#define WLC_CARRIER_SUPPRESS ( (uint32_t) 93 )
#define WLC_GET_PHYREG ( (uint32_t) 94 )
#define WLC_SET_PHYREG ( (uint32_t) 95 )
#define WLC_GET_RADIOREG ( (uint32_t) 96 )
#define WLC_SET_RADIOREG ( (uint32_t) 97 )
#define WLC_GET_REVINFO ( (uint32_t) 98 )
#define WLC_GET_UCANTDIV ( (uint32_t) 99 )
#define WLC_SET_UCANTDIV ( (uint32_t) 100 )
#define WLC_R_REG ( (uint32_t) 101 )
#define WLC_W_REG ( (uint32_t) 102 )
#define WLC_GET_MACMODE ( (uint32_t) 105 )
#define WLC_SET_MACMODE ( (uint32_t) 106 )
#define WLC_GET_MONITOR ( (uint32_t) 107 )
#define WLC_SET_MONITOR ( (uint32_t) 108 )
#define WLC_GET_GMODE ( (uint32_t) 109 )
#define WLC_SET_GMODE ( (uint32_t) 110 )
#define WLC_GET_LEGACY_ERP ( (uint32_t) 111 )
#define WLC_SET_LEGACY_ERP ( (uint32_t) 112 )
#define WLC_GET_RX_ANT ( (uint32_t) 113 )
#define WLC_GET_CURR_RATESET ( (uint32_t) 114 )
#define WLC_GET_SCANSUPPRESS ( (uint32_t) 115 )
#define WLC_SET_SCANSUPPRESS ( (uint32_t) 116 )
#define WLC_GET_AP ( (uint32_t) 117 )
#define WLC_SET_AP ( (uint32_t) 118 )
#define WLC_GET_EAP_RESTRICT ( (uint32_t) 119 )
#define WLC_SET_EAP_RESTRICT ( (uint32_t) 120 )
#define WLC_SCB_AUTHORIZE ( (uint32_t) 121 )
#define WLC_SCB_DEAUTHORIZE ( (uint32_t) 122 )
#define WLC_GET_WDSLIST ( (uint32_t) 123 )
#define WLC_SET_WDSLIST ( (uint32_t) 124 )
#define WLC_GET_ATIM ( (uint32_t) 125 )
#define WLC_SET_ATIM ( (uint32_t) 126 )
#define WLC_GET_RSSI ( (uint32_t) 127 )
#define WLC_GET_PHYANTDIV ( (uint32_t) 128 )
#define WLC_SET_PHYANTDIV ( (uint32_t) 129 )
#define WLC_AP_RX_ONLY ( (uint32_t) 130 )
#define WLC_GET_TX_PATH_PWR ( (uint32_t) 131 )
#define WLC_SET_TX_PATH_PWR ( (uint32_t) 132 )
#define WLC_GET_WSEC ( (uint32_t) 133 )
#define WLC_SET_WSEC ( (uint32_t) 134 )
#define WLC_GET_PHY_NOISE ( (uint32_t) 135 )
#define WLC_GET_BSS_INFO ( (uint32_t) 136 )
#define WLC_GET_PKTCNTS ( (uint32_t) 137 )
#define WLC_GET_LAZYWDS ( (uint32_t) 138 )
#define WLC_SET_LAZYWDS ( (uint32_t) 139 )
#define WLC_GET_BANDLIST ( (uint32_t) 140 )
#define WLC_GET_BAND ( (uint32_t) 141 )
#define WLC_SET_BAND ( (uint32_t) 142 )
#define WLC_SCB_DEAUTHENTICATE ( (uint32_t) 143 )
#define WLC_GET_SHORTSLOT ( (uint32_t) 144 )
#define WLC_GET_SHORTSLOT_OVERRIDE ( (uint32_t) 145 )
#define WLC_SET_SHORTSLOT_OVERRIDE ( (uint32_t) 146 )
#define WLC_GET_SHORTSLOT_RESTRICT ( (uint32_t) 147 )
#define WLC_SET_SHORTSLOT_RESTRICT ( (uint32_t) 148 )
#define WLC_GET_GMODE_PROTECTION ( (uint32_t) 149 )
#define WLC_GET_GMODE_PROTECTION_OVERRIDE ( (uint32_t) 150 )
#define WLC_SET_GMODE_PROTECTION_OVERRIDE ( (uint32_t) 151 )
#define WLC_UPGRADE ( (uint32_t) 152 )
#define WLC_GET_IGNORE_BCNS ( (uint32_t) 155 )
#define WLC_SET_IGNORE_BCNS ( (uint32_t) 156 )
#define WLC_GET_SCB_TIMEOUT ( (uint32_t) 157 )
#define WLC_SET_SCB_TIMEOUT ( (uint32_t) 158 )
#define WLC_GET_ASSOCLIST ( (uint32_t) 159 )
#define WLC_GET_CLK ( (uint32_t) 160 )
#define WLC_SET_CLK ( (uint32_t) 161 )
#define WLC_GET_UP ( (uint32_t) 162 )
#define WLC_OUT ( (uint32_t) 163 )
#define WLC_GET_WPA_AUTH ( (uint32_t) 164 )
#define WLC_SET_WPA_AUTH ( (uint32_t) 165 )
#define WLC_GET_UCFLAGS ( (uint32_t) 166 )
#define WLC_SET_UCFLAGS ( (uint32_t) 167 )
#define WLC_GET_PWRIDX ( (uint32_t) 168 )
#define WLC_SET_PWRIDX ( (uint32_t) 169 )
#define WLC_GET_TSSI ( (uint32_t) 170 )
#define WLC_GET_SUP_RATESET_OVERRIDE ( (uint32_t) 171 )
#define WLC_SET_SUP_RATESET_OVERRIDE ( (uint32_t) 172 )
#define WLC_GET_PROTECTION_CONTROL ( (uint32_t) 178 )
#define WLC_SET_PROTECTION_CONTROL ( (uint32_t) 179 )
#define WLC_GET_PHYLIST ( (uint32_t) 180 )
#define WLC_ENCRYPT_STRENGTH ( (uint32_t) 181 )
#define WLC_DECRYPT_STATUS ( (uint32_t) 182 )
#define WLC_GET_KEY_SEQ ( (uint32_t) 183 )
#define WLC_GET_SCAN_CHANNEL_TIME ( (uint32_t) 184 )
#define WLC_SET_SCAN_CHANNEL_TIME ( (uint32_t) 185 )
#define WLC_GET_SCAN_UNASSOC_TIME ( (uint32_t) 186 )
#define WLC_SET_SCAN_UNASSOC_TIME ( (uint32_t) 187 )
#define WLC_GET_SCAN_HOME_TIME ( (uint32_t) 188 )
#define WLC_SET_SCAN_HOME_TIME ( (uint32_t) 189 )
#define WLC_GET_SCAN_NPROBES ( (uint32_t) 190 )
#define WLC_SET_SCAN_NPROBES ( (uint32_t) 191 )
#define WLC_GET_PRB_RESP_TIMEOUT ( (uint32_t) 192 )
#define WLC_SET_PRB_RESP_TIMEOUT ( (uint32_t) 193 )
#define WLC_GET_ATTEN ( (uint32_t) 194 )
#define WLC_SET_ATTEN ( (uint32_t) 195 )
#define WLC_GET_SHMEM ( (uint32_t) 196 )
#define WLC_SET_SHMEM ( (uint32_t) 197 )
#define WLC_SET_WSEC_TEST ( (uint32_t) 200 )
#define WLC_SCB_DEAUTHENTICATE_FOR_REASON ( (uint32_t) 201 )
#define WLC_TKIP_COUNTERMEASURES ( (uint32_t) 202 )
#define WLC_GET_PIOMODE ( (uint32_t) 203 )
#define WLC_SET_PIOMODE ( (uint32_t) 204 )
#define WLC_SET_ASSOC_PREFER ( (uint32_t) 205 )
#define WLC_GET_ASSOC_PREFER ( (uint32_t) 206 )
#define WLC_SET_ROAM_PREFER ( (uint32_t) 207 )
#define WLC_GET_ROAM_PREFER ( (uint32_t) 208 )
#define WLC_SET_LED ( (uint32_t) 209 )
#define WLC_GET_LED ( (uint32_t) 210 )
#define WLC_GET_INTERFERENCE_MODE ( (uint32_t) 211 )
#define WLC_SET_INTERFERENCE_MODE ( (uint32_t) 212 )
#define WLC_GET_CHANNEL_QA ( (uint32_t) 213 )
#define WLC_START_CHANNEL_QA ( (uint32_t) 214 )
#define WLC_GET_CHANNEL_SEL ( (uint32_t) 215 )
#define WLC_START_CHANNEL_SEL ( (uint32_t) 216 )
#define WLC_GET_VALID_CHANNELS ( (uint32_t) 217 )
#define WLC_GET_FAKEFRAG ( (uint32_t) 218 )
#define WLC_SET_FAKEFRAG ( (uint32_t) 219 )
#define WLC_GET_PWROUT_PERCENTAGE ( (uint32_t) 220 )
#define WLC_SET_PWROUT_PERCENTAGE ( (uint32_t) 221 )
#define WLC_SET_BAD_FRAME_PREEMPT ( (uint32_t) 222 )
#define WLC_GET_BAD_FRAME_PREEMPT ( (uint32_t) 223 )
#define WLC_SET_LEAP_LIST ( (uint32_t) 224 )
#define WLC_GET_LEAP_LIST ( (uint32_t) 225 )
#define WLC_GET_CWMIN ( (uint32_t) 226 )
#define WLC_SET_CWMIN ( (uint32_t) 227 )
#define WLC_GET_CWMAX ( (uint32_t) 228 )
#define WLC_SET_CWMAX ( (uint32_t) 229 )
#define WLC_GET_WET ( (uint32_t) 230 )
#define WLC_SET_WET ( (uint32_t) 231 )
#define WLC_GET_PUB ( (uint32_t) 232 )
#define WLC_GET_KEY_PRIMARY ( (uint32_t) 235 )
#define WLC_SET_KEY_PRIMARY ( (uint32_t) 236 )
#define WLC_GET_ACI_ARGS ( (uint32_t) 238 )
#define WLC_SET_ACI_ARGS ( (uint32_t) 239 )
#define WLC_UNSET_CALLBACK ( (uint32_t) 240 )
#define WLC_SET_CALLBACK ( (uint32_t) 241 )
#define WLC_GET_RADAR ( (uint32_t) 242 )
#define WLC_SET_RADAR ( (uint32_t) 243 )
#define WLC_SET_SPECT_MANAGMENT ( (uint32_t) 244 )
#define WLC_GET_SPECT_MANAGMENT ( (uint32_t) 245 )
#define WLC_WDS_GET_REMOTE_HWADDR ( (uint32_t) 246 )
#define WLC_WDS_GET_WPA_SUP ( (uint32_t) 247 )
#define WLC_SET_CS_SCAN_TIMER ( (uint32_t) 248 )
#define WLC_GET_CS_SCAN_TIMER ( (uint32_t) 249 )
#define WLC_MEASURE_REQUEST ( (uint32_t) 250 )
#define WLC_INIT ( (uint32_t) 251 )
#define WLC_SEND_QUIET ( (uint32_t) 252 )
#define WLC_KEEPALIVE ( (uint32_t) 253 )
#define WLC_SEND_PWR_CONSTRAINT ( (uint32_t) 254 )
#define WLC_UPGRADE_STATUS ( (uint32_t) 255 )
#define WLC_CURRENT_PWR ( (uint32_t) 256 )
#define WLC_GET_SCAN_PASSIVE_TIME ( (uint32_t) 257 )
#define WLC_SET_SCAN_PASSIVE_TIME ( (uint32_t) 258 )
#define WLC_LEGACY_LINK_BEHAVIOR ( (uint32_t) 259 )
#define WLC_GET_CHANNELS_IN_COUNTRY ( (uint32_t) 260 )
#define WLC_GET_COUNTRY_LIST ( (uint32_t) 261 )
#define WLC_GET_VAR ( (uint32_t) 262 )
#define WLC_SET_VAR ( (uint32_t) 263 )
#define WLC_NVRAM_GET ( (uint32_t) 264 )
#define WLC_NVRAM_SET ( (uint32_t) 265 )
#define WLC_NVRAM_DUMP ( (uint32_t) 266 )
#define WLC_REBOOT ( (uint32_t) 267 )
#define WLC_SET_WSEC_PMK ( (uint32_t) 268 )
#define WLC_GET_AUTH_MODE ( (uint32_t) 269 )
#define WLC_SET_AUTH_MODE ( (uint32_t) 270 )
#define WLC_GET_WAKEENTRY ( (uint32_t) 271 )
#define WLC_SET_WAKEENTRY ( (uint32_t) 272 )
#define WLC_NDCONFIG_ITEM ( (uint32_t) 273 )
#define WLC_NVOTPW ( (uint32_t) 274 )
#define WLC_OTPW ( (uint32_t) 275 )
#define WLC_IOV_BLOCK_GET ( (uint32_t) 276 )
#define WLC_IOV_MODULES_GET ( (uint32_t) 277 )
#define WLC_SOFT_RESET ( (uint32_t) 278 )
#define WLC_GET_ALLOW_MODE ( (uint32_t) 279 )
#define WLC_SET_ALLOW_MODE ( (uint32_t) 280 )
#define WLC_GET_DESIRED_BSSID ( (uint32_t) 281 )
#define WLC_SET_DESIRED_BSSID ( (uint32_t) 282 )
#define WLC_DISASSOC_MYAP ( (uint32_t) 283 )
#define WLC_GET_NBANDS ( (uint32_t) 284 )
#define WLC_GET_BANDSTATES ( (uint32_t) 285 )
#define WLC_GET_WLC_BSS_INFO ( (uint32_t) 286 )
#define WLC_GET_ASSOC_INFO ( (uint32_t) 287 )
#define WLC_GET_OID_PHY ( (uint32_t) 288 )
#define WLC_SET_OID_PHY ( (uint32_t) 289 )
#define WLC_SET_ASSOC_TIME ( (uint32_t) 290 )
#define WLC_GET_DESIRED_SSID ( (uint32_t) 291 )
#define WLC_GET_CHANSPEC ( (uint32_t) 292 )
#define WLC_GET_ASSOC_STATE ( (uint32_t) 293 )
#define WLC_SET_PHY_STATE ( (uint32_t) 294 )
#define WLC_GET_SCAN_PENDING ( (uint32_t) 295 )
#define WLC_GET_SCANREQ_PENDING ( (uint32_t) 296 )
#define WLC_GET_PREV_ROAM_REASON ( (uint32_t) 297 )
#define WLC_SET_PREV_ROAM_REASON ( (uint32_t) 298 )
#define WLC_GET_BANDSTATES_PI ( (uint32_t) 299 )
#define WLC_GET_PHY_STATE ( (uint32_t) 300 )
#define WLC_GET_BSS_WPA_RSN ( (uint32_t) 301 )
#define WLC_GET_BSS_WPA2_RSN ( (uint32_t) 302 )
#define WLC_GET_BSS_BCN_TS ( (uint32_t) 303 )
#define WLC_GET_INT_DISASSOC ( (uint32_t) 304 )
#define WLC_SET_NUM_PEERS ( (uint32_t) 305 )
#define WLC_GET_NUM_BSS ( (uint32_t) 306 )
#define WLC_GET_WSEC_PMK ( (uint32_t) 318 )
#define WLC_GET_RANDOM_BYTES ( (uint32_t) 319 )
#define WLC_LAST ( (uint32_t) 320 )
#ifndef EPICTRL_COOKIE
#define EPICTRL_COOKIE 0xABADCEDE
#endif
#define CMN_IOCTL_OFF 0x180
#define WL_OID_BASE 0xFFE41420
#define OID_WL_GETINSTANCE (WL_OID_BASE + WLC_GET_INSTANCE)
#define OID_WL_GET_FORCELINK (WL_OID_BASE + WLC_GET_FORCELINK)
#define OID_WL_SET_FORCELINK (WL_OID_BASE + WLC_SET_FORCELINK)
#define OID_WL_ENCRYPT_STRENGTH (WL_OID_BASE + WLC_ENCRYPT_STRENGTH)
#define OID_WL_DECRYPT_STATUS (WL_OID_BASE + WLC_DECRYPT_STATUS)
#define OID_LEGACY_LINK_BEHAVIOR (WL_OID_BASE + WLC_LEGACY_LINK_BEHAVIOR)
#define OID_WL_NDCONFIG_ITEM (WL_OID_BASE + WLC_NDCONFIG_ITEM)
#define OID_STA_CHANSPEC (WL_OID_BASE + WLC_GET_CHANSPEC)
#define OID_STA_NBANDS (WL_OID_BASE + WLC_GET_NBANDS)
#define OID_STA_GET_PHY (WL_OID_BASE + WLC_GET_OID_PHY)
#define OID_STA_SET_PHY (WL_OID_BASE + WLC_SET_OID_PHY)
#define OID_STA_ASSOC_TIME (WL_OID_BASE + WLC_SET_ASSOC_TIME)
#define OID_STA_DESIRED_SSID (WL_OID_BASE + WLC_GET_DESIRED_SSID)
#define OID_STA_SET_PHY_STATE (WL_OID_BASE + WLC_SET_PHY_STATE)
#define OID_STA_SCAN_PENDING (WL_OID_BASE + WLC_GET_SCAN_PENDING)
#define OID_STA_SCANREQ_PENDING (WL_OID_BASE + WLC_GET_SCANREQ_PENDING)
#define OID_STA_GET_ROAM_REASON (WL_OID_BASE + WLC_GET_PREV_ROAM_REASON)
#define OID_STA_SET_ROAM_REASON (WL_OID_BASE + WLC_SET_PREV_ROAM_REASON)
#define OID_STA_GET_PHY_STATE (WL_OID_BASE + WLC_GET_PHY_STATE)
#define OID_STA_INT_DISASSOC (WL_OID_BASE + WLC_GET_INT_DISASSOC)
#define OID_STA_SET_NUM_PEERS (WL_OID_BASE + WLC_SET_NUM_PEERS)
#define OID_STA_GET_NUM_BSS (WL_OID_BASE + WLC_GET_NUM_BSS)
#define WL_DECRYPT_STATUS_SUCCESS 1
#define WL_DECRYPT_STATUS_FAILURE 2
#define WL_DECRYPT_STATUS_UNKNOWN 3
#define WLC_UPGRADE_SUCCESS 0
#define WLC_UPGRADE_PENDING 1
#ifdef CONFIG_USBRNDIS_RETAIL
typedef struct
{
int8_t* name;
void* param;
}ndconfig_item_t;
#endif
#ifdef EXT_STA
typedef struct _wl_assoc_result
{
ulong associated;
ulong NDIS_auth;
ulong NDIS_infra;
}wl_assoc_result_t;
#endif
#define WL_RADIO_SW_DISABLE (1<<0)
#define WL_RADIO_HW_DISABLE (1<<1)
#define WL_RADIO_MPC_DISABLE (1<<2)
#define WL_RADIO_COUNTRY_DISABLE (1<<3)
#define WL_TXPWR_OVERRIDE (1U<<31)
#define WL_PHY_PAVARS_LEN (6)
#define WL_DIAG_INTERRUPT (1)
#define WL_DIAG_LOOPBACK (2)
#define WL_DIAG_MEMORY (3)
#define WL_DIAG_LED (4)
#define WL_DIAG_REG (5)
#define WL_DIAG_SROM (6)
#define WL_DIAG_DMA (7)
#define WL_DIAGERR_SUCCESS (0)
#define WL_DIAGERR_FAIL_TO_RUN (1)
#define WL_DIAGERR_NOT_SUPPORTED (2)
#define WL_DIAGERR_INTERRUPT_FAIL (3)
#define WL_DIAGERR_LOOPBACK_FAIL (4)
#define WL_DIAGERR_SROM_FAIL (5)
#define WL_DIAGERR_SROM_BADCRC (6)
#define WL_DIAGERR_REG_FAIL (7)
#define WL_DIAGERR_MEMORY_FAIL (8)
#define WL_DIAGERR_NOMEM (9)
#define WL_DIAGERR_DMA_FAIL (10)
#define WL_DIAGERR_MEMORY_TIMEOUT (11)
#define WL_DIAGERR_MEMORY_BADPATTERN (12)
#define WLC_BAND_AUTO (0)
#define WLC_BAND_5G (1)
#define WLC_BAND_2G (2)
#define WLC_BAND_ALL (3)
#define WL_CHAN_FREQ_RANGE_2G (0)
#define WL_CHAN_FREQ_RANGE_5GL (1)
#define WL_CHAN_FREQ_RANGE_5GM (2)
#define WL_CHAN_FREQ_RANGE_5GH (3)
#define WLC_PHY_TYPE_A (0)
#define WLC_PHY_TYPE_B (1)
#define WLC_PHY_TYPE_G (2)
#define WLC_PHY_TYPE_N (4)
#define WLC_PHY_TYPE_LP (5)
#define WLC_PHY_TYPE_SSN (6)
#define WLC_PHY_TYPE_NULL (0xf)
#define WLC_MACMODE_DISABLED (0)
#define WLC_MACMODE_DENY (1)
#define WLC_MACMODE_ALLOW (2)
#define GMODE_LEGACY_B (0)
#define GMODE_AUTO (1)
#define GMODE_ONLY (2)
#define GMODE_B_DEFERRED (3)
#define GMODE_PERFORMANCE (4)
#define GMODE_LRS (5)
#define GMODE_MAX (6)
#define WLC_PLCP_AUTO (-1)
#define WLC_PLCP_SHORT (0)
#define WLC_PLCP_LONG (1)
#define WLC_PROTECTION_AUTO (-1)
#define WLC_PROTECTION_OFF (0)
#define WLC_PROTECTION_ON (1)
#define WLC_PROTECTION_MMHDR_ONLY (2)
#define WLC_PROTECTION_CTS_ONLY (3)
#define WLC_PROTECTION_CTL_OFF (0)
#define WLC_PROTECTION_CTL_LOCAL (1)
#define WLC_PROTECTION_CTL_OVERLAP (2)
#define WLC_N_PROTECTION_OFF (0)
#define WLC_N_PROTECTION_OPTIONAL (1)
#define WLC_N_PROTECTION_20IN40 (2)
#define WLC_N_PROTECTION_MIXEDMODE (3)
#define WLC_N_PREAMBLE_MIXEDMODE (0)
#define WLC_N_PREAMBLE_GF (1)
#define WLC_N_BW_20ALL (0)
#define WLC_N_BW_40ALL (1)
#define WLC_N_BW_20IN2G_40IN5G (2)
#define WLC_N_TXRX_CHAIN0 (0)
#define WLC_N_TXRX_CHAIN1 (1)
#define WLC_N_SGI_20 (0x01)
#define WLC_N_SGI_40 (0x02)
#define PM_OFF (0)
#define PM_MAX (1)
#define PM_FAST (2)
#define INTERFERE_NONE (0)
#define NON_WLAN (1)
#define WLAN_MANUAL (2)
#define WLAN_AUTO (3)
#define AUTO_ACTIVE (1 << 7)
typedef struct wl_aci_args
{
int32_t enter_aci_thresh;
int32_t exit_aci_thresh;
int32_t usec_spin;
int32_t glitch_delay;
uint16_t nphy_adcpwr_enter_thresh;
uint16_t nphy_adcpwr_exit_thresh;
uint16_t nphy_repeat_ctr;
uint16_t nphy_num_samples;
uint16_t nphy_undetect_window_sz;
uint16_t nphy_b_energy_lo_aci;
uint16_t nphy_b_energy_md_aci;
uint16_t nphy_b_energy_hi_aci;
} wl_aci_args_t;
#define WL_ACI_ARGS_LEGACY_LENGTH 16
#if !defined(ESTA_POSTMOGRIFY_REMOVAL)
typedef struct
{
int32_t npulses;
int32_t ncontig;
int32_t min_pw;
int32_t max_pw;
uint16_t thresh0;
uint16_t thresh1;
uint16_t blank;
uint16_t fmdemodcfg;
int32_t npulses_lp;
int32_t min_pw_lp;
int32_t max_pw_lp;
int32_t min_fm_lp;
int32_t max_deltat_lp;
int32_t min_deltat;
int32_t max_deltat;
uint16_t autocorr;
uint16_t st_level_time;
uint16_t t2_min;
uint32_t version;
} wl_radar_args_t;
#define WL_RADAR_ARGS_VERSION 1
#define WL_RADAR_DETECTOR_OFF 0
#define WL_RADAR_DETECTOR_ON 1
#define WL_RADAR_SIMULATED 2
#define WL_RSSI_ANT_VERSION 1
#define WL_RSSI_ANT_MAX 4
typedef struct
{
uint32_t version;
uint32_t count;
int8_t rssi_ant[WL_RSSI_ANT_MAX];
} wl_rssi_ant_t;
#define WL_DFS_CACSTATE_IDLE 0
#define WL_DFS_CACSTATE_PREISM_CAC 1
#define WL_DFS_CACSTATE_ISM 2
#define WL_DFS_CACSTATE_CSA 3
#define WL_DFS_CACSTATE_POSTISM_CAC 4
#define WL_DFS_CACSTATE_PREISM_OOC 5
#define WL_DFS_CACSTATE_POSTISM_OOC 6
#define WL_DFS_CACSTATES 7
typedef struct
{
uint32_t state;
uint32_t duration;
wl_chanspec_t chanspec_cleared;
uint16_t pad;
} wl_dfs_status_t;
#define NUM_PWRCTRL_RATES 12
typedef struct
{
uint8_t txpwr_band_max[NUM_PWRCTRL_RATES];
uint8_t txpwr_limit[NUM_PWRCTRL_RATES];
uint8_t txpwr_local_max;
uint8_t txpwr_local_constraint;
uint8_t txpwr_chan_reg_max;
uint8_t txpwr_target[2][NUM_PWRCTRL_RATES];
uint8_t txpwr_est_Pout[2];
uint8_t txpwr_opo[NUM_PWRCTRL_RATES];
uint8_t txpwr_bphy_cck_max[NUM_PWRCTRL_RATES];
uint8_t txpwr_bphy_ofdm_max;
uint8_t txpwr_aphy_max[NUM_PWRCTRL_RATES];
int8_t txpwr_antgain[2];
uint8_t txpwr_est_Pout_gofdm;
} tx_power_legacy_t;
#define WL_TX_POWER_RATES 45
#define WL_TX_POWER_CCK_FIRST 0
#define WL_TX_POWER_CCK_NUM 4
#define WL_TX_POWER_OFDM_FIRST 4
#define WL_TX_POWER_OFDM_NUM 8
#define WL_TX_POWER_MCS_SISO_NUM 8
#define WL_TX_POWER_MCS20_FIRST 12
#define WL_TX_POWER_MCS20_NUM 16
#define WL_TX_POWER_MCS40_FIRST 28
#define WL_TX_POWER_MCS40_NUM 17
#define WL_TX_POWER_MCS20SISO_NUM 8
#define WL_TX_POWER_MCS40_LAST 44
#define WL_TX_POWER_F_ENABLED 1
#define WL_TX_POWER_F_HW 2
#define WL_TX_POWER_F_MIMO 4
#define WL_TX_POWER_F_SISO 8
#define WL_TX_POWER_F_40M_CAP 16
typedef struct
{
uint32_t flags;
wl_chanspec_t chanspec;
wl_chanspec_t local_chanspec;
uint8_t local_max;
uint8_t local_constraint;
int8_t antgain[2];
uint8_t rf_cores;
uint8_t est_Pout[4];
uint8_t est_Pout_cck;
uint8_t user_limit[WL_TX_POWER_RATES];
uint8_t reg_limit[WL_TX_POWER_RATES];
uint8_t board_limit[WL_TX_POWER_RATES];
uint8_t target[WL_TX_POWER_RATES];
} tx_power_t;
typedef struct tx_inst_power
{
uint8_t txpwr_est_Pout[2];
uint8_t txpwr_est_Pout_gofdm;
} tx_inst_power_t;
#define WLC_MEASURE_TPC 1
#define WLC_MEASURE_CHANNEL_BASIC 2
#define WLC_MEASURE_CHANNEL_CCA 3
#define WLC_MEASURE_CHANNEL_RPI 4
#define SPECT_MNGMT_OFF 0
#define SPECT_MNGMT_LOOSE_11H 1
#define SPECT_MNGMT_STRICT_11H 2
#define SPECT_MNGMT_STRICT_11D 3
#define SPECT_MNGMT_LOOSE_11H_D 4
#define WL_CHAN_VALID_HW (1 << 0)
#define WL_CHAN_VALID_SW (1 << 1)
#define WL_CHAN_BAND_5G (1 << 2)
#define WL_CHAN_RADAR (1 << 3)
#define WL_CHAN_INACTIVE (1 << 4)
#define WL_CHAN_PASSIVE (1 << 5)
#define WL_CHAN_RESTRICTED (1 << 6)
#define WL_BTC_DISABLE 0
#define WL_BTC_ENABLE (1 << 0)
#define WL_BTC_PREMPT (1 << 1)
#define WL_BTC_PARTIAL (1 << 2)
#define WL_BTC_DEFAULT (1 << 3)
#define WL_BTC_HYBRID (WL_BTC_ENABLE | WL_BTC_PARTIAL)
#define WL_INF_BTC_DISABLE 0
#define WL_INF_BTC_ENABLE 1
#define WL_INF_BTC_AUTO 3
#define WL_BTC_DEFWIRE 0
#define WL_BTC_2WIRE 2
#define WL_BTC_3WIRE 3
#define WL_BTC_4WIRE 4
#define WL_BTC_FLAG_PREMPT (1 << 0)
#define WL_BTC_FLAG_BT_DEF (1 << 1)
#define WL_BTC_FLAG_ACTIVE_PROT (1 << 2)
#define WL_BTC_FLAG_SIM_RSP (1 << 3)
#define WL_BTC_FLAG_PS_PROTECT (1 << 4)
#define WL_BTC_FLAG_SIM_TX_LP (1 << 5)
#define WL_BTC_FLAG_ECI (1 << 6)
#endif
#define WL_ERROR_VAL 0x00000001
#define WL_TRACE_VAL 0x00000002
#define WL_PRHDRS_VAL 0x00000004
#define WL_PRPKT_VAL 0x00000008
#define WL_INFORM_VAL 0x00000010
#define WL_TMP_VAL 0x00000020
#define WL_OID_VAL 0x00000040
#define WL_RATE_VAL 0x00000080
#define WL_ASSOC_VAL 0x00000100
#define WL_PRUSR_VAL 0x00000200
#define WL_PS_VAL 0x00000400
#define WL_TXPWR_VAL 0x00000800
#define WL_PORT_VAL 0x00001000
#define WL_DUAL_VAL 0x00002000
#define WL_WSEC_VAL 0x00004000
#define WL_WSEC_DUMP_VAL 0x00008000
#define WL_LOG_VAL 0x00010000
#define WL_NRSSI_VAL 0x00020000
#define WL_LOFT_VAL 0x00040000
#define WL_REGULATORY_VAL 0x00080000
#define WL_PHYCAL_VAL 0x00100000
#define WL_RADAR_VAL 0x00200000
#define WL_MPC_VAL 0x00400000
#define WL_APSTA_VAL 0x00800000
#define WL_DFS_VAL 0x01000000
#define WL_BA_VAL 0x02000000
#if defined(WLNINTENDO)
#define WL_NITRO_VAL 0x04000000
#endif
#define WL_MBSS_VAL 0x04000000
#define WL_CAC_VAL 0x08000000
#define WL_AMSDU_VAL 0x10000000
#define WL_AMPDU_VAL 0x20000000
#define WL_FFPLD_VAL 0x40000000
#if defined(WLNINTENDO)
#define WL_NIN_VAL 0x80000000
#endif
#define WL_DPT_VAL 0x00000001
#define WL_SCAN_VAL 0x00000002
#define WL_WOWL_VAL 0x00000004
#define WL_COEX_VAL 0x00000008
#define WL_RTDC_VAL 0x00000010
#define WL_BTA_VAL 0x00000040
#define WL_LED_NUMGPIO 16
#define WL_LED_OFF 0
#define WL_LED_ON 1
#define WL_LED_ACTIVITY 2
#define WL_LED_RADIO 3
#define WL_LED_ARADIO 4
#define WL_LED_BRADIO 5
#define WL_LED_BGMODE 6
#define WL_LED_WI1 7
#define WL_LED_WI2 8
#define WL_LED_WI3 9
#define WL_LED_ASSOC 10
#define WL_LED_INACTIVE 11
#define WL_LED_ASSOCACT 12
#define WL_LED_NUMBEHAVIOR 13
#define WL_LED_BEH_MASK 0x7f
#define WL_LED_AL_MASK 0x80
#define WL_NUMCHANNELS 64
#define WL_NUMCHANSPECS 100
#define WL_WDS_WPA_ROLE_AUTH 0
#define WL_WDS_WPA_ROLE_SUP 1
#define WL_WDS_WPA_ROLE_AUTO 255
#define WL_EVENTING_MASK_LEN ((WLC_E_LAST + 7) / 8)
#define VNDR_IE_CMD_LEN 4
#define VNDR_IE_BEACON_FLAG 0x1
#define VNDR_IE_PRBRSP_FLAG 0x2
#define VNDR_IE_ASSOCRSP_FLAG 0x4
#define VNDR_IE_AUTHRSP_FLAG 0x8
#define VNDR_IE_PRBREQ_FLAG 0x10
#define VNDR_IE_ASSOCREQ_FLAG 0x20
#define VNDR_IE_CUSTOM_FLAG 0x100
#define VNDR_IE_INFO_HDR_LEN (sizeof(uint32_t))
struct wl_vndr_ie
{
uint8_t id;
uint8_t len;
uint8_t oui[3];
uint8_t data[1];
};
typedef struct wl_vndr_ie wl_vndr_ie_t;
typedef struct
{
uint32_t pktflag;
wl_vndr_ie_t vndr_ie_data;
} vndr_ie_info_t;
typedef struct
{
int32_t iecount;
vndr_ie_info_t vndr_ie_list[1];
} vndr_ie_buf_t;
typedef struct
{
int8_t cmd[VNDR_IE_CMD_LEN];
vndr_ie_buf_t vndr_ie_buffer;
} vndr_ie_setbuf_t;
#define WL_JOIN_PREF_RSSI 1
#define WL_JOIN_PREF_WPA 2
#define WL_JOIN_PREF_BAND 3
#define WLJP_BAND_ASSOC_PREF 255
#define WL_WPA_ACP_MCS_ANY "\x00\x00\x00\x00"
struct tsinfo_arg
{
uint8_t octets[3];
};
#define NFIFO 6
#define WL_CNT_T_VERSION 6
#define WL_CNT_EXT_T_VERSION 1
typedef struct
{
uint16_t version; /* see definition of WL_CNT_T_VERSION */
uint16_t length; /* length of entire structure */
/* transmit stat counters */
uint32_t txframe; /* tx data frames */
uint32_t txbyte; /* tx data bytes */
uint32_t txretrans; /* tx mac retransmits */
uint32_t txerror; /* tx data errors (derived: sum of others) */
uint32_t txctl; /* tx management frames */
uint32_t txprshort; /* tx short preamble frames */
uint32_t txserr; /* tx status errors */
uint32_t txnobuf; /* tx out of buffers errors */
uint32_t txnoassoc; /* tx discard because we're not associated */
uint32_t txrunt; /* tx runt frames */
uint32_t txchit; /* tx header cache hit (fastpath) */
uint32_t txcmiss; /* tx header cache miss (slowpath) */
/* transmit chip error counters */
uint32_t txuflo; /* tx fifo underflows */
uint32_t txphyerr; /* tx phy errors (indicated in tx status) */
uint32_t txphycrs; /* PR8861/8963 counter */
/* receive stat counters */
uint32_t rxframe; /* rx data frames */
uint32_t rxbyte; /* rx data bytes */
uint32_t rxerror; /* rx data errors (derived: sum of others) */
uint32_t rxctl; /* rx management frames */
uint32_t rxnobuf; /* rx out of buffers errors */
uint32_t rxnondata; /* rx non data frames in the data channel errors */
uint32_t rxbadds; /* rx bad DS errors */
uint32_t rxbadcm; /* rx bad control or management frames */
uint32_t rxfragerr; /* rx fragmentation errors */
uint32_t rxrunt; /* rx runt frames */
uint32_t rxgiant; /* rx giant frames */
uint32_t rxnoscb; /* rx no scb error */
uint32_t rxbadproto; /* rx invalid frames */
uint32_t rxbadsrcmac; /* rx frames with Invalid Src Mac */
uint32_t rxbadda; /* rx frames tossed for invalid da */
uint32_t rxfilter; /* rx frames filtered out */
/* receive chip error counters */
uint32_t rxoflo; /* rx fifo overflow errors */
uint32_t rxuflo[NFIFO]; /* rx dma descriptor underflow errors */
uint32_t d11cnt_txrts_off; /* d11cnt txrts value when reset d11cnt */
uint32_t d11cnt_rxcrc_off; /* d11cnt rxcrc value when reset d11cnt */
uint32_t d11cnt_txnocts_off; /* d11cnt txnocts value when reset d11cnt */
/* misc counters */
uint32_t dmade; /* tx/rx dma descriptor errors */
uint32_t dmada; /* tx/rx dma data errors */
uint32_t dmape; /* tx/rx dma descriptor protocol errors */
uint32_t reset; /* reset count */
uint32_t tbtt; /* cnts the TBTT int's */
uint32_t txdmawar; /* # occurrences of PR15420 workaround */
uint32_t pkt_callback_reg_fail; /* callbacks register failure */
/* MAC counters: 32-bit version of d11.h's macstat_t */
uint32_t txallfrm; /* total number of frames sent, incl. Data, ACK, RTS, CTS,
* Control Management (includes retransmissions)
*/
uint32_t txrtsfrm; /* number of RTS sent out by the MAC */
uint32_t txctsfrm; /* number of CTS sent out by the MAC */
uint32_t txackfrm; /* number of ACK frames sent out */
uint32_t txdnlfrm; /* Not used */
uint32_t txbcnfrm; /* beacons transmitted */
uint32_t txfunfl[8]; /* per-fifo tx underflows */
uint32_t txtplunfl; /* Template underflows (mac was too slow to transmit ACK/CTS
* or BCN)
*/
uint32_t txphyerror; /* Transmit phy error, type of error is reported in tx-status for
* driver enqueued frames
*/
uint32_t rxfrmtoolong; /* Received frame longer than legal limit (2346 bytes) */
uint32_t rxfrmtooshrt; /* Received frame did not contain enough bytes for its frame type */
uint32_t rxinvmachdr; /* Either the protocol version != 0 or frame type not
* data/control/management
*/
uint32_t rxbadfcs; /* number of frames for which the CRC check failed in the MAC */
uint32_t rxbadplcp; /* parity check of the PLCP header failed */
uint32_t rxcrsglitch; /* PHY was able to correlate the preamble but not the header */
uint32_t rxstrt; /* Number of received frames with a good PLCP
* (i.e. passing parity check)
*/
uint32_t rxdfrmucastmbss; /* Number of received DATA frames with good FCS and matching RA */
uint32_t rxmfrmucastmbss; /* number of received mgmt frames with good FCS and matching RA */
uint32_t rxcfrmucast; /* number of received CNTRL frames with good FCS and matching RA */
uint32_t rxrtsucast; /* number of unicast RTS addressed to the MAC (good FCS) */
uint32_t rxctsucast; /* number of unicast CTS addressed to the MAC (good FCS) */
uint32_t rxackucast; /* number of ucast ACKS received (good FCS) */
uint32_t rxdfrmocast; /* number of received DATA frames (good FCS and not matching RA) */
uint32_t rxmfrmocast; /* number of received MGMT frames (good FCS and not matching RA) */
uint32_t rxcfrmocast; /* number of received CNTRL frame (good FCS and not matching RA) */
uint32_t rxrtsocast; /* number of received RTS not addressed to the MAC */
uint32_t rxctsocast; /* number of received CTS not addressed to the MAC */
uint32_t rxdfrmmcast; /* number of RX Data multicast frames received by the MAC */
uint32_t rxmfrmmcast; /* number of RX Management multicast frames received by the MAC */
uint32_t rxcfrmmcast; /* number of RX Control multicast frames received by the MAC
* (unlikely to see these)
*/
uint32_t rxbeaconmbss; /* beacons received from member of BSS */
uint32_t rxdfrmucastobss; /* number of unicast frames addressed to the MAC from
* other BSS (WDS FRAME)
*/
uint32_t rxbeaconobss; /* beacons received from other BSS */
uint32_t rxrsptmout; /* Number of response timeouts for transmitted frames
* expecting a response
*/
uint32_t bcntxcancl; /* transmit beacons canceled due to receipt of beacon (IBSS) */
uint32_t rxf0ovfl; /* Number of receive fifo 0 overflows */
uint32_t rxf1ovfl; /* Number of receive fifo 1 overflows (obsolete) */
uint32_t rxf2ovfl; /* Number of receive fifo 2 overflows (obsolete) */
uint32_t txsfovfl; /* Number of transmit status fifo overflows (obsolete) */
uint32_t pmqovfl; /* Number of PMQ overflows */
uint32_t rxcgprqfrm; /* Number of received Probe requests that made it into
* the PRQ fifo
*/
uint32_t rxcgprsqovfl; /* Rx Probe Request Que overflow in the AP */
uint32_t txcgprsfail; /* Tx Probe Response Fail. AP sent probe response but did
* not get ACK
*/
uint32_t txcgprssuc; /* Tx Probe Response Success (ACK was received) */
uint32_t prs_timeout; /* Number of probe requests that were dropped from the PRQ
* fifo because a probe response could not be sent out within
* the time limit defined in M_PRS_MAXTIME
*/
uint32_t rxnack; /* XXX Number of NACKS received (Afterburner) */
uint32_t frmscons; /* XXX Number of frames completed without transmission because of an
* Afterburner re-queue
*/
uint32_t txnack; /* XXX Number of NACKs transmitted (Afterburner) */
uint32_t txglitch_nack; /* obsolete */
uint32_t txburst; /* obsolete */
/* 802.11 MIB counters, pp. 614 of 802.11 reaff doc. */
uint32_t txfrag; /* dot11TransmittedFragmentCount */
uint32_t txmulti; /* dot11MulticastTransmittedFrameCount */
uint32_t txfail; /* dot11FailedCount */
uint32_t txretry; /* dot11RetryCount */
uint32_t txretrie; /* dot11MultipleRetryCount */
uint32_t rxdup; /* dot11FrameduplicateCount */
uint32_t txrts; /* dot11RTSSuccessCount */
uint32_t txnocts; /* dot11RTSFailureCount */
uint32_t txnoack; /* dot11ACKFailureCount */
uint32_t rxfrag; /* dot11ReceivedFragmentCount */
uint32_t rxmulti; /* dot11MulticastReceivedFrameCount */
uint32_t rxcrc; /* dot11FCSErrorCount */
uint32_t txfrmsnt; /* dot11TransmittedFrameCount (bogus MIB?) */
uint32_t rxundec; /* dot11WEPUndecryptableCount */
/* WPA2 counters (see rxundec for DecryptFailureCount) */
uint32_t tkipmicfaill; /* TKIPLocalMICFailures */
uint32_t tkipcntrmsr; /* TKIPCounterMeasuresInvoked */
uint32_t tkipreplay; /* TKIPReplays */
uint32_t ccmpfmterr; /* CCMPFormatErrors */
uint32_t ccmpreplay; /* CCMPReplays */
uint32_t ccmpundec; /* CCMPDecryptErrors */
uint32_t fourwayfail; /* FourWayHandshakeFailures */
uint32_t wepundec; /* dot11WEPUndecryptableCount */
uint32_t wepicverr; /* dot11WEPICVErrorCount */
uint32_t decsuccess; /* DecryptSuccessCount */
uint32_t tkipicverr; /* TKIPICVErrorCount */
uint32_t wepexcluded; /* dot11WEPExcludedCount */
uint32_t rxundec_mcst; /* dot11WEPUndecryptableCount */
/* WPA2 counters (see rxundec for DecryptFailureCount) */
uint32_t tkipmicfaill_mcst; /* TKIPLocalMICFailures */
uint32_t tkipcntrmsr_mcst; /* TKIPCounterMeasuresInvoked */
uint32_t tkipreplay_mcst; /* TKIPReplays */
uint32_t ccmpfmterr_mcst; /* CCMPFormatErrors */
uint32_t ccmpreplay_mcst; /* CCMPReplays */
uint32_t ccmpundec_mcst; /* CCMPDecryptErrors */
uint32_t fourwayfail_mcst; /* FourWayHandshakeFailures */
uint32_t wepundec_mcst; /* dot11WEPUndecryptableCount */
uint32_t wepicverr_mcst; /* dot11WEPICVErrorCount */
uint32_t decsuccess_mcst; /* DecryptSuccessCount */
uint32_t tkipicverr_mcst; /* TKIPICVErrorCount */
uint32_t wepexcluded_mcst; /* dot11WEPExcludedCount */
uint32_t txchanrej; /* Tx frames suppressed due to channel rejection */
uint32_t txexptime; /* Tx frames suppressed due to timer expiration */
uint32_t psmwds; /* Count PSM watchdogs */
uint32_t phywatchdog; /* Count Phy watchdogs (triggered by ucode) */
/* MBSS counters, AP only */
uint32_t prq_entries_handled; /* PRQ entries read in */
uint32_t prq_undirected_entries; /* which were bcast bss & ssid */
uint32_t prq_bad_entries; /* which could not be translated to info */
uint32_t atim_suppress_count; /* TX suppressions on ATIM fifo */
uint32_t bcn_template_not_ready; /* Template marked in use on send bcn ... */
uint32_t bcn_template_not_ready_done; /* ...but "DMA done" interrupt rcvd */
uint32_t late_tbtt_dpc; /* TBTT DPC did not happen in time */
/* per-rate receive stat counters */
uint32_t rx1mbps; /* packets rx at 1Mbps */
uint32_t rx2mbps; /* packets rx at 2Mbps */
uint32_t rx5mbps5; /* packets rx at 5.5Mbps */
uint32_t rx6mbps; /* packets rx at 6Mbps */
uint32_t rx9mbps; /* packets rx at 9Mbps */
uint32_t rx11mbps; /* packets rx at 11Mbps */
uint32_t rx12mbps; /* packets rx at 12Mbps */
uint32_t rx18mbps; /* packets rx at 18Mbps */
uint32_t rx24mbps; /* packets rx at 24Mbps */
uint32_t rx36mbps; /* packets rx at 36Mbps */
uint32_t rx48mbps; /* packets rx at 48Mbps */
uint32_t rx54mbps; /* packets rx at 54Mbps */
uint32_t rx108mbps; /* packets rx at 108mbps */
uint32_t rx162mbps; /* packets rx at 162mbps */
uint32_t rx216mbps; /* packets rx at 216 mbps */
uint32_t rx270mbps; /* packets rx at 270 mbps */
uint32_t rx324mbps; /* packets rx at 324 mbps */
uint32_t rx378mbps; /* packets rx at 378 mbps */
uint32_t rx432mbps; /* packets rx at 432 mbps */
uint32_t rx486mbps; /* packets rx at 486 mbps */
uint32_t rx540mbps; /* packets rx at 540 mbps */
/* pkteng rx frame stats */
uint32_t pktengrxducast; /* unicast frames rxed by the pkteng code */
uint32_t pktengrxdmcast; /* multicast frames rxed by the pkteng code */
uint32_t rfdisable; /* count of radio disables */
uint32_t bphy_rxcrsglitch; /* PHY count of bphy glitches */
uint32_t txmpdu_sgi; /* count for sgi transmit */
uint32_t rxmpdu_sgi; /* count for sgi received */
uint32_t txmpdu_stbc; /* count for stbc transmit */
uint32_t rxmpdu_stbc; /* count for stbc received */
} wl_cnt_ver_six_t;
typedef struct {
uint16_t version; /* see definition of WL_CNT_T_VERSION */
uint16_t length; /* length of entire structure */
/* transmit stat counters */
uint32_t txframe; /* tx data frames */
uint32_t txbyte; /* tx data bytes */
uint32_t txretrans; /* tx mac retransmits */
uint32_t txerror; /* tx data errors (derived: sum of others) */
uint32_t txctl; /* tx management frames */
uint32_t txprshort; /* tx short preamble frames */
uint32_t txserr; /* tx status errors */
uint32_t txnobuf; /* tx out of buffers errors */
uint32_t txnoassoc; /* tx discard because we're not associated */
uint32_t txrunt; /* tx runt frames */
uint32_t txchit; /* tx header cache hit (fastpath) */
uint32_t txcmiss; /* tx header cache miss (slowpath) */
/* transmit chip error counters */
uint32_t txuflo; /* tx fifo underflows */
uint32_t txphyerr; /* tx phy errors (indicated in tx status) */
uint32_t txphycrs; /* PR8861/8963 counter */
/* receive stat counters */
uint32_t rxframe; /* rx data frames */
uint32_t rxbyte; /* rx data bytes */
uint32_t rxerror; /* rx data errors (derived: sum of others) */
uint32_t rxctl; /* rx management frames */
uint32_t rxnobuf; /* rx out of buffers errors */
uint32_t rxnondata; /* rx non data frames in the data channel errors */
uint32_t rxbadds; /* rx bad DS errors */
uint32_t rxbadcm; /* rx bad control or management frames */
uint32_t rxfragerr; /* rx fragmentation errors */
uint32_t rxrunt; /* rx runt frames */
uint32_t rxgiant; /* rx giant frames */
uint32_t rxnoscb; /* rx no scb error */
uint32_t rxbadproto; /* rx invalid frames */
uint32_t rxbadsrcmac; /* rx frames with Invalid Src Mac */
uint32_t rxbadda; /* rx frames tossed for invalid da */
uint32_t rxfilter; /* rx frames filtered out */
/* receive chip error counters */
uint32_t rxoflo; /* rx fifo overflow errors */
uint32_t rxuflo[NFIFO]; /* rx dma descriptor underflow errors */
uint32_t d11cnt_txrts_off; /* d11cnt txrts value when reset d11cnt */
uint32_t d11cnt_rxcrc_off; /* d11cnt rxcrc value when reset d11cnt */
uint32_t d11cnt_txnocts_off; /* d11cnt txnocts value when reset d11cnt */
/* misc counters */
uint32_t dmade; /* tx/rx dma descriptor errors */
uint32_t dmada; /* tx/rx dma data errors */
uint32_t dmape; /* tx/rx dma descriptor protocol errors */
uint32_t reset; /* reset count */
uint32_t tbtt; /* cnts the TBTT int's */
uint32_t txdmawar; /* # occurrences of PR15420 workaround */
uint32_t pkt_callback_reg_fail; /* callbacks register failure */
/* MAC counters: 32-bit version of d11.h's macstat_t */
uint32_t txallfrm; /* total number of frames sent, incl. Data, ACK, RTS, CTS,
* Control Management (includes retransmissions)
*/
uint32_t txrtsfrm; /* number of RTS sent out by the MAC */
uint32_t txctsfrm; /* number of CTS sent out by the MAC */
uint32_t txackfrm; /* number of ACK frames sent out */
uint32_t txdnlfrm; /* Not used */
uint32_t txbcnfrm; /* beacons transmitted */
uint32_t txfunfl[8]; /* per-fifo tx underflows */
uint32_t txtplunfl; /* Template underflows (mac was too slow to transmit ACK/CTS
* or BCN)
*/
uint32_t txphyerror; /* Transmit phy error, type of error is reported in tx-status for
* driver enqueued frames
*/
uint32_t rxfrmtoolong; /* Received frame longer than legal limit (2346 bytes) */
uint32_t rxfrmtooshrt; /* Received frame did not contain enough bytes for its frame type */
uint32_t rxinvmachdr; /* Either the protocol version != 0 or frame type not
* data/control/management
*/
uint32_t rxbadfcs; /* number of frames for which the CRC check failed in the MAC */
uint32_t rxbadplcp; /* parity check of the PLCP header failed */
uint32_t rxcrsglitch; /* PHY was able to correlate the preamble but not the header */
uint32_t rxstrt; /* Number of received frames with a good PLCP
* (i.e. passing parity check)
*/
uint32_t rxdfrmucastmbss; /* Number of received DATA frames with good FCS and matching RA */
uint32_t rxmfrmucastmbss; /* number of received mgmt frames with good FCS and matching RA */
uint32_t rxcfrmucast; /* number of received CNTRL frames with good FCS and matching RA */
uint32_t rxrtsucast; /* number of unicast RTS addressed to the MAC (good FCS) */
uint32_t rxctsucast; /* number of unicast CTS addressed to the MAC (good FCS) */
uint32_t rxackucast; /* number of ucast ACKS received (good FCS) */
uint32_t rxdfrmocast; /* number of received DATA frames (good FCS and not matching RA) */
uint32_t rxmfrmocast; /* number of received MGMT frames (good FCS and not matching RA) */
uint32_t rxcfrmocast; /* number of received CNTRL frame (good FCS and not matching RA) */
uint32_t rxrtsocast; /* number of received RTS not addressed to the MAC */
uint32_t rxctsocast; /* number of received CTS not addressed to the MAC */
uint32_t rxdfrmmcast; /* number of RX Data multicast frames received by the MAC */
uint32_t rxmfrmmcast; /* number of RX Management multicast frames received by the MAC */
uint32_t rxcfrmmcast; /* number of RX Control multicast frames received by the MAC
* (unlikely to see these)
*/
uint32_t rxbeaconmbss; /* beacons received from member of BSS */
uint32_t rxdfrmucastobss; /* number of unicast frames addressed to the MAC from
* other BSS (WDS FRAME)
*/
uint32_t rxbeaconobss; /* beacons received from other BSS */
uint32_t rxrsptmout; /* Number of response timeouts for transmitted frames
* expecting a response
*/
uint32_t bcntxcancl; /* transmit beacons canceled due to receipt of beacon (IBSS) */
uint32_t rxf0ovfl; /* Number of receive fifo 0 overflows */
uint32_t rxf1ovfl; /* Number of receive fifo 1 overflows (obsolete) */
uint32_t rxf2ovfl; /* Number of receive fifo 2 overflows (obsolete) */
uint32_t txsfovfl; /* Number of transmit status fifo overflows (obsolete) */
uint32_t pmqovfl; /* Number of PMQ overflows */
uint32_t rxcgprqfrm; /* Number of received Probe requests that made it into
* the PRQ fifo
*/
uint32_t rxcgprsqovfl; /* Rx Probe Request Que overflow in the AP */
uint32_t txcgprsfail; /* Tx Probe Response Fail. AP sent probe response but did
* not get ACK
*/
uint32_t txcgprssuc; /* Tx Probe Response Success (ACK was received) */
uint32_t prs_timeout; /* Number of probe requests that were dropped from the PRQ
* fifo because a probe response could not be sent out within
* the time limit defined in M_PRS_MAXTIME
*/
uint32_t rxnack; /* obsolete */
uint32_t frmscons; /* obsolete */
uint32_t txnack; /* obsolete */
uint32_t txglitch_nack; /* obsolete */
uint32_t txburst; /* obsolete */
/* 802.11 MIB counters, pp. 614 of 802.11 reaff doc. */
uint32_t txfrag; /* dot11TransmittedFragmentCount */
uint32_t txmulti; /* dot11MulticastTransmittedFrameCount */
uint32_t txfail; /* dot11FailedCount */
uint32_t txretry; /* dot11RetryCount */
uint32_t txretrie; /* dot11MultipleRetryCount */
uint32_t rxdup; /* dot11FrameduplicateCount */
uint32_t txrts; /* dot11RTSSuccessCount */
uint32_t txnocts; /* dot11RTSFailureCount */
uint32_t txnoack; /* dot11ACKFailureCount */
uint32_t rxfrag; /* dot11ReceivedFragmentCount */
uint32_t rxmulti; /* dot11MulticastReceivedFrameCount */
uint32_t rxcrc; /* dot11FCSErrorCount */
uint32_t txfrmsnt; /* dot11TransmittedFrameCount (bogus MIB?) */
uint32_t rxundec; /* dot11WEPUndecryptableCount */
/* WPA2 counters (see rxundec for DecryptFailureCount) */
uint32_t tkipmicfaill; /* TKIPLocalMICFailures */
uint32_t tkipcntrmsr; /* TKIPCounterMeasuresInvoked */
uint32_t tkipreplay; /* TKIPReplays */
uint32_t ccmpfmterr; /* CCMPFormatErrors */
uint32_t ccmpreplay; /* CCMPReplays */
uint32_t ccmpundec; /* CCMPDecryptErrors */
uint32_t fourwayfail; /* FourWayHandshakeFailures */
uint32_t wepundec; /* dot11WEPUndecryptableCount */
uint32_t wepicverr; /* dot11WEPICVErrorCount */
uint32_t decsuccess; /* DecryptSuccessCount */
uint32_t tkipicverr; /* TKIPICVErrorCount */
uint32_t wepexcluded; /* dot11WEPExcludedCount */
uint32_t txchanrej; /* Tx frames suppressed due to channel rejection */
uint32_t psmwds; /* Count PSM watchdogs */
uint32_t phywatchdog; /* Count Phy watchdogs (triggered by ucode) */
/* MBSS counters, AP only */
uint32_t prq_entries_handled; /* PRQ entries read in */
uint32_t prq_undirected_entries; /* which were bcast bss & ssid */
uint32_t prq_bad_entries; /* which could not be translated to info */
uint32_t atim_suppress_count; /* TX suppressions on ATIM fifo */
uint32_t bcn_template_not_ready; /* Template marked in use on send bcn ... */
uint32_t bcn_template_not_ready_done; /* ...but "DMA done" interrupt rcvd */
uint32_t late_tbtt_dpc; /* TBTT DPC did not happen in time */
/* per-rate receive stat counters */
uint32_t rx1mbps; /* packets rx at 1Mbps */
uint32_t rx2mbps; /* packets rx at 2Mbps */
uint32_t rx5mbps5; /* packets rx at 5.5Mbps */
uint32_t rx6mbps; /* packets rx at 6Mbps */
uint32_t rx9mbps; /* packets rx at 9Mbps */
uint32_t rx11mbps; /* packets rx at 11Mbps */
uint32_t rx12mbps; /* packets rx at 12Mbps */
uint32_t rx18mbps; /* packets rx at 18Mbps */
uint32_t rx24mbps; /* packets rx at 24Mbps */
uint32_t rx36mbps; /* packets rx at 36Mbps */
uint32_t rx48mbps; /* packets rx at 48Mbps */
uint32_t rx54mbps; /* packets rx at 54Mbps */
uint32_t rx108mbps; /* packets rx at 108mbps */
uint32_t rx162mbps; /* packets rx at 162mbps */
uint32_t rx216mbps; /* packets rx at 216 mbps */
uint32_t rx270mbps; /* packets rx at 270 mbps */
uint32_t rx324mbps; /* packets rx at 324 mbps */
uint32_t rx378mbps; /* packets rx at 378 mbps */
uint32_t rx432mbps; /* packets rx at 432 mbps */
uint32_t rx486mbps; /* packets rx at 486 mbps */
uint32_t rx540mbps; /* packets rx at 540 mbps */
/* pkteng rx frame stats */
uint32_t pktengrxducast; /* unicast frames rxed by the pkteng code */
uint32_t pktengrxdmcast; /* multicast frames rxed by the pkteng code */
uint32_t rfdisable; /* count of radio disables */
uint32_t bphy_rxcrsglitch; /* PHY count of bphy glitches */
uint32_t txexptime; /* Tx frames suppressed due to timer expiration */
uint32_t txmpdu_sgi; /* count for sgi transmit */
uint32_t rxmpdu_sgi; /* count for sgi received */
uint32_t txmpdu_stbc; /* count for stbc transmit */
uint32_t rxmpdu_stbc; /* count for stbc received */
uint32_t rxundec_mcst; /* dot11WEPUndecryptableCount */
/* WPA2 counters (see rxundec for DecryptFailureCount) */
uint32_t tkipmicfaill_mcst; /* TKIPLocalMICFailures */
uint32_t tkipcntrmsr_mcst; /* TKIPCounterMeasuresInvoked */
uint32_t tkipreplay_mcst; /* TKIPReplays */
uint32_t ccmpfmterr_mcst; /* CCMPFormatErrors */
uint32_t ccmpreplay_mcst; /* CCMPReplays */
uint32_t ccmpundec_mcst; /* CCMPDecryptErrors */
uint32_t fourwayfail_mcst; /* FourWayHandshakeFailures */
uint32_t wepundec_mcst; /* dot11WEPUndecryptableCount */
uint32_t wepicverr_mcst; /* dot11WEPICVErrorCount */
uint32_t decsuccess_mcst; /* DecryptSuccessCount */
uint32_t tkipicverr_mcst; /* TKIPICVErrorCount */
uint32_t wepexcluded_mcst; /* dot11WEPExcludedCount */
uint32_t dma_hang; /* count for stbc received */
} wl_cnt_ver_seven_t;
typedef struct {
uint16_t version; /* see definition of WL_CNT_T_VERSION */
uint16_t length; /* length of entire structure */
/* transmit stat counters */
uint32_t txframe; /* tx data frames */
uint32_t txbyte; /* tx data bytes */
uint32_t txretrans; /* tx mac retransmits */
uint32_t txerror; /* tx data errors (derived: sum of others) */
uint32_t txctl; /* tx management frames */
uint32_t txprshort; /* tx short preamble frames */
uint32_t txserr; /* tx status errors */
uint32_t txnobuf; /* tx out of buffers errors */
uint32_t txnoassoc; /* tx discard because we're not associated */
uint32_t txrunt; /* tx runt frames */
uint32_t txchit; /* tx header cache hit (fastpath) */
uint32_t txcmiss; /* tx header cache miss (slowpath) */
/* transmit chip error counters */
uint32_t txuflo; /* tx fifo underflows */
uint32_t txphyerr; /* tx phy errors (indicated in tx status) */
uint32_t txphycrs; /* PR8861/8963 counter */
/* receive stat counters */
uint32_t rxframe; /* rx data frames */
uint32_t rxbyte; /* rx data bytes */
uint32_t rxerror; /* rx data errors (derived: sum of others) */
uint32_t rxctl; /* rx management frames */
uint32_t rxnobuf; /* rx out of buffers errors */
uint32_t rxnondata; /* rx non data frames in the data channel errors */
uint32_t rxbadds; /* rx bad DS errors */
uint32_t rxbadcm; /* rx bad control or management frames */
uint32_t rxfragerr; /* rx fragmentation errors */
uint32_t rxrunt; /* rx runt frames */
uint32_t rxgiant; /* rx giant frames */
uint32_t rxnoscb; /* rx no scb error */
uint32_t rxbadproto; /* rx invalid frames */
uint32_t rxbadsrcmac; /* rx frames with Invalid Src Mac */
uint32_t rxbadda; /* rx frames tossed for invalid da */
uint32_t rxfilter; /* rx frames filtered out */
/* receive chip error counters */
uint32_t rxoflo; /* rx fifo overflow errors */
uint32_t rxuflo[NFIFO]; /* rx dma descriptor underflow errors */
uint32_t d11cnt_txrts_off; /* d11cnt txrts value when reset d11cnt */
uint32_t d11cnt_rxcrc_off; /* d11cnt rxcrc value when reset d11cnt */
uint32_t d11cnt_txnocts_off; /* d11cnt txnocts value when reset d11cnt */
/* misc counters */
uint32_t dmade; /* tx/rx dma descriptor errors */
uint32_t dmada; /* tx/rx dma data errors */
uint32_t dmape; /* tx/rx dma descriptor protocol errors */
uint32_t reset; /* reset count */
uint32_t tbtt; /* cnts the TBTT int's */
uint32_t txdmawar; /* # occurrences of PR15420 workaround */
uint32_t pkt_callback_reg_fail; /* callbacks register failure */
/* MAC counters: 32-bit version of d11.h's macstat_t */
uint32_t txallfrm; /* total number of frames sent, incl. Data, ACK, RTS, CTS,
* Control Management (includes retransmissions)
*/
uint32_t txrtsfrm; /* number of RTS sent out by the MAC */
uint32_t txctsfrm; /* number of CTS sent out by the MAC */
uint32_t txackfrm; /* number of ACK frames sent out */
uint32_t txdnlfrm; /* Not used */
uint32_t txbcnfrm; /* beacons transmitted */
uint32_t txfunfl[6]; /* per-fifo tx underflows */
uint32_t rxtoolate; /* receive too late */
uint32_t txfbw; /* transmit at fallback bw (dynamic bw) */
uint32_t txtplunfl; /* Template underflows (mac was too slow to transmit ACK/CTS
* or BCN)
*/
uint32_t txphyerror; /* Transmit phy error, type of error is reported in tx-status for
* driver enqueued frames
*/
uint32_t rxfrmtoolong; /* Received frame longer than legal limit (2346 bytes) */
uint32_t rxfrmtooshrt; /* Received frame did not contain enough bytes for its frame type */
uint32_t rxinvmachdr; /* Either the protocol version != 0 or frame type not
* data/control/management
*/
uint32_t rxbadfcs; /* number of frames for which the CRC check failed in the MAC */
uint32_t rxbadplcp; /* parity check of the PLCP header failed */
uint32_t rxcrsglitch; /* PHY was able to correlate the preamble but not the header */
uint32_t rxstrt; /* Number of received frames with a good PLCP
* (i.e. passing parity check)
*/
uint32_t rxdfrmucastmbss; /* Number of received DATA frames with good FCS and matching RA */
uint32_t rxmfrmucastmbss; /* number of received mgmt frames with good FCS and matching RA */
uint32_t rxcfrmucast; /* number of received CNTRL frames with good FCS and matching RA */
uint32_t rxrtsucast; /* number of unicast RTS addressed to the MAC (good FCS) */
uint32_t rxctsucast; /* number of unicast CTS addressed to the MAC (good FCS) */
uint32_t rxackucast; /* number of ucast ACKS received (good FCS) */
uint32_t rxdfrmocast; /* number of received DATA frames (good FCS and not matching RA) */
uint32_t rxmfrmocast; /* number of received MGMT frames (good FCS and not matching RA) */
uint32_t rxcfrmocast; /* number of received CNTRL frame (good FCS and not matching RA) */
uint32_t rxrtsocast; /* number of received RTS not addressed to the MAC */
uint32_t rxctsocast; /* number of received CTS not addressed to the MAC */
uint32_t rxdfrmmcast; /* number of RX Data multicast frames received by the MAC */
uint32_t rxmfrmmcast; /* number of RX Management multicast frames received by the MAC */
uint32_t rxcfrmmcast; /* number of RX Control multicast frames received by the MAC
* (unlikely to see these)
*/
uint32_t rxbeaconmbss; /* beacons received from member of BSS */
uint32_t rxdfrmucastobss; /* number of unicast frames addressed to the MAC from
* other BSS (WDS FRAME)
*/
uint32_t rxbeaconobss; /* beacons received from other BSS */
uint32_t rxrsptmout; /* Number of response timeouts for transmitted frames
* expecting a response
*/
uint32_t bcntxcancl; /* transmit beacons canceled due to receipt of beacon (IBSS) */
uint32_t rxf0ovfl; /* Number of receive fifo 0 overflows */
uint32_t rxf1ovfl; /* Number of receive fifo 1 overflows (obsolete) */
uint32_t rxf2ovfl; /* Number of receive fifo 2 overflows (obsolete) */
uint32_t txsfovfl; /* Number of transmit status fifo overflows (obsolete) */
uint32_t pmqovfl; /* Number of PMQ overflows */
uint32_t rxcgprqfrm; /* Number of received Probe requests that made it into
* the PRQ fifo
*/
uint32_t rxcgprsqovfl; /* Rx Probe Request Que overflow in the AP */
uint32_t txcgprsfail; /* Tx Probe Response Fail. AP sent probe response but did
* not get ACK
*/
uint32_t txcgprssuc; /* Tx Probe Response Success (ACK was received) */
uint32_t prs_timeout; /* Number of probe requests that were dropped from the PRQ
* fifo because a probe response could not be sent out within
* the time limit defined in M_PRS_MAXTIME
*/
uint32_t rxnack; /* obsolete */
uint32_t frmscons; /* obsolete */
uint32_t txnack; /* obsolete */
uint32_t rxback; /* blockack rxcnt */
uint32_t txback; /* blockack txcnt */
/* 802.11 MIB counters, pp. 614 of 802.11 reaff doc. */
uint32_t txfrag; /* dot11TransmittedFragmentCount */
uint32_t txmulti; /* dot11MulticastTransmittedFrameCount */
uint32_t txfail; /* dot11FailedCount */
uint32_t txretry; /* dot11RetryCount */
uint32_t txretrie; /* dot11MultipleRetryCount */
uint32_t rxdup; /* dot11FrameduplicateCount */
uint32_t txrts; /* dot11RTSSuccessCount */
uint32_t txnocts; /* dot11RTSFailureCount */
uint32_t txnoack; /* dot11ACKFailureCount */
uint32_t rxfrag; /* dot11ReceivedFragmentCount */
uint32_t rxmulti; /* dot11MulticastReceivedFrameCount */
uint32_t rxcrc; /* dot11FCSErrorCount */
uint32_t txfrmsnt; /* dot11TransmittedFrameCount (bogus MIB?) */
uint32_t rxundec; /* dot11WEPUndecryptableCount */
/* WPA2 counters (see rxundec for DecryptFailureCount) */
uint32_t tkipmicfaill; /* TKIPLocalMICFailures */
uint32_t tkipcntrmsr; /* TKIPCounterMeasuresInvoked */
uint32_t tkipreplay; /* TKIPReplays */
uint32_t ccmpfmterr; /* CCMPFormatErrors */
uint32_t ccmpreplay; /* CCMPReplays */
uint32_t ccmpundec; /* CCMPDecryptErrors */
uint32_t fourwayfail; /* FourWayHandshakeFailures */
uint32_t wepundec; /* dot11WEPUndecryptableCount */
uint32_t wepicverr; /* dot11WEPICVErrorCount */
uint32_t decsuccess; /* DecryptSuccessCount */
uint32_t tkipicverr; /* TKIPICVErrorCount */
uint32_t wepexcluded; /* dot11WEPExcludedCount */
uint32_t txchanrej; /* Tx frames suppressed due to channel rejection */
uint32_t psmwds; /* Count PSM watchdogs */
uint32_t phywatchdog; /* Count Phy watchdogs (triggered by ucode) */
/* MBSS counters, AP only */
uint32_t prq_entries_handled; /* PRQ entries read in */
uint32_t prq_undirected_entries; /* which were bcast bss & ssid */
uint32_t prq_bad_entries; /* which could not be translated to info */
uint32_t atim_suppress_count; /* TX suppressions on ATIM fifo */
uint32_t bcn_template_not_ready; /* Template marked in use on send bcn ... */
uint32_t bcn_template_not_ready_done; /* ...but "DMA done" interrupt rcvd */
uint32_t late_tbtt_dpc; /* TBTT DPC did not happen in time */
/* per-rate receive stat counters */
uint32_t rx1mbps; /* packets rx at 1Mbps */
uint32_t rx2mbps; /* packets rx at 2Mbps */
uint32_t rx5mbps5; /* packets rx at 5.5Mbps */
uint32_t rx6mbps; /* packets rx at 6Mbps */
uint32_t rx9mbps; /* packets rx at 9Mbps */
uint32_t rx11mbps; /* packets rx at 11Mbps */
uint32_t rx12mbps; /* packets rx at 12Mbps */
uint32_t rx18mbps; /* packets rx at 18Mbps */
uint32_t rx24mbps; /* packets rx at 24Mbps */
uint32_t rx36mbps; /* packets rx at 36Mbps */
uint32_t rx48mbps; /* packets rx at 48Mbps */
uint32_t rx54mbps; /* packets rx at 54Mbps */
uint32_t rx108mbps; /* packets rx at 108mbps */
uint32_t rx162mbps; /* packets rx at 162mbps */
uint32_t rx216mbps; /* packets rx at 216 mbps */
uint32_t rx270mbps; /* packets rx at 270 mbps */
uint32_t rx324mbps; /* packets rx at 324 mbps */
uint32_t rx378mbps; /* packets rx at 378 mbps */
uint32_t rx432mbps; /* packets rx at 432 mbps */
uint32_t rx486mbps; /* packets rx at 486 mbps */
uint32_t rx540mbps; /* packets rx at 540 mbps */
/* pkteng rx frame stats */
uint32_t pktengrxducast; /* unicast frames rxed by the pkteng code */
uint32_t pktengrxdmcast; /* multicast frames rxed by the pkteng code */
uint32_t rfdisable; /* count of radio disables */
uint32_t bphy_rxcrsglitch; /* PHY count of bphy glitches */
uint32_t bphy_badplcp;
uint32_t txexptime; /* Tx frames suppressed due to timer expiration */
uint32_t txmpdu_sgi; /* count for sgi transmit */
uint32_t rxmpdu_sgi; /* count for sgi received */
uint32_t txmpdu_stbc; /* count for stbc transmit */
uint32_t rxmpdu_stbc; /* count for stbc received */
uint32_t rxundec_mcst; /* dot11WEPUndecryptableCount */
/* WPA2 counters (see rxundec for DecryptFailureCount) */
uint32_t tkipmicfaill_mcst; /* TKIPLocalMICFailures */
uint32_t tkipcntrmsr_mcst; /* TKIPCounterMeasuresInvoked */
uint32_t tkipreplay_mcst; /* TKIPReplays */
uint32_t ccmpfmterr_mcst; /* CCMPFormatErrors */
uint32_t ccmpreplay_mcst; /* CCMPReplays */
uint32_t ccmpundec_mcst; /* CCMPDecryptErrors */
uint32_t fourwayfail_mcst; /* FourWayHandshakeFailures */
uint32_t wepundec_mcst; /* dot11WEPUndecryptableCount */
uint32_t wepicverr_mcst; /* dot11WEPICVErrorCount */
uint32_t decsuccess_mcst; /* DecryptSuccessCount */
uint32_t tkipicverr_mcst; /* TKIPICVErrorCount */
uint32_t wepexcluded_mcst; /* dot11WEPExcludedCount */
uint32_t dma_hang; /* count for dma hang */
uint32_t reinit; /* count for reinit */
uint32_t pstatxucast; /* count of ucast frames xmitted on all psta assoc */
uint32_t pstatxnoassoc; /* count of txnoassoc frames xmitted on all psta assoc */
uint32_t pstarxucast; /* count of ucast frames received on all psta assoc */
uint32_t pstarxbcmc; /* count of bcmc frames received on all psta */
uint32_t pstatxbcmc; /* count of bcmc frames transmitted on all psta */
uint32_t cso_passthrough; /* hw cso required but passthrough */
uint32_t cso_normal; /* hw cso hdr for normal process */
uint32_t chained; /* number of frames chained */
uint32_t chainedsz1; /* number of chain size 1 frames */
uint32_t unchained; /* number of frames not chained */
uint32_t maxchainsz; /* max chain size so far */
uint32_t currchainsz; /* current chain size */
uint32_t rxdrop20s; /* drop secondary cnt */
} wl_cnt_ver_eight_t;
typedef struct
{
uint16_t version;
uint16_t length;
uint32_t rxampdu_sgi;
uint32_t rxampdu_stbc;
uint32_t rxmpdu_sgi;
uint32_t rxmpdu_stbc;
uint32_t rxmcs0_40M;
uint32_t rxmcs1_40M;
uint32_t rxmcs2_40M;
uint32_t rxmcs3_40M;
uint32_t rxmcs4_40M;
uint32_t rxmcs5_40M;
uint32_t rxmcs6_40M;
uint32_t rxmcs7_40M;
uint32_t rxmcs32_40M;
uint32_t txfrmsnt_20Mlo;
uint32_t txfrmsnt_20Mup;
uint32_t txfrmsnt_40M;
uint32_t rx_20ul;
} wl_cnt_ext_t;
#define WL_RXDIV_STATS_T_VERSION 1
typedef struct
{
uint16_t version;
uint16_t length;
uint32_t rxant[4];
} wl_rxdiv_stats_t;
#define WL_DELTA_STATS_T_VERSION 1
typedef struct
{
uint16_t version;
uint16_t length;
uint32_t txframe;
uint32_t txbyte;
uint32_t txretrans;
uint32_t txfail;
uint32_t rxframe;
uint32_t rxbyte;
uint32_t rx1mbps;
uint32_t rx2mbps;
uint32_t rx5mbps5;
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 rx108mbps;
uint32_t rx162mbps;
uint32_t rx216mbps;
uint32_t rx270mbps;
uint32_t rx324mbps;
uint32_t rx378mbps;
uint32_t rx432mbps;
uint32_t rx486mbps;
uint32_t rx540mbps;
} wl_delta_stats_t;
#define WL_WME_CNT_VERSION 1
typedef struct
{
uint32_t packets;
uint32_t bytes;
} wl_traffic_stats_t;
#define AC_COUNT 4
typedef struct
{
uint16_t version;
uint16_t length;
wl_traffic_stats_t tx[AC_COUNT];
wl_traffic_stats_t tx_failed[AC_COUNT];
wl_traffic_stats_t rx[AC_COUNT];
wl_traffic_stats_t rx_failed[AC_COUNT];
wl_traffic_stats_t forward[AC_COUNT];
wl_traffic_stats_t tx_expired[AC_COUNT];
} wl_wme_cnt_t;
typedef struct wl_mkeep_alive_pkt {
uint16_t version; /* Version for mkeep_alive */
uint16_t length; /* length of fixed parameters */
uint32_t period_msec; /* repeat interval msecs */
uint16_t len_bytes; /* packet length */
uint8_t keep_alive_id; /* 0 - 3 for N = 4 */
uint8_t data[1]; /* Packet data */
} wl_mkeep_alive_pkt_t;
#define WL_MKEEP_ALIVE_VERSION 1
#define WL_MKEEP_ALIVE_FIXED_LEN offsetof(wl_mkeep_alive_pkt_t, data)
#define WL_MKEEP_ALIVE_PRECISION 500
#if !defined(ESTA_POSTMOGRIFY_REMOVAL)
#ifdef WLBA
#define WLC_BA_CNT_VERSION 1
typedef struct wlc_ba_cnt
{
uint16_t version;
uint16_t length;
uint32_t txpdu;
uint32_t txsdu;
uint32_t txfc;
uint32_t txfci;
uint32_t txretrans;
uint32_t txbatimer;
uint32_t txdrop;
uint32_t txaddbareq;
uint32_t txaddbaresp;
uint32_t txdelba;
uint32_t txba;
uint32_t txbar;
uint32_t txpad[4];
uint32_t rxpdu;
uint32_t rxqed;
uint32_t rxdup;
uint32_t rxnobuf;
uint32_t rxaddbareq;
uint32_t rxaddbaresp;
uint32_t rxdelba;
uint32_t rxba;
uint32_t rxbar;
uint32_t rxinvba;
uint32_t rxbaholes;
uint32_t rxunexp;
uint32_t rxpad[4];
}wlc_ba_cnt_t;
#endif
struct ampdu_tid_control
{
uint8_t tid;
uint8_t enable;
};
struct wl_msglevel2
{
uint32_t low;
uint32_t high;
};
struct ampdu_ea_tid
{
wl_ether_addr_t ea;
uint8_t tid;
};
struct ampdu_retry_tid
{
uint8_t tid;
uint8_t retry;
};
struct ampdu_ba_sizes
{
uint8_t ba_tx_wsize;
uint8_t ba_rx_wsize;
};
#define DPT_DISCOVERY_MANUAL 0x01
#define DPT_DISCOVERY_AUTO 0x02
#define DPT_DISCOVERY_SCAN 0x04
#define DPT_PATHSEL_AUTO 0
#define DPT_PATHSEL_DIRECT 1
#define DPT_PATHSEL_APPATH 2
#define DPT_DENY_LIST_ADD 1
#define DPT_DENY_LIST_REMOVE 2
#define DPT_MANUAL_EP_CREATE 1
#define DPT_MANUAL_EP_MODIFY 2
#define DPT_MANUAL_EP_DELETE 3
typedef struct dpt_iovar
{
wl_ether_addr_t ea;
uint8_t mode;
uint32_t pad;
} dpt_iovar_t;
#define DPT_STATUS_ACTIVE 0x01
#define DPT_STATUS_AES 0x02
#define DPT_STATUS_FAILED 0x04
#define DPT_FNAME_LEN 48
typedef struct dpt_status
{
uint8_t status;
uint8_t fnlen;
uint8_t name[DPT_FNAME_LEN];
uint32_t rssi;
sta_info_t sta;
} dpt_status_t;
typedef struct dpt_list
{
uint32_t num;
dpt_status_t status[1];
} dpt_list_t;
typedef struct dpt_fname
{
uint8_t len;
uint8_t name[DPT_FNAME_LEN];
} dpt_fname_t;
#define BDD_FNAME_LEN 32
typedef struct bdd_fname
{
uint8_t len;
uint8_t name[BDD_FNAME_LEN];
} bdd_fname_t;
struct ts_list
{
int32_t count;
struct tsinfo_arg tsinfo[1];
};
typedef struct tspec_arg
{
uint16_t version;
uint16_t length;
uint32_t flag;
struct tsinfo_arg tsinfo;
uint16_t nom_msdu_size;
uint16_t max_msdu_size;
uint32_t min_srv_interval;
uint32_t max_srv_interval;
uint32_t inactivity_interval;
uint32_t suspension_interval;
uint32_t srv_start_time;
uint32_t min_data_rate;
uint32_t mean_data_rate;
uint32_t peak_data_rate;
uint32_t max_burst_size;
uint32_t delay_bound;
uint32_t min_phy_rate;
uint16_t surplus_bw;
uint16_t medium_time;
uint8_t dialog_token;
} tspec_arg_t;
typedef struct tspec_per_sta_arg
{
wl_ether_addr_t ea;
struct tspec_arg ts;
} tspec_per_sta_arg_t;
typedef struct wme_max_bandwidth
{
uint32_t ac[AC_COUNT];
} wme_max_bandwidth_t;
#define WL_WME_MBW_PARAMS_IO_BYTES (sizeof(wme_max_bandwidth_t))
#define TSPEC_ARG_VERSION 2
#define TSPEC_ARG_LENGTH 55
#define TSPEC_DEFAULT_DIALOG_TOKEN 42
#define TSPEC_DEFAULT_SBW_FACTOR 0x3000
#define TSPEC_PENDING 0
#define TSPEC_ACCEPTED 1
#define TSPEC_REJECTED 2
#define TSPEC_UNKNOWN 3
#define TSPEC_STATUS_MASK 7
#ifdef BCMCCX
#define WL_WLAN_ASSOC_REASON_NORMAL_NETWORK 0
#define WL_WLAN_ASSOC_REASON_ROAM_FROM_CELLULAR_NETWORK 1
#define WL_WLAN_ASSOC_REASON_ROAM_FROM_LAN 2
#define WL_WLAN_ASSOC_REASON_MAX 2
#endif
#ifdef WLAFTERBURNER
#define WL_SWFL_ABBFL 0x0001
#define WL_SWFL_ABENCORE 0x0002
#endif
#define WL_SWFL_NOHWRADIO 0x0004
#define WL_LIFETIME_MAX 0xFFFF
typedef struct wl_lifetime
{
uint32_t ac;
uint32_t lifetime;
} wl_lifetime_t;
typedef struct wl_chan_switch
{
uint8_t mode;
uint8_t count;
wl_chanspec_t chspec;
uint8_t reg;
} wl_chan_switch_t;
#endif
#define WLC_ROAM_TRIGGER_DEFAULT 0
#define WLC_ROAM_TRIGGER_BANDWIDTH 1
#define WLC_ROAM_TRIGGER_DISTANCE 2
#define WLC_ROAM_TRIGGER_MAX_VALUE 2
enum
{
PFN_LIST_ORDER, PFN_RSSI
};
#define SORT_CRITERIA_BIT 0
#define AUTO_NET_SWITCH_BIT 1
#define ENABLE_BKGRD_SCAN_BIT 2
#define IMMEDIATE_SCAN_BIT 3
#define AUTO_CONNECT_BIT 4
#define SORT_CRITERIA_MASK 0x01
#define AUTO_NET_SWITCH_MASK 0x02
#define ENABLE_BKGRD_SCAN_MASK 0x04
#define IMMEDIATE_SCAN_MASK 0x08
#define AUTO_CONNECT_MASK 0x10
#define PFN_VERSION 1
typedef struct wl_pfn_param
{
int32_t version;
int32_t scan_freq;
int32_t lost_network_timeout;
int16_t flags;
int16_t rssi_margin;
} wl_pfn_param_t;
typedef struct wl_pfn
{
wlc_ssid_t ssid;
int32_t bss_type;
int32_t infra;
int32_t auth;
uint32_t wpa_auth;
int32_t wsec;
#ifdef WLPFN_AUTO_CONNECT
union
{
wl_wsec_key_t sec_key;
wsec_pmk_t wpa_sec_key;
}pfn_security;
#endif
} wl_pfn_t;
#define TOE_TX_CSUM_OL 0x00000001
#define TOE_RX_CSUM_OL 0x00000002
#define TOE_ERRTEST_TX_CSUM 0x00000001
#define TOE_ERRTEST_RX_CSUM 0x00000002
#define TOE_ERRTEST_RX_CSUM2 0x00000004
struct toe_ol_stats_t
{
uint32_t tx_summed;
uint32_t tx_iph_fill;
uint32_t tx_tcp_fill;
uint32_t tx_udp_fill;
uint32_t tx_icmp_fill;
uint32_t rx_iph_good;
uint32_t rx_iph_bad;
uint32_t rx_tcp_good;
uint32_t rx_tcp_bad;
uint32_t rx_udp_good;
uint32_t rx_udp_bad;
uint32_t rx_icmp_good;
uint32_t rx_icmp_bad;
uint32_t tx_tcp_errinj;
uint32_t tx_udp_errinj;
uint32_t tx_icmp_errinj;
uint32_t rx_tcp_errinj;
uint32_t rx_udp_errinj;
uint32_t rx_icmp_errinj;
};
#define ARP_OL_AGENT 0x00000001
#define ARP_OL_SNOOP 0x00000002
#define ARP_OL_HOST_AUTO_REPLY 0x00000004
#define ARP_OL_PEER_AUTO_REPLY 0x00000008
#define ARP_ERRTEST_REPLY_PEER 0x1
#define ARP_ERRTEST_REPLY_HOST 0x2
#define ARP_MULTIHOMING_MAX 8
struct arp_ol_stats_t
{
uint32_t host_ip_entries;
uint32_t host_ip_overflow;
uint32_t arp_table_entries;
uint32_t arp_table_overflow;
uint32_t host_request;
uint32_t host_reply;
uint32_t host_service;
uint32_t peer_request;
uint32_t peer_request_drop;
uint32_t peer_reply;
uint32_t peer_reply_drop;
uint32_t peer_service;
};
typedef struct wl_keep_alive_pkt
{
uint32_t period_msec;
uint16_t len_bytes;
uint8_t data[1];
} wl_keep_alive_pkt_t;
#define WL_KEEP_ALIVE_FIXED_LEN offsetof(wl_keep_alive_pkt_t, data)
typedef enum wl_pkt_filter_type
{
WL_PKT_FILTER_TYPE_PATTERN_MATCH
} wl_pkt_filter_type_t;
#define WL_PKT_FILTER_TYPE wl_pkt_filter_type_t
typedef struct wl_pkt_filter_pattern
{
uint32_t offset;
uint32_t size_bytes;
uint8_t mask_and_pattern[1];
} wl_pkt_filter_pattern_t;
typedef struct wl_pkt_filter
{
uint32_t id;
uint32_t type;
uint32_t negate_match;
union
{
wl_pkt_filter_pattern_t pattern;
} u;
} wl_pkt_filter_t;
#define WL_PKT_FILTER_FIXED_LEN offsetof(wl_pkt_filter_t, u)
#define WL_PKT_FILTER_PATTERN_FIXED_LEN offsetof(wl_pkt_filter_pattern_t, mask_and_pattern)
typedef struct wl_pkt_filter_enable
{
uint32_t id;
uint32_t enable;
} wl_pkt_filter_enable_t;
typedef struct wl_pkt_filter_list
{
uint32_t num;
wl_pkt_filter_t filter[1];
} wl_pkt_filter_list_t;
#define WL_PKT_FILTER_LIST_FIXED_LEN offsetof(wl_pkt_filter_list_t, filter)
typedef struct wl_pkt_filter_stats
{
uint32_t num_pkts_matched;
uint32_t num_pkts_forwarded;
uint32_t num_pkts_discarded;
} wl_pkt_filter_stats_t;
typedef struct wl_seq_cmd_ioctl
{
uint32_t cmd;
uint32_t len;
} wl_seq_cmd_ioctl_t;
#define WL_SEQ_CMD_ALIGN_BYTES 4
#define WL_SEQ_CMDS_GET_IOCTL_FILTER(cmd) \
(((cmd) == WLC_GET_MAGIC) || \
((cmd) == WLC_GET_VERSION) || \
((cmd) == WLC_GET_AP) || \
((cmd) == WLC_GET_INSTANCE))
#define WL_PKTENG_PER_TX_START 0x01
#define WL_PKTENG_PER_TX_STOP 0x02
#define WL_PKTENG_PER_RX_START 0x04
#define WL_PKTENG_PER_RX_WITH_ACK_START 0x05
#define WL_PKTENG_PER_TX_WITH_ACK_START 0x06
#define WL_PKTENG_PER_RX_STOP 0x08
#define WL_PKTENG_PER_MASK 0xff
#define WL_PKTENG_SYNCHRONOUS 0x100
typedef struct wl_pkteng
{
uint32_t flags;
uint32_t delay;
uint32_t nframes;
uint32_t length;
uint8_t seqno;
wl_ether_addr_t dest;
wl_ether_addr_t src;
} wl_pkteng_t;
#define NUM_80211b_RATES 4
#define NUM_80211ag_RATES 8
#define NUM_80211n_RATES 32
#define NUM_80211_RATES (NUM_80211b_RATES+NUM_80211ag_RATES+NUM_80211n_RATES)
typedef struct wl_pkteng_stats
{
uint32_t lostfrmcnt;
int32_t rssi;
int32_t snr;
uint16_t rxpktcnt[NUM_80211_RATES + 1];
} wl_pkteng_stats_t;
#if !defined(BCMDONGLEHOST) || defined(BCMINTERNAL) || defined(WLTEST)
typedef struct wl_sslpnphy_papd_debug_data
{
uint8_t psat_pwr;
uint8_t psat_indx;
uint8_t final_idx;
uint8_t start_idx;
int32_t min_phase;
int32_t voltage;
int8_t temperature;
} wl_sslpnphy_papd_debug_data_t;
typedef struct wl_sslpnphy_debug_data
{
int16_t papdcompRe[64];
int16_t papdcompIm[64];
} wl_sslpnphy_debug_data_t;
typedef struct wl_sslpnphy_spbdump_data
{
uint16_t tbl_length;
int16_t spbreal[256];
int16_t spbimg[256];
} wl_sslpnphy_spbdump_data_t;
typedef struct wl_sslpnphy_percal_debug_data
{
uint32_t cur_idx;
uint32_t tx_drift;
uint8_t prev_cal_idx;
uint32_t percal_ctr;
int32_t nxt_cal_idx;
uint32_t force_1idxcal;
uint32_t onedxacl_req;
int32_t last_cal_volt;
int8_t last_cal_temp;
uint32_t vbat_ripple;
uint32_t exit_route;
int32_t volt_winner;
} wl_sslpnphy_percal_debug_data_t;
#endif
#define WL_WOWL_MAGIC (1 << 0)
#define WL_WOWL_NET (1 << 1)
#define WL_WOWL_DIS (1 << 2)
#define WL_WOWL_RETR (1 << 3)
#define WL_WOWL_BCN (1 << 4)
#define WL_WOWL_TST (1 << 5)
#define WL_WOWL_BCAST (1 << 15)
#define MAGIC_PKT_MINLEN 102
typedef struct
{
uint32_t masksize;
uint32_t offset;
uint32_t patternoffset;
uint32_t patternsize;
} wl_wowl_pattern_t;
typedef struct
{
uint32_t count;
wl_wowl_pattern_t pattern[1];
} wl_wowl_pattern_list_t;
typedef struct
{
uint8_t pci_wakeind;
uint16_t ucode_wakeind;
} wl_wowl_wakeind_t;
typedef struct wl_txrate_class
{
uint8_t init_rate;
uint8_t min_rate;
uint8_t max_rate;
} wl_txrate_class_t;
#if defined(DSLCPE_DELAY)
#define WL_DELAYMODE_DEFER 0
#define WL_DELAYMODE_FORCE 1
#define WL_DELAYMODE_AUTO 2
#endif
#define WLC_OBSS_SCAN_PASSIVE_DWELL_DEFAULT 100
#define WLC_OBSS_SCAN_PASSIVE_DWELL_MIN 5
#define WLC_OBSS_SCAN_PASSIVE_DWELL_MAX 1000
#define WLC_OBSS_SCAN_ACTIVE_DWELL_DEFAULT 20
#define WLC_OBSS_SCAN_ACTIVE_DWELL_MIN 10
#define WLC_OBSS_SCAN_ACTIVE_DWELL_MAX 1000
#define WLC_OBSS_SCAN_WIDTHSCAN_INTERVAL_DEFAULT 300
#define WLC_OBSS_SCAN_WIDTHSCAN_INTERVAL_MIN 10
#define WLC_OBSS_SCAN_WIDTHSCAN_INTERVAL_MAX 900
#define WLC_OBSS_SCAN_CHANWIDTH_TRANSITION_DLY_DEFAULT 5
#define WLC_OBSS_SCAN_CHANWIDTH_TRANSITION_DLY_MIN 5
#define WLC_OBSS_SCAN_CHANWIDTH_TRANSITION_DLY_MAX 100
#define WLC_OBSS_SCAN_PASSIVE_TOTAL_PER_CHANNEL_DEFAULT 200
#define WLC_OBSS_SCAN_PASSIVE_TOTAL_PER_CHANNEL_MIN 200
#define WLC_OBSS_SCAN_PASSIVE_TOTAL_PER_CHANNEL_MAX 10000
#define WLC_OBSS_SCAN_ACTIVE_TOTAL_PER_CHANNEL_DEFAULT 20
#define WLC_OBSS_SCAN_ACTIVE_TOTAL_PER_CHANNEL_MIN 20
#define WLC_OBSS_SCAN_ACTIVE_TOTAL_PER_CHANNEL_MAX 10000
#define WLC_OBSS_SCAN_ACTIVITY_THRESHOLD_DEFAULT 25
#define WLC_OBSS_SCAN_ACTIVITY_THRESHOLD_MIN 0
#define WLC_OBSS_SCAN_ACTIVITY_THRESHOLD_MAX 100
typedef struct wl_obss_scan_arg
{
int16_t passive_dwell;
int16_t active_dwell;
int16_t bss_widthscan_interval;
int16_t passive_total;
int16_t active_total;
int16_t chanwidth_transition_delay;
int16_t activity_threshold;
} wl_obss_scan_arg_t;
#define WL_OBSS_SCAN_PARAM_LEN sizeof(wl_obss_scan_arg_t)
#define WL_MIN_NUM_OBSS_SCAN_ARG 7
#define WL_COEX_INFO_MASK 0x07
#define WL_COEX_INFO_REQ 0x01
#define WL_COEX_40MHZ_INTOLERANT 0x02
#define WL_COEX_WIDTH20 0x04
typedef struct wl_action_obss_coex_req
{
uint8_t info;
uint8_t num;
uint8_t ch_list[1];
} wl_action_obss_coex_req_t;
#define MAX_RSSI_LEVELS 8
typedef struct wl_rssi_event
{
uint32_t rate_limit_msec;
uint8_t num_rssi_levels;
int8_t rssi_levels[MAX_RSSI_LEVELS];
} wl_rssi_event_t;
#define WLFEATURE_DISABLE_11N 0x00000001
#define WLFEATURE_DISABLE_11N_STBC_TX 0x00000002
#define WLFEATURE_DISABLE_11N_STBC_RX 0x00000004
#define WLFEATURE_DISABLE_11N_SGI_TX 0x00000008
#define WLFEATURE_DISABLE_11N_SGI_RX 0x00000010
#define WLFEATURE_DISABLE_11N_AMPDU_TX 0x00000020
#define WLFEATURE_DISABLE_11N_AMPDU_RX 0x00000040
#define WLFEATURE_DISABLE_11N_GF 0x00000080
#pragma pack(1)
typedef struct sta_prbreq_wps_ie_hdr
{
wl_ether_addr_t staAddr;
uint16_t ieLen;
} sta_prbreq_wps_ie_hdr_t;
typedef struct sta_prbreq_wps_ie_data
{
sta_prbreq_wps_ie_hdr_t hdr;
uint8_t ieData[1];
} sta_prbreq_wps_ie_data_t;
typedef struct sta_prbreq_wps_ie_list
{
uint32_t totLen;
uint8_t ieDataList[1];
} sta_prbreq_wps_ie_list_t;
/* EDCF related items from 802.11.h */
/* ACI from 802.11.h */
#define EDCF_AIFSN_MIN 1 /* AIFSN minimum value */
#define EDCF_AIFSN_MAX 15 /* AIFSN maximum value */
#define EDCF_AIFSN_MASK 0x0f /* AIFSN mask */
#define EDCF_ACM_MASK 0x10 /* ACM mask */
#define EDCF_ACI_MASK 0x60 /* ACI mask */
#define EDCF_ACI_SHIFT 5 /* ACI shift */
#define EDCF_AIFSN_SHIFT 12 /* 4 MSB(0xFFF) in ifs_ctl for AC idx */
/* ECW from 802.11.h */
#define EDCF_ECW_MIN 0 /* cwmin/cwmax exponent minimum value */
#define EDCF_ECW_MAX 15 /* cwmin/cwmax exponent maximum value */
#define EDCF_ECW2CW(exp) ((1 << (exp)) - 1)
#define EDCF_ECWMIN_MASK 0x0f /* cwmin exponent form mask */
#define EDCF_ECWMAX_MASK 0xf0 /* cwmax exponent form mask */
#define EDCF_ECWMAX_SHIFT 4 /* cwmax exponent form shift */
/* TXOP from 802.11.h */
#define EDCF_TXOP_MIN 0 /* TXOP minimum value */
#define EDCF_TXOP_MAX 65535 /* TXOP maximum value */
#define EDCF_TXOP2USEC(txop) ((txop) << 5)
struct edcf_acparam {
uint8_t ACI;
uint8_t ECW;
uint16_t TXOP; /* stored in network order (ls octet first) */
} ;
typedef struct edcf_acparam edcf_acparam_t;
/* Stop packing structures */
#pragma pack()
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif