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