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