if_athioctl.h revision 154140
1116743Ssam/*-
2139530Ssam * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
3116743Ssam * All rights reserved.
4116743Ssam *
5116743Ssam * Redistribution and use in source and binary forms, with or without
6116743Ssam * modification, are permitted provided that the following conditions
7116743Ssam * are met:
8116743Ssam * 1. Redistributions of source code must retain the above copyright
9116743Ssam *    notice, this list of conditions and the following disclaimer,
10116743Ssam *    without modification.
11116743Ssam * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12116743Ssam *    similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
13116743Ssam *    redistribution must be conditioned upon including a substantially
14116743Ssam *    similar Disclaimer requirement for further binary redistribution.
15116743Ssam * 3. Neither the names of the above-listed copyright holders nor the names
16116743Ssam *    of any contributors may be used to endorse or promote products derived
17116743Ssam *    from this software without specific prior written permission.
18116743Ssam *
19116743Ssam * Alternatively, this software may be distributed under the terms of the
20116743Ssam * GNU General Public License ("GPL") version 2 as published by the Free
21116743Ssam * Software Foundation.
22116743Ssam *
23116743Ssam * NO WARRANTY
24116743Ssam * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25116743Ssam * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26116743Ssam * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
27116743Ssam * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
28116743Ssam * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
29116743Ssam * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30116743Ssam * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31116743Ssam * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32116743Ssam * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33116743Ssam * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
34116743Ssam * THE POSSIBILITY OF SUCH DAMAGES.
35116743Ssam *
36116743Ssam * $FreeBSD: head/sys/dev/ath/if_athioctl.h 154140 2006-01-09 17:13:20Z sam $
37116743Ssam */
38116743Ssam
39116743Ssam/*
40116743Ssam * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
41116743Ssam */
42116743Ssam#ifndef _DEV_ATH_ATHIOCTL_H
43116743Ssam#define _DEV_ATH_ATHIOCTL_H
44116743Ssam
45116743Ssamstruct ath_stats {
46116743Ssam	u_int32_t	ast_watchdog;	/* device reset by watchdog */
47116743Ssam	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
48116743Ssam	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
49138570Ssam	u_int32_t	ast_bstuck;	/* beacon stuck interrupts */
50116743Ssam	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
51116743Ssam	u_int32_t	ast_rxeol;	/* rx eol interrupts */
52116743Ssam	u_int32_t	ast_txurn;	/* tx underrun interrupts */
53138570Ssam	u_int32_t	ast_mib;	/* mib interrupts */
54116743Ssam	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
55138570Ssam	u_int32_t	ast_tx_packets;	/* packet sent on the interface */
56116743Ssam	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
57116743Ssam	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
58116743Ssam	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
59116743Ssam	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
60116743Ssam	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
61116743Ssam	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
62116743Ssam	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
63116743Ssam	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
64116743Ssam	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
65116743Ssam	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
66116743Ssam	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
67116743Ssam	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
68116743Ssam	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
69116743Ssam	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
70116743Ssam	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
71116743Ssam	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
72116743Ssam	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
73116743Ssam	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
74116743Ssam	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
75116743Ssam	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
76127779Ssam	u_int32_t	ast_tx_altrate;	/* tx frames with alternate rate */
77127779Ssam	u_int32_t	ast_tx_protect;	/* tx frames with protection */
78152448Ssam	u_int32_t	ast_unused1;
79152448Ssam	u_int32_t	ast_unused2;
80116743Ssam	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
81116743Ssam	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
82116743Ssam	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
83116743Ssam	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
84116743Ssam	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
85116743Ssam	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
86138570Ssam	u_int32_t	ast_rx_badmic;	/* rx failed 'cuz MIC failure */
87116743Ssam	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
88116743Ssam	u_int32_t	ast_rx_phy[32];	/* rx PHY error per-code counts */
89119147Ssam	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
90127779Ssam	u_int32_t	ast_rx_toobig;	/* rx discarded 'cuz frame too large */
91138570Ssam	u_int32_t	ast_rx_packets;	/* packet recv on the interface */
92138570Ssam	u_int32_t	ast_rx_mgt;	/* management frames received */
93119147Ssam	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
94138570Ssam	int8_t		ast_tx_rssi;	/* tx rssi of last ack */
95138570Ssam	int8_t		ast_rx_rssi;	/* rx rssi from histogram */
96138570Ssam	u_int32_t	ast_be_xmit;	/* beacons transmitted */
97116743Ssam	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
98116743Ssam	u_int32_t	ast_per_cal;	/* periodic calibration calls */
99116743Ssam	u_int32_t	ast_per_calfail;/* periodic calibration failed */
100116743Ssam	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
101116743Ssam	u_int32_t	ast_rate_calls;	/* rate control checks */
102116743Ssam	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
103116743Ssam	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
104138570Ssam	u_int32_t	ast_ant_defswitch;/* rx/default antenna switches */
105138570Ssam	u_int32_t	ast_ant_txswitch;/* tx antenna switches */
106138570Ssam	u_int32_t	ast_ant_rx[8];	/* rx frames with antenna */
107138570Ssam	u_int32_t	ast_ant_tx[8];	/* tx frames with antenna */
108116743Ssam};
109116743Ssam
110116743Ssam#define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
111116743Ssam
112123044Ssamstruct ath_diag {
113138570Ssam	char	ad_name[IFNAMSIZ];	/* if name, e.g. "ath0" */
114138570Ssam	u_int16_t ad_id;
115138570Ssam#define	ATH_DIAG_DYN	0x8000		/* allocate buffer in caller */
116138570Ssam#define	ATH_DIAG_IN	0x4000		/* copy in parameters */
117138570Ssam#define	ATH_DIAG_OUT	0x0000		/* copy out results (always) */
118138570Ssam#define	ATH_DIAG_ID	0x0fff
119138570Ssam	u_int16_t ad_in_size;		/* pack to fit, yech */
120138570Ssam	caddr_t	ad_in_data;
121138570Ssam	caddr_t	ad_out_data;
122138570Ssam	u_int	ad_out_size;
123123044Ssam
124123044Ssam};
125123044Ssam#define	SIOCGATHDIAG	_IOWR('i', 138, struct ath_diag)
126123044Ssam
127119783Ssam/*
128119783Ssam * Radio capture format.
129119783Ssam */
130119783Ssam#define ATH_RX_RADIOTAP_PRESENT (		\
131154140Ssam	(1 << IEEE80211_RADIOTAP_TSFT)		| \
132119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
133119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
134119783Ssam	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
135123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
136154140Ssam	(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL)	| \
137154140Ssam	(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE)	| \
138119783Ssam	0)
139119783Ssam
140119783Ssamstruct ath_rx_radiotap_header {
141119783Ssam	struct ieee80211_radiotap_header wr_ihdr;
142154140Ssam	u_int64_t	wr_tsf;
143154140Ssam	u_int8_t	wr_flags;
144119783Ssam	u_int8_t	wr_rate;
145119783Ssam	u_int16_t	wr_chan_freq;
146119783Ssam	u_int16_t	wr_chan_flags;
147154140Ssam	u_int8_t	wr_antsignal;
148154140Ssam	u_int8_t	wr_antnoise;
149123928Ssam	u_int8_t	wr_antenna;
150119783Ssam};
151119783Ssam
152119783Ssam#define ATH_TX_RADIOTAP_PRESENT (		\
153154140Ssam	(1 << IEEE80211_RADIOTAP_TSFT)		| \
154119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
155119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
156119783Ssam	(1 << IEEE80211_RADIOTAP_CHANNEL)	| \
157123928Ssam	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \
158123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
159119783Ssam	0)
160119783Ssam
161119783Ssamstruct ath_tx_radiotap_header {
162119783Ssam	struct ieee80211_radiotap_header wt_ihdr;
163154140Ssam	u_int64_t	wt_tsf;
164154140Ssam	u_int8_t	wt_flags;
165119783Ssam	u_int8_t	wt_rate;
166119783Ssam	u_int16_t	wt_chan_freq;
167119783Ssam	u_int16_t	wt_chan_flags;
168123928Ssam	u_int8_t	wt_txpower;
169123928Ssam	u_int8_t	wt_antenna;
170119783Ssam};
171119783Ssam
172116743Ssam#endif /* _DEV_ATH_ATHIOCTL_H */
173