if_athioctl.h revision 233989
1116743Ssam/*-
2186904Ssam * Copyright (c) 2002-2009 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 *
16116743Ssam * NO WARRANTY
17116743Ssam * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18116743Ssam * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19116743Ssam * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
20116743Ssam * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21116743Ssam * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
22116743Ssam * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23116743Ssam * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24116743Ssam * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25116743Ssam * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26116743Ssam * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27116743Ssam * THE POSSIBILITY OF SUCH DAMAGES.
28116743Ssam *
29116743Ssam * $FreeBSD: head/sys/dev/ath/if_athioctl.h 233989 2012-04-07 05:48:26Z adrian $
30116743Ssam */
31116743Ssam
32116743Ssam/*
33116743Ssam * Ioctl-related defintions for the Atheros Wireless LAN controller driver.
34116743Ssam */
35116743Ssam#ifndef _DEV_ATH_ATHIOCTL_H
36116743Ssam#define _DEV_ATH_ATHIOCTL_H
37116743Ssam
38227327Sadrianstruct ath_tx_aggr_stats {
39227327Sadrian	u_int32_t	aggr_pkts[64];
40227327Sadrian	u_int32_t	aggr_single_pkt;
41227327Sadrian	u_int32_t	aggr_nonbaw_pkt;
42227327Sadrian	u_int32_t	aggr_aggr_pkt;
43227327Sadrian	u_int32_t	aggr_baw_closed_single_pkt;
44227327Sadrian	u_int32_t	aggr_low_hwq_single_pkt;
45227327Sadrian	u_int32_t	aggr_sched_nopkt;
46233989Sadrian	u_int32_t	aggr_rts_aggr_limited;
47227327Sadrian};
48227327Sadrian
49116743Ssamstruct ath_stats {
50116743Ssam	u_int32_t	ast_watchdog;	/* device reset by watchdog */
51116743Ssam	u_int32_t	ast_hardware;	/* fatal hardware error interrupts */
52116743Ssam	u_int32_t	ast_bmiss;	/* beacon miss interrupts */
53155492Ssam	u_int32_t	ast_bmiss_phantom;/* beacon miss interrupts */
54138570Ssam	u_int32_t	ast_bstuck;	/* beacon stuck interrupts */
55116743Ssam	u_int32_t	ast_rxorn;	/* rx overrun interrupts */
56116743Ssam	u_int32_t	ast_rxeol;	/* rx eol interrupts */
57116743Ssam	u_int32_t	ast_txurn;	/* tx underrun interrupts */
58138570Ssam	u_int32_t	ast_mib;	/* mib interrupts */
59116743Ssam	u_int32_t	ast_intrcoal;	/* interrupts coalesced */
60138570Ssam	u_int32_t	ast_tx_packets;	/* packet sent on the interface */
61116743Ssam	u_int32_t	ast_tx_mgmt;	/* management frames transmitted */
62116743Ssam	u_int32_t	ast_tx_discard;	/* frames discarded prior to assoc */
63116743Ssam	u_int32_t	ast_tx_qstop;	/* output stopped 'cuz no buffer */
64116743Ssam	u_int32_t	ast_tx_encap;	/* tx encapsulation failed */
65116743Ssam	u_int32_t	ast_tx_nonode;	/* tx failed 'cuz no node */
66116743Ssam	u_int32_t	ast_tx_nombuf;	/* tx failed 'cuz no mbuf */
67116743Ssam	u_int32_t	ast_tx_nomcl;	/* tx failed 'cuz no cluster */
68116743Ssam	u_int32_t	ast_tx_linear;	/* tx linearized to cluster */
69116743Ssam	u_int32_t	ast_tx_nodata;	/* tx discarded empty frame */
70116743Ssam	u_int32_t	ast_tx_busdma;	/* tx failed for dma resrcs */
71116743Ssam	u_int32_t	ast_tx_xretries;/* tx failed 'cuz too many retries */
72116743Ssam	u_int32_t	ast_tx_fifoerr;	/* tx failed 'cuz FIFO underrun */
73116743Ssam	u_int32_t	ast_tx_filtered;/* tx failed 'cuz xmit filtered */
74116743Ssam	u_int32_t	ast_tx_shortretry;/* tx on-chip retries (short) */
75116743Ssam	u_int32_t	ast_tx_longretry;/* tx on-chip retries (long) */
76116743Ssam	u_int32_t	ast_tx_badrate;	/* tx failed 'cuz bogus xmit rate */
77116743Ssam	u_int32_t	ast_tx_noack;	/* tx frames with no ack marked */
78116743Ssam	u_int32_t	ast_tx_rts;	/* tx frames with rts enabled */
79116743Ssam	u_int32_t	ast_tx_cts;	/* tx frames with cts enabled */
80116743Ssam	u_int32_t	ast_tx_shortpre;/* tx frames with short preamble */
81127779Ssam	u_int32_t	ast_tx_altrate;	/* tx frames with alternate rate */
82127779Ssam	u_int32_t	ast_tx_protect;	/* tx frames with protection */
83170530Ssam	u_int32_t	ast_tx_ctsburst;/* tx frames with cts and bursting */
84170530Ssam	u_int32_t	ast_tx_ctsext;	/* tx frames with cts extension */
85116743Ssam	u_int32_t	ast_rx_nombuf;	/* rx setup failed 'cuz no mbuf */
86116743Ssam	u_int32_t	ast_rx_busdma;	/* rx setup failed for dma resrcs */
87116743Ssam	u_int32_t	ast_rx_orn;	/* rx failed 'cuz of desc overrun */
88116743Ssam	u_int32_t	ast_rx_crcerr;	/* rx failed 'cuz of bad CRC */
89116743Ssam	u_int32_t	ast_rx_fifoerr;	/* rx failed 'cuz of FIFO overrun */
90116743Ssam	u_int32_t	ast_rx_badcrypt;/* rx failed 'cuz decryption */
91138570Ssam	u_int32_t	ast_rx_badmic;	/* rx failed 'cuz MIC failure */
92116743Ssam	u_int32_t	ast_rx_phyerr;	/* rx failed 'cuz of PHY err */
93218689Sadrian	u_int32_t	ast_rx_phy[64];	/* rx PHY error per-code counts */
94119147Ssam	u_int32_t	ast_rx_tooshort;/* rx discarded 'cuz frame too short */
95127779Ssam	u_int32_t	ast_rx_toobig;	/* rx discarded 'cuz frame too large */
96138570Ssam	u_int32_t	ast_rx_packets;	/* packet recv on the interface */
97138570Ssam	u_int32_t	ast_rx_mgt;	/* management frames received */
98119147Ssam	u_int32_t	ast_rx_ctl;	/* rx discarded 'cuz ctl frame */
99138570Ssam	int8_t		ast_tx_rssi;	/* tx rssi of last ack */
100138570Ssam	int8_t		ast_rx_rssi;	/* rx rssi from histogram */
101161187Ssam	u_int8_t	ast_tx_rate;	/* IEEE rate of last unicast tx */
102138570Ssam	u_int32_t	ast_be_xmit;	/* beacons transmitted */
103116743Ssam	u_int32_t	ast_be_nombuf;	/* beacon setup failed 'cuz no mbuf */
104116743Ssam	u_int32_t	ast_per_cal;	/* periodic calibration calls */
105116743Ssam	u_int32_t	ast_per_calfail;/* periodic calibration failed */
106116743Ssam	u_int32_t	ast_per_rfgain;	/* periodic calibration rfgain reset */
107116743Ssam	u_int32_t	ast_rate_calls;	/* rate control checks */
108116743Ssam	u_int32_t	ast_rate_raise;	/* rate control raised xmit rate */
109116743Ssam	u_int32_t	ast_rate_drop;	/* rate control dropped xmit rate */
110138570Ssam	u_int32_t	ast_ant_defswitch;/* rx/default antenna switches */
111138570Ssam	u_int32_t	ast_ant_txswitch;/* tx antenna switches */
112138570Ssam	u_int32_t	ast_ant_rx[8];	/* rx frames with antenna */
113138570Ssam	u_int32_t	ast_ant_tx[8];	/* tx frames with antenna */
114159894Ssam	u_int32_t	ast_cabq_xmit;	/* cabq frames transmitted */
115159894Ssam	u_int32_t	ast_cabq_busy;	/* cabq found busy */
116160992Ssam	u_int32_t	ast_tx_raw;	/* tx frames through raw api */
117170530Ssam	u_int32_t	ast_ff_txok;	/* fast frames tx'd successfully */
118170530Ssam	u_int32_t	ast_ff_txerr;	/* fast frames tx'd w/ error */
119170530Ssam	u_int32_t	ast_ff_rx;	/* fast frames rx'd */
120170530Ssam	u_int32_t	ast_ff_flush;	/* fast frames flushed from staging q */
121170530Ssam	u_int32_t	ast_tx_qfull;	/* tx dropped 'cuz of queue limit */
122170530Ssam	int8_t		ast_rx_noise;	/* rx noise floor */
123186904Ssam	u_int32_t	ast_tx_nobuf;	/* tx dropped 'cuz no ath buffer */
124186904Ssam	u_int32_t	ast_tdma_update;/* TDMA slot timing updates */
125186904Ssam	u_int32_t	ast_tdma_timers;/* TDMA slot update set beacon timers */
126186904Ssam	u_int32_t	ast_tdma_tsf;	/* TDMA slot update set TSF */
127186904Ssam	u_int16_t	ast_tdma_tsfadjp;/* TDMA slot adjust+ (usec, smoothed)*/
128186904Ssam	u_int16_t	ast_tdma_tsfadjm;/* TDMA slot adjust- (usec, smoothed)*/
129188195Ssam	u_int32_t	ast_tdma_ack;	/* TDMA tx failed 'cuz ACK required */
130188195Ssam	u_int32_t	ast_tx_raw_fail;/* raw tx failed 'cuz h/w down */
131188555Ssam	u_int32_t	ast_tx_nofrag;	/* tx dropped 'cuz no ath frag buffer */
132211299Sadrian	u_int32_t	ast_be_missed;	/* missed beacons */
133217684Sadrian	u_int32_t	ast_ani_cal;	/* ANI calibrations performed */
134218378Sadrian	u_int32_t	ast_rx_agg;	/* number of aggregate frames RX'ed */
135221965Sadrian	u_int32_t	ast_rx_halfgi;	/* RX half-GI */
136221965Sadrian	u_int32_t	ast_rx_2040;	/* RX 40mhz frame */
137221965Sadrian	u_int32_t	ast_rx_pre_crc_err;	/* RX pre-delimiter CRC error */
138221965Sadrian	u_int32_t	ast_rx_post_crc_err;	/* RX post-delimiter CRC error */
139221965Sadrian	u_int32_t	ast_rx_decrypt_busy_err;	/* RX decrypt engine busy error */
140218689Sadrian	u_int32_t	ast_rx_hi_rx_chain;
141218924Sadrian	u_int32_t	ast_tx_htprotect;	/* HT tx frames with protection */
142221965Sadrian	u_int32_t	ast_rx_hitqueueend;	/* RX hit descr queue end */
143220772Sadrian	u_int32_t	ast_tx_timeout;		/* Global TX timeout */
144220782Sadrian	u_int32_t	ast_tx_cst;		/* Carrier sense timeout */
145221965Sadrian	u_int32_t	ast_tx_xtxop;	/* tx exceeded TXOP */
146221965Sadrian	u_int32_t	ast_tx_timerexpired;	/* tx exceeded TX_TIMER */
147221965Sadrian	u_int32_t	ast_tx_desccfgerr;	/* tx desc cfg error */
148226798Sadrian	u_int32_t	ast_tx_swretries;	/* software TX retries */
149226798Sadrian	u_int32_t	ast_tx_swretrymax;	/* software TX retry max limit reach */
150226798Sadrian	u_int32_t	ast_tx_data_underrun;
151226798Sadrian	u_int32_t	ast_tx_delim_underrun;
152227868Sadrian	u_int32_t	ast_tx_aggr_failall;	/* aggregate TX failed in its entirety */
153226798Sadrian	u_int32_t	ast_tx_getnobuf;
154226798Sadrian	u_int32_t	ast_tx_getbusybuf;
155226798Sadrian	u_int32_t	ast_tx_intr;
156226798Sadrian	u_int32_t	ast_rx_intr;
157227868Sadrian	u_int32_t	ast_tx_aggr_ok;		/* aggregate TX ok */
158227868Sadrian	u_int32_t	ast_tx_aggr_fail;	/* aggregate TX failed */
159232764Sadrian	u_int32_t	ast_tx_mcastq_overflow;	/* multicast queue overflow */
160232764Sadrian	u_int32_t	ast_pad[1];
161116743Ssam};
162116743Ssam
163116743Ssam#define	SIOCGATHSTATS	_IOWR('i', 137, struct ifreq)
164188557Ssam#define	SIOCZATHSTATS	_IOWR('i', 139, struct ifreq)
165116743Ssam
166123044Ssamstruct ath_diag {
167138570Ssam	char	ad_name[IFNAMSIZ];	/* if name, e.g. "ath0" */
168138570Ssam	u_int16_t ad_id;
169138570Ssam#define	ATH_DIAG_DYN	0x8000		/* allocate buffer in caller */
170138570Ssam#define	ATH_DIAG_IN	0x4000		/* copy in parameters */
171138570Ssam#define	ATH_DIAG_OUT	0x0000		/* copy out results (always) */
172138570Ssam#define	ATH_DIAG_ID	0x0fff
173138570Ssam	u_int16_t ad_in_size;		/* pack to fit, yech */
174138570Ssam	caddr_t	ad_in_data;
175138570Ssam	caddr_t	ad_out_data;
176138570Ssam	u_int	ad_out_size;
177123044Ssam
178123044Ssam};
179123044Ssam#define	SIOCGATHDIAG	_IOWR('i', 138, struct ath_diag)
180224245Sadrian#define	SIOCGATHPHYERR	_IOWR('i', 140, struct ath_diag)
181123044Ssam
182119783Ssam/*
183119783Ssam * Radio capture format.
184119783Ssam */
185119783Ssam#define ATH_RX_RADIOTAP_PRESENT (		\
186154140Ssam	(1 << IEEE80211_RADIOTAP_TSFT)		| \
187119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
188119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
189123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
190154140Ssam	(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL)	| \
191154140Ssam	(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE)	| \
192170530Ssam	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
193119783Ssam	0)
194119783Ssam
195119783Ssamstruct ath_rx_radiotap_header {
196119783Ssam	struct ieee80211_radiotap_header wr_ihdr;
197154140Ssam	u_int64_t	wr_tsf;
198154140Ssam	u_int8_t	wr_flags;
199119783Ssam	u_int8_t	wr_rate;
200170530Ssam	int8_t		wr_antsignal;
201170530Ssam	int8_t		wr_antnoise;
202170530Ssam	u_int8_t	wr_antenna;
203170530Ssam	u_int8_t	wr_pad[3];
204170530Ssam	u_int32_t	wr_chan_flags;
205119783Ssam	u_int16_t	wr_chan_freq;
206170530Ssam	u_int8_t	wr_chan_ieee;
207170530Ssam	int8_t		wr_chan_maxpow;
208170530Ssam} __packed;
209119783Ssam
210119783Ssam#define ATH_TX_RADIOTAP_PRESENT (		\
211154140Ssam	(1 << IEEE80211_RADIOTAP_TSFT)		| \
212119783Ssam	(1 << IEEE80211_RADIOTAP_FLAGS)		| \
213119783Ssam	(1 << IEEE80211_RADIOTAP_RATE)		| \
214123928Ssam	(1 << IEEE80211_RADIOTAP_DBM_TX_POWER)	| \
215123928Ssam	(1 << IEEE80211_RADIOTAP_ANTENNA)	| \
216170530Ssam	(1 << IEEE80211_RADIOTAP_XCHANNEL)	| \
217119783Ssam	0)
218119783Ssam
219119783Ssamstruct ath_tx_radiotap_header {
220119783Ssam	struct ieee80211_radiotap_header wt_ihdr;
221154140Ssam	u_int64_t	wt_tsf;
222154140Ssam	u_int8_t	wt_flags;
223119783Ssam	u_int8_t	wt_rate;
224123928Ssam	u_int8_t	wt_txpower;
225123928Ssam	u_int8_t	wt_antenna;
226170530Ssam	u_int32_t	wt_chan_flags;
227170530Ssam	u_int16_t	wt_chan_freq;
228170530Ssam	u_int8_t	wt_chan_ieee;
229170530Ssam	int8_t		wt_chan_maxpow;
230170530Ssam} __packed;
231119783Ssam
232224245Sadrian/*
233224245Sadrian * DFS ioctl commands
234224245Sadrian */
235224245Sadrian
236224245Sadrian#define	DFS_SET_THRESH		2
237224245Sadrian#define	DFS_GET_THRESH		3
238224245Sadrian#define	DFS_RADARDETECTS	6
239224245Sadrian
240224245Sadrian/*
241224245Sadrian * DFS ioctl parameter types
242224245Sadrian */
243224245Sadrian#define DFS_PARAM_FIRPWR	1
244224245Sadrian#define DFS_PARAM_RRSSI		2
245224245Sadrian#define DFS_PARAM_HEIGHT	3
246224245Sadrian#define DFS_PARAM_PRSSI		4
247224245Sadrian#define DFS_PARAM_INBAND	5
248224245Sadrian#define DFS_PARAM_NOL		6	/* XXX not used in FreeBSD */
249224245Sadrian#define DFS_PARAM_RELSTEP_EN	7
250224245Sadrian#define DFS_PARAM_RELSTEP	8
251224245Sadrian#define DFS_PARAM_RELPWR_EN	9
252224245Sadrian#define DFS_PARAM_RELPWR	10
253224245Sadrian#define DFS_PARAM_MAXLEN	11
254224245Sadrian#define DFS_PARAM_USEFIR128	12
255224245Sadrian#define DFS_PARAM_BLOCKRADAR	13
256224245Sadrian#define DFS_PARAM_MAXRSSI_EN	14
257224245Sadrian
258224245Sadrian/* FreeBSD-specific start at 32 */
259224245Sadrian#define	DFS_PARAM_ENABLE	32
260224245Sadrian#define	DFS_PARAM_EN_EXTCH	33
261224245Sadrian
262116743Ssam#endif /* _DEV_ATH_ATHIOCTL_H */
263