123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- /*
- * Copyright (c) 2016 The Linux Foundation. All rights reserved.
- *
- * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
- *
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /*
- * This file was originally distributed by Qualcomm Atheros, Inc.
- * under proprietary terms before Copyright ownership was assigned
- * to the Linux Foundation.
- */
- /**
- * @file cdp_txrx_stats_struct.h
- * @brief Define the host data path stats API functions
- * called by the host control SW and the OS interface module
- */
- #ifndef _CDP_TXRX_STATS_STRUCT_H_
- #define _CDP_TXRX_STATS_STRUCT_H_
- #include <wlan_defs.h>
- #define TXRX_STATS_LEVEL_OFF 0
- #define TXRX_STATS_LEVEL_BASIC 1
- #define TXRX_STATS_LEVEL_FULL 2
- #ifndef TXRX_STATS_LEVEL
- #define TXRX_STATS_LEVEL TXRX_STATS_LEVEL_BASIC
- #endif
- #ifndef BIG_ENDIAN_HOST
- typedef struct {
- u_int32_t pkts;
- u_int32_t bytes;
- } ol_txrx_stats_elem;
- #else
- struct ol_txrx_elem_t {
- u_int32_t pkts;
- u_int32_t bytes;
- };
- typedef struct ol_txrx_elem_t ol_txrx_stats_elem;
- #endif
- /**
- * @brief data stats published by the host txrx layer
- */
- struct ol_txrx_stats {
- struct {
- /* MSDUs received from the stack */
- ol_txrx_stats_elem from_stack;
- /* MSDUs successfully sent across the WLAN */
- ol_txrx_stats_elem delivered;
- struct {
- /* MSDUs that the host did not accept */
- ol_txrx_stats_elem host_reject;
- /* MSDUs which could not be downloaded to the
- target */
- ol_txrx_stats_elem download_fail;
- /* MSDUs which the target discarded
- (lack of mem or old age) */
- ol_txrx_stats_elem target_discard;
- /* MSDUs which the target sent but couldn't get
- an ack for */
- ol_txrx_stats_elem no_ack;
- /* MSDUs dropped in NSS-FW */
- ol_txrx_stats_elem nss_ol_dropped;
- } dropped;
- u_int32_t desc_in_use;
- u_int32_t desc_alloc_fails;
- u_int32_t ce_ring_full;
- u_int32_t dma_map_error;
- /* MSDUs given to the txrx layer by the management stack */
- ol_txrx_stats_elem mgmt;
- #if (HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE)
- struct {
- /* TSO applied jumbo packets received from NW Stack */
- ol_txrx_stats_elem tso_pkts;
- /* Non - TSO packets */
- ol_txrx_stats_elem non_tso_pkts;
- /* TSO packets : Dropped during TCP segmentation*/
- ol_txrx_stats_elem tso_dropped;
- /* TSO Descriptors */
- u_int32_t tso_desc_cnt;
- } tso;
- #endif /* HOST_SW_TSO_ENABLE || HOST_SW_TSO_SG_ENABLE */
- #if HOST_SW_SG_ENABLE
- struct {
- /* TSO applied jumbo packets received from NW Stack */
- ol_txrx_stats_elem sg_pkts;
- /* Non - TSO packets */
- ol_txrx_stats_elem non_sg_pkts;
- /* TSO packets : Dropped during TCP segmentation*/
- ol_txrx_stats_elem sg_dropped;
- /* TSO Descriptors */
- u_int32_t sg_desc_cnt;
- } sg;
- #endif /* HOST_SW_SG_ENABLE */
- struct {
- /* packets enqueued for flow control */
- u_int32_t fl_ctrl_enqueue;
- /* packets discarded for flow control is full */
- u_int32_t fl_ctrl_discard;
- /* packets sent to CE without flow control */
- u_int32_t fl_ctrl_avoid;
- } fl_ctrl;
- } tx;
- struct {
- /* MSDUs given to the OS shim */
- ol_txrx_stats_elem delivered;
- /* MSDUs forwarded from the rx path to the tx path */
- ol_txrx_stats_elem forwarded;
- #if RX_CHECKSUM_OFFLOAD
- /* MSDUs in which ipv4 chksum error detected by HW */
- ol_txrx_stats_elem ipv4_cksum_err;
- /* MSDUs in which tcp chksum error detected by HW */
- ol_txrx_stats_elem tcp_ipv4_cksum_err;
- /* MSDUs in which udp chksum error detected by HW */
- ol_txrx_stats_elem udp_ipv4_cksum_err;
- /* MSDUs in which tcp V6 chksum error detected by HW */
- ol_txrx_stats_elem tcp_ipv6_cksum_err;
- /* MSDUs in which UDP V6 chksum error detected by HW */
- ol_txrx_stats_elem udp_ipv6_cksum_err;
- #endif /* RX_CHECKSUM_OFFLOAD */
- } rx;
- struct {
- /* Number of mcast recieved for conversion */
- u_int32_t num_me_rcvd;
- /* Number of unicast sent as part of mcast conversion */
- u_int32_t num_me_ucast;
- /* Number of multicast frames dropped due to dma_map failure */
- u_int32_t num_me_dropped_m;
- /* Number of multicast frames dropped due to allocation
- failure */
- u_int32_t num_me_dropped_a;
- /* Number of multicast frames dropped due to internal failure */
- u_int32_t num_me_dropped_i;
- /* Number of me buf currently in use */
- u_int32_t num_me_buf;
- /* Number of me buf frames to self mac address */
- u_int32_t num_me_dropped_s;
- /* Number of me buf in use in non pool based allocation*/
- u_int32_t num_me_nonpool;
- /* Number of me buf allocated using non pool based allocation*/
- u_int32_t num_me_nonpool_count;
- } mcast_enhance;
- };
- struct ol_ath_dbg_rx_rssi {
- A_UINT8 rx_rssi_pri20;
- A_UINT8 rx_rssi_sec20;
- A_UINT8 rx_rssi_sec40;
- A_UINT8 rx_rssi_sec80;
- };
- struct ol_ath_radiostats {
- A_UINT64 tx_beacon;
- A_UINT32 be_nobuf;
- A_UINT32 tx_buf_count;
- A_UINT32 tx_packets;
- A_UINT32 rx_packets;
- A_INT32 tx_mgmt;
- A_UINT32 tx_num_data;
- A_UINT32 rx_num_data;
- A_INT32 rx_mgmt;
- A_UINT32 rx_num_mgmt;
- A_UINT32 rx_num_ctl;
- A_UINT32 tx_rssi;
- A_UINT32 tx_mcs[10];
- A_UINT32 rx_mcs[10];
- A_UINT32 rx_rssi_comb;
- struct ol_ath_dbg_rx_rssi rx_rssi_chain0;
- struct ol_ath_dbg_rx_rssi rx_rssi_chain1;
- struct ol_ath_dbg_rx_rssi rx_rssi_chain2;
- struct ol_ath_dbg_rx_rssi rx_rssi_chain3;
- A_UINT64 rx_bytes;
- A_UINT64 tx_bytes;
- A_UINT32 tx_compaggr;
- A_UINT32 rx_aggr;
- A_UINT32 tx_bawadv;
- A_UINT32 tx_compunaggr;
- A_UINT32 rx_overrun;
- A_UINT32 rx_badcrypt;
- A_UINT32 rx_badmic;
- A_UINT32 rx_crcerr;
- A_UINT32 rx_phyerr;
- A_UINT32 ackRcvBad;
- A_UINT32 rtsBad;
- A_UINT32 rtsGood;
- A_UINT32 fcsBad;
- A_UINT32 noBeacons;
- A_UINT32 mib_int_count;
- A_UINT32 rx_looplimit_start;
- A_UINT32 rx_looplimit_end;
- A_UINT8 ap_stats_tx_cal_enable;
- A_UINT32 tgt_asserts;
- A_INT16 chan_nf;
- A_UINT32 rx_last_msdu_unset_cnt;
- A_INT16 chan_nf_sec80;
- };
- /*
- ** structure to hold all stats information
- ** for offload device interface
- */
- struct ol_stats {
- int txrx_stats_level;
- struct ol_txrx_stats txrx_stats;
- struct wlan_dbg_stats stats;
- struct ol_ath_radiostats interface_stats;
- struct wlan_dbg_tidq_stats tidq_stats;
- };
- /*
- ** Enumeration of PDEV Configuration parameter
- */
- typedef enum _ol_ath_param_t {
- OL_ATH_PARAM_TXCHAINMASK = 1,
- OL_ATH_PARAM_RXCHAINMASK = 2,
- OL_ATH_PARAM_AMPDU = 6,
- OL_ATH_PARAM_AMPDU_LIMIT = 7,
- OL_ATH_PARAM_AMPDU_SUBFRAMES = 8,
- OL_ATH_PARAM_TXPOWER_LIMIT2G = 12,
- OL_ATH_PARAM_TXPOWER_LIMIT5G = 13,
- OL_ATH_PARAM_LDPC = 32,
- OL_ATH_PARAM_VOW_EXT_STATS = 45,
- OL_ATH_PARAM_DYN_TX_CHAINMASK = 73,
- OL_ATH_PARAM_BURST_ENABLE = 77,
- OL_ATH_PARAM_BURST_DUR = 78,
- OL_ATH_PARAM_BCN_BURST = 80,
- OL_ATH_PARAM_DCS = 82,
- #if UMAC_SUPPORT_PERIODIC_PERFSTATS
- OL_ATH_PARAM_PRDPERFSTAT_THRPUT_ENAB = 83,
- OL_ATH_PARAM_PRDPERFSTAT_THRPUT_WIN = 84,
- OL_ATH_PARAM_PRDPERFSTAT_THRPUT = 85,
- OL_ATH_PARAM_PRDPERFSTAT_PER_ENAB = 86,
- OL_ATH_PARAM_PRDPERFSTAT_PER_WIN = 87,
- OL_ATH_PARAM_PRDPERFSTAT_PER = 88,
- #endif
- /* UMAC_SUPPORT_PERIODIC_PERFSTATS */
- OL_ATH_PARAM_TOTAL_PER = 89,
- /*set manual rate for rts frame */
- OL_ATH_PARAM_RTS_CTS_RATE = 92,
- /** co channel interference threshold level */
- OL_ATH_PARAM_DCS_COCH_THR = 93,
- /** transmit error threshold */
- OL_ATH_PARAM_DCS_TXERR_THR = 94,
- /** phy error threshold */
- OL_ATH_PARAM_DCS_PHYERR_THR = 95,
- /* The IOCTL number is 114, it is made 114, inorder to make the IOCTL
- number same as Direct-attach IOCTL.
- Please, don't change number. This IOCTL gets the Interface code path
- it should be either DIRECT-ATTACH or OFF-LOAD.
- */
- OL_ATH_PARAM_GET_IF_ID = 114,
- /*Enable Acs back Ground Channel selection Scan timer in AP mode*/
- OL_ATH_PARAM_ACS_ENABLE_BK_SCANTIMEREN = 118,
- /* ACS scan timer value in Seconds */
- OL_ATH_PARAM_ACS_SCANTIME = 119,
- /*Negligence Delta RSSI between two channel */
- OL_ATH_PARAM_ACS_RSSIVAR = 120,
- /*Negligence Delta Channel load between two channel*/
- OL_ATH_PARAM_ACS_CHLOADVAR = 121,
- /* Enable Limited OBSS check */
- OL_ATH_PARAM_ACS_LIMITEDOBSS = 122,
- /* Acs control flag for Scan timer */
- OL_ATH_PARAM_ACS_CTRLFLAG = 123,
- /* Acs Run time Debug level*/
- OL_ATH_PARAM_ACS_DEBUGTRACE = 124,
- OL_ATH_PARAM_SET_FW_HANG_ID = 137,
- /* Radio type 1:11ac 0:11abgn */
- OL_ATH_PARAM_RADIO_TYPE = 138,
- OL_ATH_PARAM_IGMPMLD_OVERRIDE, /* IGMP/MLD packet override */
- OL_ATH_PARAM_IGMPMLD_TID, /* IGMP/MLD packet TID no */
- OL_ATH_PARAM_ARPDHCP_AC_OVERRIDE,
- OL_ATH_PARAM_NON_AGG_SW_RETRY_TH,
- OL_ATH_PARAM_AGG_SW_RETRY_TH,
- /* Dont change this number it as per sync with DA
- Blocking certian channel from ic channel list */
- OL_ATH_PARAM_DISABLE_DFS = 144,
- OL_ATH_PARAM_ENABLE_AMSDU = 145,
- OL_ATH_PARAM_ENABLE_AMPDU = 146,
- OL_ATH_PARAM_STA_KICKOUT_TH,
- OL_ATH_PARAM_WLAN_PROF_ENABLE,
- OL_ATH_PARAM_LTR_ENABLE,
- OL_ATH_PARAM_LTR_AC_LATENCY_BE = 150,
- OL_ATH_PARAM_LTR_AC_LATENCY_BK,
- OL_ATH_PARAM_LTR_AC_LATENCY_VI,
- OL_ATH_PARAM_LTR_AC_LATENCY_VO,
- OL_ATH_PARAM_LTR_AC_LATENCY_TIMEOUT,
- OL_ATH_PARAM_LTR_TX_ACTIVITY_TIMEOUT = 155,
- OL_ATH_PARAM_LTR_SLEEP_OVERRIDE,
- OL_ATH_PARAM_LTR_RX_OVERRIDE,
- OL_ATH_PARAM_L1SS_ENABLE,
- OL_ATH_PARAM_DSLEEP_ENABLE,
- /** radar error threshold */
- OL_ATH_PARAM_DCS_RADAR_ERR_THR = 160,
- /** Tx channel utilization due to AP's tx and rx */
- OL_ATH_PARAM_DCS_USERMAX_CU_THR,
- /** interference detection threshold */
- OL_ATH_PARAM_DCS_INTR_DETECT_THR,
- /** sampling window, default 10secs */
- OL_ATH_PARAM_DCS_SAMPLE_WINDOW,
- /** debug logs enable/disable */
- OL_ATH_PARAM_DCS_DEBUG,
- OL_ATH_PARAM_ANI_ENABLE = 165,
- OL_ATH_PARAM_ANI_POLL_PERIOD,
- OL_ATH_PARAM_ANI_LISTEN_PERIOD,
- OL_ATH_PARAM_ANI_OFDM_LEVEL,
- OL_ATH_PARAM_ANI_CCK_LEVEL,
- OL_ATH_PARAM_DSCP_TID_MAP = 170,
- OL_ATH_PARAM_TXPOWER_SCALE,
- /** Phy error penalty */
- OL_ATH_PARAM_DCS_PHYERR_PENALTY,
- #if ATH_SUPPORT_DSCP_OVERRIDE
- /** set/get TID for sending HMMC packets */
- OL_ATH_PARAM_HMMC_DSCP_TID_MAP,
- /** set/get DSCP mapping override */
- OL_ATH_PARAM_DSCP_OVERRIDE,
- /** set/get HMMC-DSCP mapping override */
- OL_ATH_PARAM_HMMC_DSCP_OVERRIDE = 175,
- #endif
- #if ATH_RX_LOOPLIMIT_TIMER
- OL_ATH_PARAM_LOOPLIMIT_NUM,
- #endif
- OL_ATH_PARAM_ANTENNA_GAIN_2G,
- OL_ATH_PARAM_ANTENNA_GAIN_5G,
- OL_ATH_PARAM_RX_FILTER,
- #if ATH_SUPPORT_HYFI_ENHANCEMENTS
- OL_ATH_PARAM_BUFF_THRESH = 180,
- OL_ATH_PARAM_BLK_REPORT_FLOOD,
- OL_ATH_PARAM_DROP_STA_QUERY,
- #endif
- OL_ATH_PARAM_QBOOST,
- OL_ATH_PARAM_SIFS_FRMTYPE,
- OL_ATH_PARAM_SIFS_UAPSD = 185,
- OL_ATH_PARAM_FW_RECOVERY_ID,
- OL_ATH_PARAM_RESET_OL_STATS,
- OL_ATH_PARAM_AGGR_BURST,
- /* Number of deauth sent in consecutive rx_peer_invalid */
- OL_ATH_PARAM_DEAUTH_COUNT,
- OL_ATH_PARAM_BLOCK_INTERBSS = 190,
- /* Firmware reset control for Bmiss / timeout / reset */
- OL_ATH_PARAM_FW_DISABLE_RESET,
- OL_ATH_PARAM_MSDU_TTL,
- OL_ATH_PARAM_PPDU_DURATION,
- OL_ATH_PARAM_SET_TXBF_SND_PERIOD,
- OL_ATH_PARAM_ALLOW_PROMISC = 195,
- OL_ATH_PARAM_BURST_MODE,
- OL_ATH_PARAM_DYN_GROUPING,
- OL_ATH_PARAM_DPD_ENABLE,
- OL_ATH_PARAM_DBGLOG_RATELIM,
- /* firmware should intimate us about ps state change for node */
- OL_ATH_PARAM_PS_STATE_CHANGE = 200,
- OL_ATH_PARAM_MCAST_BCAST_ECHO,
- /* OBSS RSSI threshold for 20/40 coexistance */
- OL_ATH_PARAM_OBSS_RSSI_THRESHOLD,
- /* Link/node RX RSSI threshold for 20/40 coexistance */
- OL_ATH_PARAM_OBSS_RX_RSSI_THRESHOLD,
- #if ATH_CHANNEL_BLOCKING
- OL_ATH_PARAM_ACS_BLOCK_MODE = 205,
- #endif
- OL_ATH_PARAM_ACS_TX_POWER_OPTION,
- /* Default Antenna Polarization MSB 8 bits (24:31) specifying
- enable/disable ; LSB 24 bits (0:23) antenna mask value */
- OL_ATH_PARAM_ANT_POLARIZATION,
- /* rate limit mute type error prints */
- OL_ATH_PARAM_PRINT_RATE_LIMIT,
- OL_ATH_PARAM_PDEV_RESET, /* Reset FW PDEV*/
- /*Do not crash host when target assert happened*/
- OL_ATH_PARAM_FW_DUMP_NO_HOST_CRASH = 210,
- /*Consider OBSS non-erp to change to long slot*/
- OL_ATH_PARAM_CONSIDER_OBSS_NON_ERP_LONG_SLOT = 211,
- #if PEER_FLOW_CONTROL
- OL_ATH_PARAM_STATS_FC,
- OL_ATH_PARAM_QFLUSHINTERVAL,
- OL_ATH_PARAM_TOTAL_Q_SIZE,
- OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE0,
- OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE1,
- OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE2,
- OL_ATH_PARAM_TOTAL_Q_SIZE_RANGE3,
- OL_ATH_PARAM_MIN_THRESHOLD,
- OL_ATH_PARAM_MAX_Q_LIMIT,
- OL_ATH_PARAM_MIN_Q_LIMIT,
- OL_ATH_PARAM_CONG_CTRL_TIMER_INTV,
- OL_ATH_PARAM_STATS_TIMER_INTV,
- OL_ATH_PARAM_ROTTING_TIMER_INTV,
- OL_ATH_PARAM_LATENCY_PROFILE,
- OL_ATH_PARAM_HOSTQ_DUMP,
- OL_ATH_PARAM_TIDQ_MAP,
- #endif
- OL_ATH_PARAM_DBG_ARP_SRC_ADDR, /* ARP DEBUG source address*/
- OL_ATH_PARAM_DBG_ARP_DST_ADDR, /* ARP DEBUG destination address*/
- OL_ATH_PARAM_ARP_DBG_CONF, /* ARP debug configuration */
- OL_ATH_PARAM_DISABLE_STA_VAP_AMSDU, /* Disable AMSDU for station vap */
- #if ATH_SUPPORT_DFS && ATH_SUPPORT_STA_DFS
- OL_ATH_PARAM_STADFS_ENABLE = 300, /* STA DFS is enabled or not */
- #endif
- #if QCA_AIRTIME_FAIRNESS
- OL_ATH_PARAM_ATF_STRICT_SCHED = 301,
- OL_ATH_PARAM_ATF_GROUP_POLICY = 302,
- #endif
- #if DBDC_REPEATER_SUPPORT
- OL_ATH_PARAM_PRIMARY_RADIO,
- OL_ATH_PARAM_DBDC_ENABLE,
- #endif
- OL_ATH_PARAM_TXPOWER_DBSCALE,
- OL_ATH_PARAM_CTL_POWER_SCALE,
- #if QCA_AIRTIME_FAIRNESS
- OL_ATH_PARAM_ATF_OBSS_SCHED = 307,
- OL_ATH_PARAM_ATF_OBSS_SCALE = 308,
- #endif
- OL_ATH_PARAM_PHY_OFDM_ERR = 309,
- OL_ATH_PARAM_PHY_CCK_ERR = 310,
- OL_ATH_PARAM_FCS_ERR = 311,
- OL_ATH_PARAM_CHAN_UTIL = 312,
- #if DBDC_REPEATER_SUPPORT
- OL_ATH_PARAM_CLIENT_MCAST,
- #endif
- OL_ATH_PARAM_EMIWAR_80P80 = 314,
- OL_ATH_PARAM_BATCHMODE = 315,
- OL_ATH_PARAM_PACK_AGGR_DELAY = 316,
- #if UMAC_SUPPORT_ACFG
- OL_ATH_PARAM_DIAG_ENABLE = 317,
- #endif
- #if ATH_SUPPORT_VAP_QOS
- OL_ATH_PARAM_VAP_QOS = 318,
- #endif
- OL_ATH_PARAM_CHAN_STATS_TH = 319,
- /* Passive scan is enabled or disabled */
- OL_ATH_PARAM_PASSIVE_SCAN_ENABLE = 320,
- OL_ATH_MIN_RSSI_ENABLE = 321,
- OL_ATH_MIN_RSSI = 322,
- OL_ATH_PARAM_ACS_2G_ALLCHAN = 323,
- #if DBDC_REPEATER_SUPPORT
- OL_ATH_PARAM_DELAY_STAVAP_UP = 324,
- #endif
- OL_ATH_PARAM_TXPOW_MGMT = 326, /* Can be used to configure transmit power for management frames */
- OL_ATH_PARAM_CHANSWITCH_OPTIONS = 327, /* It is used to set the channel switch options */
- OL_ATH_BTCOEX_ENABLE = 328,
- OL_ATH_BTCOEX_WL_PRIORITY = 329,
- OL_ATH_PARAM_TID_OVERRIDE_QUEUE_MAPPING = 330,
- OL_ATH_PARAM_CAL_VER_CHECK = 331,
- OL_ATH_PARAM_NO_VLAN = 332,
- OL_ATH_PARAM_CCA_THRESHOLD = 333,
- } ol_ath_param_t;
- /*
- ** Enumeration of PDEV Configuration parameter
- */
- typedef enum _ol_hal_param_t {
- OL_HAL_CONFIG_DMA_BEACON_RESPONSE_TIME = 0
- } ol_hal_param_t;
- /* Bitmasks for stats that can block */
- #define EXT_TXRX_FW_STATS 0x0001
- #endif
|