Home | History | Annotate | Line # | Download | only in ic
athioctl.h revision 1.14
      1  1.14  christos /*	$NetBSD: athioctl.h,v 1.14 2007/03/04 06:01:50 christos Exp $	*/
      2   1.2    itojun 
      3   1.1    dyoung /*-
      4   1.7    dyoung  * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
      5   1.1    dyoung  * All rights reserved.
      6   1.1    dyoung  *
      7   1.1    dyoung  * Redistribution and use in source and binary forms, with or without
      8   1.1    dyoung  * modification, are permitted provided that the following conditions
      9   1.1    dyoung  * are met:
     10   1.1    dyoung  * 1. Redistributions of source code must retain the above copyright
     11   1.1    dyoung  *    notice, this list of conditions and the following disclaimer,
     12   1.1    dyoung  *    without modification.
     13   1.1    dyoung  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     14   1.1    dyoung  *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
     15   1.1    dyoung  *    redistribution must be conditioned upon including a substantially
     16   1.1    dyoung  *    similar Disclaimer requirement for further binary redistribution.
     17   1.1    dyoung  * 3. Neither the names of the above-listed copyright holders nor the names
     18   1.1    dyoung  *    of any contributors may be used to endorse or promote products derived
     19   1.1    dyoung  *    from this software without specific prior written permission.
     20   1.1    dyoung  *
     21   1.1    dyoung  * Alternatively, this software may be distributed under the terms of the
     22   1.1    dyoung  * GNU General Public License ("GPL") version 2 as published by the Free
     23   1.1    dyoung  * Software Foundation.
     24   1.1    dyoung  *
     25   1.1    dyoung  * NO WARRANTY
     26   1.1    dyoung  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     27   1.1    dyoung  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     28   1.1    dyoung  * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
     29   1.1    dyoung  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
     30   1.1    dyoung  * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
     31   1.1    dyoung  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1    dyoung  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1    dyoung  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
     34   1.1    dyoung  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1    dyoung  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
     36   1.1    dyoung  * THE POSSIBILITY OF SUCH DAMAGES.
     37   1.1    dyoung  *
     38   1.8    dyoung  * $FreeBSD: src/sys/dev/ath/if_athioctl.h,v 1.10 2005/03/30 20:13:08 sam Exp $
     39   1.1    dyoung  */
     40   1.1    dyoung 
     41   1.1    dyoung /*
     42   1.1    dyoung  * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
     43   1.1    dyoung  */
     44   1.1    dyoung #ifndef _DEV_ATH_ATHIOCTL_H
     45   1.1    dyoung #define _DEV_ATH_ATHIOCTL_H
     46   1.1    dyoung 
     47   1.1    dyoung struct ath_stats {
     48   1.1    dyoung 	u_int32_t	ast_watchdog;	/* device reset by watchdog */
     49   1.1    dyoung 	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
     50   1.1    dyoung 	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
     51   1.7    dyoung 	u_int32_t	ast_bstuck;	/* beacon stuck interrupts */
     52   1.1    dyoung 	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
     53   1.1    dyoung 	u_int32_t	ast_rxeol;	/* rx eol interrupts */
     54   1.1    dyoung 	u_int32_t	ast_txurn;	/* tx underrun interrupts */
     55   1.7    dyoung 	u_int32_t	ast_mib;	/* mib interrupts */
     56   1.1    dyoung 	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
     57   1.7    dyoung 	u_int32_t	ast_tx_packets;	/* packet sent on the interface */
     58   1.1    dyoung 	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
     59   1.1    dyoung 	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
     60   1.1    dyoung 	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
     61   1.1    dyoung 	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
     62   1.1    dyoung 	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
     63   1.1    dyoung 	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
     64   1.1    dyoung 	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
     65   1.1    dyoung 	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
     66   1.1    dyoung 	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
     67   1.1    dyoung 	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
     68   1.1    dyoung 	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
     69   1.1    dyoung 	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
     70   1.1    dyoung 	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
     71   1.1    dyoung 	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
     72   1.1    dyoung 	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
     73   1.1    dyoung 	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
     74   1.1    dyoung 	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
     75   1.1    dyoung 	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
     76   1.1    dyoung 	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
     77   1.1    dyoung 	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
     78   1.5    dyoung 	u_int32_t	ast_tx_altrate;	/* tx frames with alternate rate */
     79   1.5    dyoung 	u_int32_t	ast_tx_protect;	/* tx frames with protection */
     80   1.7    dyoung 	u_int32_t	ast_tx_ctsburst;/* tx frames with cts and bursting */
     81   1.7    dyoung 	u_int32_t	ast_tx_ctsext;	/* tx frames with cts extension */
     82   1.1    dyoung 	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
     83   1.1    dyoung 	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
     84   1.1    dyoung 	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
     85   1.1    dyoung 	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
     86   1.1    dyoung 	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
     87   1.1    dyoung 	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
     88   1.7    dyoung 	u_int32_t	ast_rx_badmic;	/* rx failed 'cuz MIC failure */
     89   1.1    dyoung 	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
     90   1.1    dyoung 	u_int32_t	ast_rx_phy[32];	/* rx PHY error per-code counts */
     91   1.1    dyoung 	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
     92   1.5    dyoung 	u_int32_t	ast_rx_toobig;	/* rx discarded 'cuz frame too large */
     93   1.7    dyoung 	u_int32_t	ast_rx_packets;	/* packet recv on the interface */
     94   1.7    dyoung 	u_int32_t	ast_rx_mgt;	/* management frames received */
     95   1.1    dyoung 	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
     96   1.7    dyoung 	int8_t		ast_tx_rssi;	/* tx rssi of last ack */
     97   1.7    dyoung 	int8_t		ast_rx_rssi;	/* rx rssi from histogram */
     98   1.7    dyoung 	u_int32_t	ast_be_xmit;	/* beacons transmitted */
     99   1.1    dyoung 	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
    100   1.1    dyoung 	u_int32_t	ast_per_cal;	/* periodic calibration calls */
    101   1.1    dyoung 	u_int32_t	ast_per_calfail;/* periodic calibration failed */
    102   1.1    dyoung 	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
    103   1.1    dyoung 	u_int32_t	ast_rate_calls;	/* rate control checks */
    104   1.1    dyoung 	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
    105   1.1    dyoung 	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
    106   1.7    dyoung 	u_int32_t	ast_ant_defswitch;/* rx/default antenna switches */
    107   1.7    dyoung 	u_int32_t	ast_ant_txswitch;/* tx antenna switches */
    108   1.7    dyoung 	u_int32_t	ast_ant_rx[8];	/* rx frames with antenna */
    109   1.7    dyoung 	u_int32_t	ast_ant_tx[8];	/* tx frames with antenna */
    110  1.11    dyoung 	u_int32_t	ast_bmiss_phantom;/* beacon miss interrupts */
    111  1.11    dyoung 	u_int32_t	ast_pad[32];
    112   1.1    dyoung };
    113   1.1    dyoung 
    114   1.1    dyoung #define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
    115   1.3    dyoung 
    116   1.3    dyoung struct ath_diag {
    117   1.6    dyoung 	char	ad_name[IFNAMSIZ];	/* if name, e.g. "ath0" */
    118   1.6    dyoung 	u_int16_t ad_id;
    119   1.6    dyoung #define	ATH_DIAG_DYN	0x8000		/* allocate buffer in caller */
    120   1.6    dyoung #define	ATH_DIAG_IN	0x4000		/* copy in parameters */
    121   1.6    dyoung #define	ATH_DIAG_OUT	0x0000		/* copy out results (always) */
    122   1.6    dyoung #define	ATH_DIAG_ID	0x0fff
    123   1.6    dyoung 	u_int16_t ad_in_size;		/* pack to fit, yech */
    124  1.14  christos 	void *	ad_in_data;
    125  1.14  christos 	void *	ad_out_data;
    126   1.6    dyoung 	u_int	ad_out_size;
    127   1.3    dyoung 
    128   1.3    dyoung };
    129   1.3    dyoung #define	SIOCGATHDIAG	_IOWR('i', 138, struct ath_diag)
    130   1.1    dyoung 
    131   1.1    dyoung /*
    132   1.1    dyoung  * Radio capture format.
    133   1.1    dyoung  */
    134   1.1    dyoung #define ATH_RX_RADIOTAP_PRESENT (		\
    135  1.10    dyoung 	(1 << IEEE80211_RADIOTAP_TSFT)		| \
    136   1.1    dyoung 	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
    137   1.1    dyoung 	(1 << IEEE80211_RADIOTAP_RATE)		| \
    138   1.1    dyoung 	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
    139  1.13       gdt 	(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL)	| \
    140  1.13       gdt 	(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE)	| \
    141   1.1    dyoung 	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
    142   1.1    dyoung 	0)
    143   1.1    dyoung 
    144   1.1    dyoung struct ath_rx_radiotap_header {
    145   1.1    dyoung 	struct ieee80211_radiotap_header wr_ihdr;
    146  1.11    dyoung 	u_int64_t	wr_tsf;
    147  1.11    dyoung 	u_int8_t	wr_flags;
    148   1.1    dyoung 	u_int8_t	wr_rate;
    149   1.1    dyoung 	u_int16_t	wr_chan_freq;
    150   1.1    dyoung 	u_int16_t	wr_chan_flags;
    151  1.13       gdt 	int8_t		wr_antsignal;
    152  1.13       gdt 	int8_t		wr_antnoise;
    153   1.5    dyoung 	u_int8_t	wr_antenna;
    154   1.1    dyoung };
    155   1.1    dyoung 
    156   1.1    dyoung #define ATH_TX_RADIOTAP_PRESENT (		\
    157  1.11    dyoung 	(1 << IEEE80211_RADIOTAP_TSFT)		| \
    158   1.1    dyoung 	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
    159   1.1    dyoung 	(1 << IEEE80211_RADIOTAP_RATE)		| \
    160   1.1    dyoung 	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
    161   1.5    dyoung 	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \
    162   1.5    dyoung 	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
    163   1.1    dyoung 	0)
    164   1.1    dyoung 
    165   1.1    dyoung struct ath_tx_radiotap_header {
    166   1.1    dyoung 	struct ieee80211_radiotap_header wt_ihdr;
    167  1.11    dyoung 	u_int64_t	wt_tsf;
    168  1.11    dyoung 	u_int8_t	wt_flags;
    169   1.1    dyoung 	u_int8_t	wt_rate;
    170   1.1    dyoung 	u_int16_t	wt_chan_freq;
    171   1.1    dyoung 	u_int16_t	wt_chan_flags;
    172   1.5    dyoung 	u_int8_t	wt_txpower;
    173   1.5    dyoung 	u_int8_t	wt_antenna;
    174   1.1    dyoung };
    175   1.1    dyoung 
    176   1.1    dyoung #endif /* _DEV_ATH_ATHIOCTL_H */
    177