Home | History | Annotate | Line # | Download | only in ic
athioctl.h revision 1.2
      1 /*	$NetBSD: athioctl.h,v 1.2 2003/10/15 23:23:39 itojun Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer,
     12  *    without modification.
     13  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     14  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
     15  *    redistribution must be conditioned upon including a substantially
     16  *    similar Disclaimer requirement for further binary redistribution.
     17  * 3. Neither the names of the above-listed copyright holders nor the names
     18  *    of any contributors may be used to endorse or promote products derived
     19  *    from this software without specific prior written permission.
     20  *
     21  * Alternatively, this software may be distributed under the terms of the
     22  * GNU General Public License ("GPL") version 2 as published by the Free
     23  * Software Foundation.
     24  *
     25  * NO WARRANTY
     26  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     28  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
     29  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
     30  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
     31  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
     34  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     36  * THE POSSIBILITY OF SUCH DAMAGES.
     37  *
     38  * $FreeBSD: src/sys/dev/ath/if_athioctl.h,v 1.3 2003/09/05 22:22:49 sam Exp $
     39  */
     40 
     41 /*
     42  * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
     43  */
     44 #ifndef _DEV_ATH_ATHIOCTL_H
     45 #define _DEV_ATH_ATHIOCTL_H
     46 
     47 struct ath_stats {
     48 	u_int32_t	ast_watchdog;	/* device reset by watchdog */
     49 	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
     50 	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
     51 	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
     52 	u_int32_t	ast_rxeol;	/* rx eol interrupts */
     53 	u_int32_t	ast_txurn;	/* tx underrun interrupts */
     54 	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
     55 	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
     56 	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
     57 	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
     58 	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
     59 	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
     60 	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
     61 	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
     62 	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
     63 	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
     64 	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
     65 	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
     66 	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
     67 	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
     68 	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
     69 	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
     70 	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
     71 	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
     72 	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
     73 	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
     74 	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
     75 	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
     76 	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
     77 	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
     78 	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
     79 	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
     80 	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
     81 	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
     82 	u_int32_t	ast_rx_phy[32];	/* rx PHY error per-code counts */
     83 	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
     84 	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
     85 	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
     86 	u_int32_t	ast_per_cal;	/* periodic calibration calls */
     87 	u_int32_t	ast_per_calfail;/* periodic calibration failed */
     88 	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
     89 	u_int32_t	ast_rate_calls;	/* rate control checks */
     90 	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
     91 	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
     92 };
     93 
     94 #define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
     95 
     96 /*
     97  * Radio capture format.
     98  */
     99 #define ATH_RX_RADIOTAP_PRESENT (		\
    100 	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
    101 	(1 << IEEE80211_RADIOTAP_RATE)		| \
    102 	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
    103 	(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL)	| \
    104 	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
    105 	0)
    106 
    107 struct ath_rx_radiotap_header {
    108 	struct ieee80211_radiotap_header wr_ihdr;
    109 	u_int8_t	wr_flags;		/* XXX for padding */
    110 	u_int8_t	wr_rate;
    111 	u_int16_t	wr_chan_freq;
    112 	u_int16_t	wr_chan_flags;
    113 	u_int8_t	wr_antsignal;
    114 	u_int8_t	wr_antenna;
    115 };
    116 
    117 #define ATH_TX_RADIOTAP_PRESENT (		\
    118 	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
    119 	(1 << IEEE80211_RADIOTAP_RATE)		| \
    120 	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
    121 	0)
    122 
    123 struct ath_tx_radiotap_header {
    124 	struct ieee80211_radiotap_header wt_ihdr;
    125 	u_int8_t	wt_flags;		/* XXX for padding */
    126 	u_int8_t	wt_rate;
    127 	u_int16_t	wt_chan_freq;
    128 	u_int16_t	wt_chan_flags;
    129 };
    130 
    131 #endif /* _DEV_ATH_ATHIOCTL_H */
    132